/* =============================================================
   Sant'Angelo — Site styles
   Built on the brand tokens in ../colors_and_type.css
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --cocoa:        #8b6454;
  --cocoa-600:    #734f42;
  --cocoa-700:    #593c31;
  --cocoa-50:     #f6efeb;
  --cocoa-100:    #eadbd2;
  --cocoa-200:    #d4b7a6;
  --cream:        #faf3ee;       /* newsletter cream */
  --cream-border: #efe0d4;
  --cocoa-line:   #dfc7b9;
  --page:         #ffffff;
  --ink:          #1f1f1f;
  --ink-900:      #111827;
  --muted:        #6b7280;
  --line:         #e5e7eb;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --radius-xs: 7.5px;
  --radius-sm: 28px;
  --radius-md: 9999px;

  --shadow-1: rgba(0,0,0,.08) 0 4px 14px -2px, rgba(0,0,0,.05) 0 2px 6px -3px;
  --shadow-2: rgba(139,100,84,.5) 0 0 18px 0;

  --ease: cubic-bezier(.2,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.serif { font-family: var(--serif); }

/* ---- Eyebrow + section heading conventions ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.1;
  color: var(--ink-900);
  margin: 12px 0 10px;
  letter-spacing: .005em;
}

.section-lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Ornamental divider ---- */
.divider {
  display: flex; align-items: center; gap: 14px;
  max-width: 520px; margin: 0 auto;
  color: var(--cocoa);
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--cocoa-line);
}
.divider > span { font-size: 14px; line-height: 1; }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 24px;
  max-width: 1160px; margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--cocoa);
  flex-shrink: 0;
}
.nav-brand img { height: 44px; width: auto; }
.nav-brand-txt {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-brand-wm {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--cocoa);
  letter-spacing: .01em;
}
.nav-brand-sub {
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
  list-style: none; padding: 0; margin-block: 0;
}
.nav-menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-md);
  transition: background var(--ease) 150ms, color var(--ease) 150ms;
}
.nav-menu a:hover { background: var(--cocoa-50); color: var(--cocoa-700); }
.nav-menu a.active { color: var(--cocoa-700); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cocoa);
  color: #fff !important;
  padding: 10px 20px !important;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background var(--ease) 150ms, box-shadow var(--ease) 300ms, transform var(--ease) 150ms;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--cocoa-600) !important; box-shadow: var(--shadow-2); }
.nav-cta:active { transform: scale(.98); }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 44px; height: 44px;
  padding: 0; margin-left: auto;
  cursor: pointer; color: var(--cocoa);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 12px 16px;
    max-height: 0; overflow: hidden;
    transition: max-height 300ms var(--ease), padding 300ms var(--ease);
  }
  .nav.open .nav-menu { max-height: 500px; padding: 8px 12px 16px; }
  .nav-menu a { padding: 14px 16px; font-size: 15px; border-radius: var(--radius-xs); }
  .nav-menu .nav-cta { margin-top: 8px; text-align: center; justify-content: center; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-brand img { height: 36px; }
  .nav-brand-wm { font-size: 18px; }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 150ms var(--ease), box-shadow 300ms var(--ease), transform 150ms var(--ease), color 150ms var(--ease);
}
.btn-primary { background: var(--cocoa); color: #fff; }
.btn-primary:hover { background: var(--cocoa-600); box-shadow: var(--shadow-2); }
.btn-primary:active { transform: scale(.98); }
.btn-outline {
  background: transparent;
  color: var(--cocoa-700);
  box-shadow: inset 0 0 0 1px var(--cocoa);
}
.btn-outline:hover { background: var(--cocoa-50); }
.btn-ghost { background: transparent; color: var(--cocoa-700); }
.btn-ghost:hover { background: var(--cocoa-50); }

.btn-sm { padding: 9px 18px; font-size: 13px; }

/* =============================================================
   HERO SLIDER
   ============================================================= */
.hero {
  padding: 32px 24px 0;
  max-width: 1160px;
  margin: 0 auto;
}
.slider {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: clamp(460px, 62vw, 640px);
  background: var(--cocoa-700);
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity 700ms var(--ease);
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.slide-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(63, 42, 34, .85) 0%,
    rgba(89, 60, 49, .65) 48%,
    rgba(139, 100, 84, .35) 100%
  );
}
.slide-content {
  position: relative; z-index: 1;
  color: #fff;
  padding: 56px clamp(28px, 6vw, 72px);
  max-width: 680px;
}
.slide-eyebrow {
  font-size: 11px; letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.slide-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: rgba(255,255,255,.7);
}
.slide-title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.slide-title b { font-style: normal; font-weight: 600; }
.slide-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 460px;
  margin: 0 0 28px;
}

