/* ============================================================
   Suffer to Safar — Design System
   Palette drawn from brand logo: ivory, gold, deep brown, sage
   ============================================================ */

:root {
  --bg: #FBF7EE;
  --bg-soft: #F6EFDF;
  --bg-deep: #F1E7CF;
  --surface: #FFFDF8;
  --gold: #B8862D;
  --gold-deep: #8F6318;
  --gold-light: #D9B667;
  --gold-pale: #EFE2BE;
  --ink: #171310;
  --ink-soft: #3D362C;
  --ink-faint: #675E50;
  --espresso: #241C12;
  --sage: #7D8B5E;
  --line: #E7DBBD;
  --shadow-soft: 0 14px 40px rgba(120, 90, 30, 0.10);
  --shadow-lift: 0 20px 55px rgba(120, 90, 30, 0.16);
  --radius: 3px;
  --radius-lg: 6px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --topbar-h: 38px;
  --header-h: 118px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-deep); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold); }

::selection { background: var(--gold-pale); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  font-weight: 400;
}

.gold-text {
  background: linear-gradient(115deg, var(--gold-deep) 10%, var(--gold-light) 48%, var(--gold-deep) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow.centered::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.centered::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Layout ---------- */

.container { width: min(1180px, 92%); margin: 0 auto; }
.container.narrow { width: min(860px, 92%); }

section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
section.tight { padding: clamp(48px, 6vw, 72px) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-weight: 400; font-size: 1.1rem; }

.alt-bg { background: linear-gradient(180deg, var(--bg-soft), var(--bg) 92%); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Ornaments ---------- */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 22px;
  color: var(--gold);
}
.ornament::before, .ornament::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.ornament::after { background: linear-gradient(90deg, var(--gold-light), transparent); }
.ornament svg { width: 18px; height: 18px; flex-shrink: 0; }

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 36px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 55%, var(--gold-light));
  color: #FFF9EC;
  box-shadow: 0 12px 30px rgba(150, 105, 28, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(150, 105, 28, 0.45);
  color: #FFFFFF;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-light);
}
.btn-ghost:hover {
  background: rgba(216, 182, 103, 0.12);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #128C4B;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(18, 140, 75, 0.3);
}
.btn-whatsapp:hover { background: #0E7A40; color: #FFFFFF; transform: translateY(-2px); }

/* ---------- Top bar ---------- */

.top-bar {
  height: var(--topbar-h);
  background: var(--espresso);
  color: #F3EBDB;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-bar-group { display: flex; align-items: center; gap: 26px; min-width: 0; }
.top-bar span, .top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F3EBDB;
  white-space: nowrap;
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar svg { width: 14px; height: 14px; color: var(--gold-light); flex-shrink: 0; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.header-main { flex: 1; display: flex; align-items: center; }
/* The blur lives on a pseudo element so the fixed mobile drawer
   is not trapped inside the header's containing block */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(120, 90, 30, 0.08);
}
.site-header.scrolled::before { background: rgba(251, 247, 238, 0.97); }

.header-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 54px; height: 54px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.main-nav a.nav-link {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-radius: 8px;
}
.main-nav a.nav-link:hover { color: var(--gold-deep); }
.main-nav a.nav-link.active { color: var(--gold-deep); }
.main-nav a.nav-link.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.has-dropdown { position: relative; }
.has-dropdown > a.nav-link { display: inline-flex; align-items: center; gap: 6px; }
.has-dropdown > a.nav-link svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-lift);
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover > a.nav-link svg { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 11px 16px;
  border-radius: 2px;
  font-size: 0.94rem;
  color: var(--ink);
}
.dropdown a:hover { background: var(--bg-soft); color: var(--gold-deep); }
.dropdown .dropdown-all {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-weight: 500;
  color: var(--gold-deep);
}

.header-cta { display: inline-flex; }
.header-cta .btn { padding: 12px 24px; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1102;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(70px, 8vw, 110px);
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }

.hero-copy h1 { max-width: 620px; }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--gold-deep);
  margin-top: 20px;
}
.hero-copy .lead { margin: 16px 0 36px; max-width: 540px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 400;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.portrait-frame {
  position: relative;
  width: min(430px, 88%);
  margin: 0 auto;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid var(--gold-light);
  border-radius: 300px 300px 26px 26px;
  opacity: 0.7;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 290px 290px 20px 20px;
  box-shadow: var(--shadow-lift);
}
.portrait-badge {
  position: absolute;
  bottom: 26px;
  left: -34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.portrait-badge img { width: 46px; height: 46px; border-radius: 50%; box-shadow: none; aspect-ratio: 1; }
.portrait-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}
.portrait-badge small { color: var(--ink-soft); font-size: 0.78rem; letter-spacing: 0.06em; }

/* ---------- Marquee ---------- */

.marquee-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-track svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards (editorial, hairline style) ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-top-color: var(--gold);
}