.slide-tiers {
  display: flex; gap: 0; align-items: stretch;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 16px 4px;
  margin: 0 0 28px;
  max-width: 520px;
}
.tier {
  flex: 1; text-align: center;
  padding: 4px 12px;
  position: relative;
}
.tier + .tier::before {
  content: "";
  position: absolute; left: 0; top: 14%; bottom: 14%; width: 1px;
  background: rgba(255,255,255,.22);
}
.tier-pct {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 44px);
  line-height: 1;
  color: #fff;
}
.tier-pct sup { font-size: .55em; font-weight: 500; margin-left: 2px; }
.tier-label {
  margin-top: 10px;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}

.slide-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.slide-ctas .btn-primary { background: #fff; color: var(--cocoa-700); }
.slide-ctas .btn-primary:hover { background: var(--cocoa-50); box-shadow: 0 0 22px rgba(255,255,255,.25); }
.slide-ctas .btn-outline {
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.slide-ctas .btn-outline:hover {
  background: rgba(255,255,255,.1);
}

/* Pack-of-3 savings slide */
.slide-savings {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.92);
  color: var(--cocoa-700);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .01em;
  margin-bottom: 22px;
  white-space: nowrap;
  max-width: 100%;
}
.slide-savings b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* Slider controls */
.slider-ctrl {
  position: absolute; top: 50%;
  width: 42px; height: 42px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.86);
  border: none;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 150ms var(--ease), transform 150ms var(--ease);
  z-index: 5;
  color: var(--cocoa-700);
}
.slider-ctrl:hover { background: #fff; }
.slider-ctrl:active { transform: translateY(-50%) scale(.96); }
.slider-ctrl.prev { left: 16px; }
.slider-ctrl.next { right: 16px; }
.slider-ctrl svg { width: 20px; height: 20px; }

.slider-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.slider-dot {
  width: 32px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  border: none; padding: 0; cursor: pointer;
  transition: background 150ms var(--ease);
}
.slider-dot.active { background: #fff; }

@media (max-width: 640px) {
  .hero { padding: 20px 16px 0; }
  .slider { height: auto; min-height: 560px; }
  .slide { position: relative; }
  .slide:not(.active) { display: none; }
  .slider-ctrl { top: auto; bottom: 18px; transform: none; }
  .slider-ctrl.prev { left: 16px; }
  .slider-ctrl.next { right: 16px; }
  .slider-dots { bottom: 72px; }
  .slide-content { padding: 40px 24px 96px; }
  .slide-tiers { padding: 12px 2px; }
  .slide-savings { white-space: normal; font-size: 12.5px; gap: 8px; padding: 10px 16px; }
  .slide-savings b { font-size: 17px; }
}

/* =============================================================
   SERVICES CARDS
   ============================================================= */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.svc-card {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: box-shadow 300ms var(--ease), transform 300ms var(--ease);
}
.svc-card .btn { margin-top: auto; }
.svc-card:hover { box-shadow: var(--shadow-1); }

.svc-icon-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f1e6dd;
  border-radius: 20px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--cocoa);
}
.svc-icon-wrap svg { width: 44%; height: 44%; }

.svc-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cocoa-700);
  margin: 0 0 18px;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex; align-items: center; justify-content: center;
}
.svc-card .btn { padding: 10px 24px; font-size: 13px; }

/* =============================================================
   NUESTRO ESPACIO (gallery)
   ============================================================= */
.espacio {
  background: var(--cream);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}
.espacio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.espacio-tile {
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.espacio-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease);
}
.espacio-tile:hover img { transform: scale(1.04); }
.espacio-footer {
  margin-top: 28px; text-align: center;
  color: var(--cocoa-700);
  font-size: 14px;
}
.espacio-footer a { color: var(--cocoa-700); font-weight: 500; }
.espacio-footer a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .espacio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: #1a1614;
  color: #d8cbc1;
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer h4 {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #e7d8cb;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #d8cbc1; font-size: 14px; }
.footer a:hover { color: #fff; }

.footer-brand .serif {
  font-style: italic;
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; line-height: 1.6; color: #b8a89c; margin: 8px 0 18px; max-width: 300px; }

.footer-contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin-bottom: 10px;
  color: #d8cbc1;
}
.footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--cocoa-200); }

.footer-bottom {
  max-width: 1160px; margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #8e7f74;
  gap: 16px; flex-wrap: wrap;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  color: #d8cbc1;
  transition: background 150ms var(--ease), color 150ms var(--ease), border-color 150ms var(--ease);
}
.footer-socials a:hover { background: var(--cocoa); color: #fff; border-color: var(--cocoa); }
.footer-socials svg { width: 18px; height: 18px; }

/* =============================================================
   DEPILACIÓN LANDING — selectors
   ============================================================= */
.sub-hero {
  position: relative;
  height: clamp(340px, 48vw, 480px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 32px 24px 0;
  max-width: 1160px;
}
.sub-hero.full { margin-left: auto; margin-right: auto; }
.sub-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.sub-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(57,38,30,.82) 0%, rgba(89,60,49,.55) 55%, rgba(139,100,84,.25) 100%);
}
.sub-hero-content {
  position: relative; z-index: 1;
  color: #fff;
  max-width: 680px;
  padding: 56px clamp(28px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
}
.sub-hero-eyebrow {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.sub-hero-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: rgba(255,255,255,.7);
}
.sub-hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 16px;
}
.sub-hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 520px;
  color: rgba(255,255,255,.92);
  margin: 0;
}