.icon-circle {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.icon-circle svg { width: 32px; height: 32px; color: var(--gold); }

.modality-card h3 { margin-bottom: 12px; }
.modality-card p { color: var(--ink-soft); font-size: 0.98rem; font-weight: 400; margin-bottom: 20px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.modality-card:hover .card-link svg { transform: translateX(5px); }
.card .stretch-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* ---------- Steps (open editorial rows, no boxes) ---------- */

.step-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--gold-light);
  border-radius: 0;
  text-align: left;
  padding: 30px 6px 0;
}
.step-card:hover { transform: none; box-shadow: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 12px; }
.step-card p { color: var(--ink-soft); font-weight: 400; font-size: 0.98rem; }

/* ---------- About ---------- */

.about-photo { position: relative; width: min(420px, 100%); margin: 0 auto; }
.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-list { list-style: none; margin: 26px 0 34px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); font-weight: 400; }
.about-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.about-list strong { color: var(--ink); font-weight: 500; }

/* ---------- Clarity call band ---------- */

.clarity-band {
  background:
    radial-gradient(600px 300px at 15% 20%, rgba(217, 182, 103, 0.25), transparent 70%),
    radial-gradient(500px 280px at 85% 80%, rgba(125, 139, 94, 0.16), transparent 70%),
    linear-gradient(140deg, #F8F1DF, #F3E8CC);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clarity-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.clarity-price {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-lift);
}
.clarity-price .amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}
.clarity-price .per { color: var(--ink-soft); font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }
.clarity-price ul { list-style: none; margin: 24px 0 28px; text-align: left; display: grid; gap: 12px; }
.clarity-price li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.clarity-price li svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; margin-top: 3px; }

/* ---------- Testimonials ---------- */

.testimonial-slider { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.testimonial-track { overflow: hidden; }
.testimonial-slide {
  display: none;
  padding: 10px 16px 26px;
  animation: fadeSlide 0.6s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.quote-mark { width: 46px; height: 46px; margin: 0 auto 18px; color: var(--gold-light); }
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 26px;
}
.testimonial-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 18px; color: var(--gold); }
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-author strong { display: block; font-weight: 500; letter-spacing: 0.04em; }
.testimonial-author span { color: var(--ink-soft); font-size: 0.88rem; font-weight: 400; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  background: var(--surface);
  color: var(--gold-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.slider-arrow:hover { background: var(--gold-pale); transform: translateY(-2px); }
.slider-arrow svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--gold-pale);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.slider-dots button.active { background: var(--gold); transform: scale(1.35); }

/* ---------- Issues chips ---------- */

.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 44px; }
.issue-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 30px 4px 34px;
}
.issue-card:hover { transform: none; box-shadow: none; border-top-color: var(--gold); }
.issue-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.issue-card p { color: var(--ink-soft); font-size: 0.96rem; font-weight: 400; margin-bottom: 16px; }
.issue-tags { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.issue-tags a, .issue-tags span {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 0;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-light);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.issue-tags a:hover { border-color: var(--gold-deep); color: var(--ink); }

/* ---------- Contact & Form ---------- */

.contact-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(36px, 5vw, 70px); align-items: start; }

.contact-info-card { padding: 40px 34px; }
.contact-line { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-of-type { border-bottom: none; }
.contact-line .icon-circle { width: 48px; height: 48px; margin: 0; flex-shrink: 0; }
.contact-line .icon-circle svg { width: 21px; height: 21px; }
.contact-line strong { display: block; font-weight: 500; letter-spacing: 0.03em; margin-bottom: 2px; }
.contact-line a, .contact-line p { color: var(--ink-soft); font-weight: 400; word-break: break-word; }
.contact-line a:hover { color: var(--gold-deep); }

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(30px, 4vw, 48px);
}
.lead-form h3 { margin-bottom: 8px; }
.lead-form > p { color: var(--ink-soft); font-weight: 400; font-size: 0.96rem; margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 14px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 134, 45, 0.12);
}
.form-field select { appearance: none; 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='%236E5C46' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.option-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; grid-column: 1 / -1; }
.option-card { position: relative; }
.option-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.option-card label {
  display: block;
  height: 100%;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 20px 20px 18px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  text-transform: none;
  letter-spacing: 0;
}
.option-card label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.option-card label em {
  display: inline-block;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.option-card label p { font-size: 0.87rem; color: var(--ink-soft); font-weight: 400; line-height: 1.55; }
.option-card input:checked + label {
  border-color: var(--gold);
  background: linear-gradient(160deg, #FFFDF6, #FAF3E0);
  box-shadow: 0 10px 30px rgba(184, 134, 45, 0.14);
}
.option-card input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }

.form-note { grid-column: 1 / -1; font-size: 0.85rem; color: var(--ink-faint); font-weight: 400; }
.form-submit { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding-top: calc(var(--header-h) + clamp(44px, 6vw, 80px));
  padding-bottom: clamp(48px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.page-hero .lead { max-width: 700px; margin: 22px auto 0; }
.breadcrumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs li + li::before { content: "\2022"; margin-right: 8px; color: var(--gold-light); }

/* ---------- Modality detail ---------- */

.detail-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }

.check-list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); font-weight: 400; }
.check-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.check-list strong { color: var(--ink); font-weight: 500; }

.package-card {
  background: var(--surface);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: clamp(30px, 4vw, 44px);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.package-card .eyebrow { margin-bottom: 10px; }
.package-card h3 { margin-bottom: 18px; }
.package-card .check-list { margin: 0 0 26px; }
.package-price {
  border-top: 1px dashed var(--gold-light);
  padding-top: 20px;
  margin-bottom: 24px;
}
.package-price .label { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.package-price .value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.package-card .btn { width: 100%; }
.package-card .sub-note { font-size: 0.83rem; color: var(--ink-faint); font-weight: 400; text-align: center; margin-top: 14px; }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-list details {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0 4px;
  transition: border-color 0.25s ease;
}
.faq-list details[open] { border-bottom-color: var(--gold); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 22px; color: var(--ink-soft); font-weight: 400; }

/* ---------- Instagram reels ---------- */

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
.reel-card {
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.reel-card iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 18px 0 26px;
}
.ig-handle svg { width: 20px; height: 20px; color: var(--gold); }
.ig-handle:hover { color: var(--gold-deep); }

/* ---------- Session recordings ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.video-card {
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--espresso);
}
.video-card figcaption {
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.recordings-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 4px;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 640px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-deep));
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 88px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 52px;
}
.footer-brand img { width: 92px; height: 92px; border-radius: 50%; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-soft); font-weight: 400; font-size: 0.95rem; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--ink-soft); font-weight: 400; font-size: 0.97rem; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-col p { color: var(--ink-soft); font-weight: 400; font-size: 0.97rem; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-weight: 400; font-size: 0.97rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--ink-faint);
  font-weight: 400;
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #128C4B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(18, 140, 75, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); color: #FFFFFF; box-shadow: 0 20px 44px rgba(18, 140, 75, 0.5); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .issue-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}
@media (max-width: 640px) {
  .reel-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1100;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 20px) 8% 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  .main-nav a.nav-link { display: block; font-size: 1.25rem; padding: 14px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .main-nav a.nav-link.active::after { display: none; }
  .has-dropdown > a.nav-link { display: flex; justify-content: space-between; }
  .has-dropdown > a.nav-link svg { display: none; }
  /* Subpages stay permanently visible in the mobile menu */
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 6px 18px;
    display: block;
  }
  .dropdown .dropdown-all { display: none; }
  .dropdown a { font-size: 1.05rem; padding: 11px 4px; }
  .header-cta { display: none; }
  .grid-2, .clarity-card, .contact-wrap, .detail-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .package-card { position: static; }
  .hero-visual { order: -1; }
  .portrait-badge { left: 0; }
}

@media (max-width: 640px) {
  /* Tighter vertical rhythm on phones, desktop spacing feels empty here */
  section { padding: 52px 0; }
  section.tight { padding: 38px 0; }
  .hero { padding-top: calc(var(--header-h) + 34px); padding-bottom: 48px; }
  .page-hero { padding-top: calc(var(--header-h) + 36px); padding-bottom: 44px; }
  .section-head { margin-bottom: 30px; }
  .grid-2 { gap: 34px; }
  .grid-3 { gap: 18px; }
  .detail-grid { gap: 34px; }
  .card { padding: 28px 22px; }
  .issue-grid { gap: 0; }
  .issue-card { padding: 24px 4px 28px; }
  .step-card { padding: 24px 6px 0; }
  .clarity-price { padding: 34px 24px; }
  .lead-form { padding: 26px 18px; }
  .contact-info-card { padding: 28px 20px; }
  .hero-copy .lead { margin-bottom: 26px; }
  .hero-ctas { margin-bottom: 28px; }
  .testimonial-slide { padding-bottom: 12px; }
  .marquee-strip { padding: 14px 0; }
  .grid-4, .issue-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-grid, .option-cards { grid-template-columns: 1fr; }
  .tb-hide-sm { display: none !important; }
  .top-bar { font-size: 0.78rem; }
  .top-bar-group { gap: 14px; }
  .video-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .brand-name { font-size: 1.2rem; }
  .brand img { width: 46px; height: 46px; }
  .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .portrait-frame::before { inset: -12px; }
}