/* Selector grid */
.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 960px) {
  .selector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .selector-grid { grid-template-columns: 1fr; }
}
.selector-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 28px 24px 24px;
  text-align: left;
  transition: border-color 150ms var(--ease), box-shadow 300ms var(--ease), transform 150ms var(--ease);
  position: relative;
  overflow: hidden;
}
.selector-card:hover {
  border-color: var(--cocoa);
  box-shadow: var(--shadow-1);
}
.selector-card:active { transform: scale(.99); }

.selector-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cocoa-50);
  color: var(--cocoa-700);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.selector-icon svg { width: 24px; height: 24px; }

.selector-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin-bottom: 6px;
}
.selector-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 6px;
  line-height: 1.15;
}
.selector-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 20px;
  flex: 1;
}
.selector-foot {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--cocoa-700);
  font-size: 13px; font-weight: 500;
}
.selector-foot svg { width: 16px; height: 16px; transition: transform 150ms var(--ease); }
.selector-card:hover .selector-foot svg { transform: translateX(3px); }

/* =============================================================
   ALMA LASER COMPARISON
   ============================================================= */
.alma-wrap {
  background: var(--cream);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}
.alma-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .alma-split { grid-template-columns: 1fr; gap: 32px; } }

.alma-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--cream-border);
  background: #2a1c17;
  position: sticky; top: 96px;
}
.alma-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 35%;
  /* cocoa-branded tint */
  filter: sepia(.35) saturate(1.05) hue-rotate(-8deg) brightness(.92) contrast(1.05);
  mix-blend-mode: multiply;
}
.alma-photo-caption {
  padding: 16px 22px;
  background: #2a1c17;
  color: #e5d5c6;
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.45;
  text-align: center;
}
.alma-photo-caption b { color: #fff; font-weight: 600; }
@media (max-width: 960px) { .alma-photo { position: static; } }

.cmp-table {
  width: 100%;
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cmp-head {
  display: grid;
  grid-template-columns: 36% 32% 32%;
  background: #faf3ee;
  border-bottom: 1px solid var(--cocoa-line);
}
.cmp-head > div {
  padding: 14px 16px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cmp-head > div + div { border-left: 1px solid var(--cocoa-line); text-align: center; color: var(--cocoa-700); font-weight: 600; }
.cmp-head .cmp-head-replica { color: var(--muted); font-weight: 500; }

.cmp-row {
  display: grid;
  grid-template-columns: 36% 32% 32%;
  border-bottom: 1px solid #f0e6de;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row > div { padding: 16px 16px; font-size: 13px; line-height: 1.45; }
.cmp-row .cmp-feat { font-weight: 500; color: var(--ink); }
.cmp-row .cmp-alma { background: #f8f2ed; color: var(--cocoa-700); border-left: 1px solid #f0e6de; }
.cmp-row .cmp-rep  { color: #9a8378; border-left: 1px solid #f0e6de; }
.cmp-row b.check { color: var(--cocoa); }
.cmp-row b.cross { color: #9a8378; }

.cmp-mob-label { display: none; font-weight: 600; color: var(--ink); font-size: 12.5px; letter-spacing: .02em; margin-bottom: 6px; }

@media (max-width: 720px) {
  .cmp-head { display: none; }
  .cmp-row {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }
  .cmp-row > div { padding: 8px 0; border-left: none !important; background: transparent !important; }
  .cmp-row .cmp-feat { font-size: 14px; margin-bottom: 2px; }
  .cmp-mob-label { display: block; }
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color 150ms var(--ease), box-shadow 300ms var(--ease);
}
.faq-item[open] {
  border-color: var(--cocoa-200);
  box-shadow: var(--shadow-1);
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-900);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cocoa-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b6454' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 300ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-body {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #3b3b3b;
}
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--cocoa-700); }

/* SEO content blocks */
.seo-block {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: clamp(28px, 4vw, 48px);
}
.seo-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink-900);
  margin: 0 0 16px;
  line-height: 1.15;
}
.seo-block p { font-size: 14px; line-height: 1.75; color: var(--ink); margin: 0 0 14px; }
.seo-block p:last-child { margin-bottom: 0; }

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 860px) { .seo-grid { grid-template-columns: 1fr; } }
.seo-step {
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 22px;
  padding: 22px 24px;
}
.seo-step-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--cocoa);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}
.seo-step h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.seo-step p { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Final CTA banner */
.cta-banner {
  background: var(--cocoa);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(30px, 4.5vw, 48px);
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 26px;
}
.cta-banner .btn-primary { background: #fff; color: var(--cocoa-700); }
.cta-banner .btn-primary:hover { background: var(--cream); box-shadow: 0 0 24px rgba(255,255,255,.2); }

/* Utility */
.text-center { text-align: center; }
