/* ============================================
   GABOCHIE VALUE — WordPress theme styles
   Port of VDAC design system: gabochiedesign.com brand
   (teal / gold / cream, Playfair + Jost)
   WP additions: admin-bar offsets, editor alignment
   classes, entry-content / post / comments typography.
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal: #0D5C52;
  --teal-deep: #0A4840;
  --teal-dark: #072E28;
  --teal-mid: #1A7A6E;
  --teal-light: #E8F4F2;
  --teal-pale: #F2FAF8;
  --cream: #FAF7F2;
  --ivory: #FDFCF9;
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --gold-pale: #FBF5E8;
  --charcoal: #1C2B28;
  --mist: #6B8A84;
  --border: #D4E8E4;
  --border-light: #EAF3F1;
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --shadow: 0 8px 40px rgba(0,0,0,0.25);
  --glass: rgba(7,46,40,0.94);
}

/* Dark mode (brand toggle) */
body.dark-mode {
  --cream: #0F1A18;
  --ivory: #0B1412;
  --charcoal: #F0EEE9;
  --mist: #9FB8B2;
  --border: #1E3A34;
  --border-light: #162B26;
  --teal-light: #12302A;
  --gold-pale: #1C1710;
}
body.dark-mode .svc { background: rgba(15,26,24,0.8); }

.skip-link { position: absolute; top: -100%; left: 0; background: var(--teal); color: #fff; padding: 0.75rem 1.5rem; z-index: 10000; font-weight: 600; text-decoration: none; border-radius: 0 0 8px 0; transition: top 0.2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Screen-reader text (WP requirement) */
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; word-wrap: normal !important; }
.screen-reader-text:focus { background: #fff; color: var(--teal-dark); clip: auto !important; clip-path: none; display: block; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; font-size: 0.9rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body { font-family: 'Jost', sans-serif; background: var(--ivory); color: var(--charcoal); overflow-x: hidden; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img, svg { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

/* Reading progress */
.reading-progress { position: fixed; top: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--teal)); z-index: 9999; transition: width 0.1s linear; }

/* ============ ADMIN BAR OFFSETS ============ */
html.admin-bar { scroll-padding-top: 132px; }
html.admin-bar .reading-progress { top: 32px; }
html.admin-bar .nav-wrap { top: 44px; }
@media (max-width: 782px) {
  html.admin-bar .reading-progress { top: 46px; }
  html.admin-bar .nav-wrap { top: 58px; }
}

/* ============ NAV ============ */
.nav-wrap { position: sticky; top: 12px; z-index: 200; padding: 0 1.5rem; }
nav { position: relative; z-index: 202; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(201,169,110,0.18); border-radius: var(--r); display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 68px; }
nav.scrolled { background: rgba(7,46,40,0.98); box-shadow: var(--shadow); }
.logo-link { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.logo-hex { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: #FAF7F2; letter-spacing: 0.1em; white-space: nowrap; }
.logo-tag { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 3px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.76rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,242,0.5); text-decoration: none; transition: color 0.2s; font-weight: 400; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.55rem 1.4rem; cursor: pointer; border-radius: var(--r-sm); text-decoration: none; display: inline-block; min-height: 38px; line-height: 1.6rem; text-align: center; }
.nav-cta:hover { background: var(--gold); color: var(--teal-dark); }
.dark-toggle { background: none; border: 1px solid rgba(201,169,110,0.3); border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(250,247,242,0.5); flex-shrink: 0; }
.dark-toggle:hover { border-color: var(--gold); color: var(--gold); }
.dark-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.dark-toggle .icon-moon { display: none; }
.dark-mode .dark-toggle .icon-moon { display: block; }
.dark-mode .dark-toggle .icon-sun { display: none; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 201; }
.mobile-menu-btn span { width: 20px; height: 2px; background: var(--gold); transition: all 0.3s; border-radius: 1px; }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--teal-dark); z-index: 199; flex-direction: column; justify-content: center; padding: 6rem 2.5rem 2.5rem; gap: 0.25rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: #FAF7F2; padding: 0.9rem 0; border-bottom: 1px solid rgba(201,169,110,0.12); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta { margin-top: 2rem; text-align: center; padding: 1rem; font-size: 0.8rem; }

/* ============ HERO ============ */
.hero { background: var(--teal-dark); min-height: 76vh; display: grid; grid-template-columns: 52% 48%; margin-top: -80px; padding-top: 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 1; opacity: 0.5; }
.hero-left { padding: 5.5rem 3rem 5rem 2rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-location { display: flex; align-items: center; gap: 0.75rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.25rem; }
.hero-location-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4.5vw, 4.8rem); font-weight: 400; line-height: 1.07; color: #FAF7F2; margin-bottom: 0.5rem; }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1-dim { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 400; line-height: 1.15; color: rgba(250,247,242,0.3); font-style: italic; margin-bottom: 2.25rem; }
.hero-rule { width: 3.5rem; height: 1.5px; background: var(--gold); margin-bottom: 2rem; opacity: 0.7; border-radius: 2px; }
.hero-sub { font-size: 1.02rem; line-height: 1.9; color: rgba(250,247,242,0.62); max-width: 460px; margin-bottom: 2.25rem; font-weight: 400; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.btn-gold { padding: 1rem 2.5rem; background: var(--gold); color: var(--teal-dark); font-family: 'Jost', sans-serif; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; border: none; cursor: pointer; border-radius: var(--r-sm); font-weight: 500; display: inline-block; text-align: center; min-height: 48px; line-height: 1.5rem; }
.btn-gold:hover { background: #ddb96e; transform: translateY(-2px); color: var(--teal-dark); text-decoration: none; }
.btn-ghost-w { font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(250,247,242,0.6); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.4); padding-bottom: 2px; font-weight: 400; }
.btn-ghost-w:hover { color: var(--gold); border-color: var(--gold); }
.hero-note { font-size: 0.8rem; color: rgba(250,247,242,0.38); margin-top: 1.6rem; font-style: italic; font-weight: 300; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3.5rem; padding-top: 2.25rem; border-top: 1px solid rgba(201,169,110,0.12); }
.stat-n { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 400; color: var(--gold); line-height: 1.1; }
.stat-l { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,242,0.32); margin-top: 0.4rem; max-width: 150px; }
.hero-art { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 2.5rem 2.5rem 4rem 1rem; }
.hero-art svg { width: 100%; max-width: 460px; height: auto; }
.hero-art img { width: 100%; max-width: 460px; aspect-ratio: 540 / 440; object-fit: cover; border-radius: var(--r); border: 1px solid rgba(201,169,110,0.35); box-shadow: var(--shadow); }
.hero-art-overlay { position: absolute; bottom: 3.5rem; right: 3rem; background: rgba(7,46,40,0.85); border: 1px solid rgba(201,169,110,0.3); border-radius: var(--r-sm); padding: 1rem 1.25rem; backdrop-filter: blur(10px); }
.hero-art-overlay strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.02rem; font-weight: 400; color: #FAF7F2; }
.hero-art-overlay span { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(250,247,242,0.35); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.8s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; } .hero-left > *:nth-child(2) { animation-delay: 0.22s; }
.hero-left > *:nth-child(3) { animation-delay: 0.34s; } .hero-left > *:nth-child(4) { animation-delay: 0.46s; }
.hero-left > *:nth-child(5) { animation-delay: 0.58s; } .hero-left > *:nth-child(6) { animation-delay: 0.7s; }
.hero-left > *:nth-child(7) { animation-delay: 0.82s; }

/* Sub-page hero: single column without artwork */
.hero--solo { grid-template-columns: 1fr; }
.hero--solo .hero-left { max-width: 880px; }

/* ============ TICKER ============ */
.ticker { background: var(--gold); padding: 0.85rem 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 3rem; animation: tick 26s linear infinite; white-space: nowrap; width: max-content; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.t-item { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-dark); font-weight: 500; display: flex; align-items: center; gap: 1rem; }
.t-item::after { content: '\25C6'; font-size: 0.4rem; opacity: 0.4; }

/* ============ SECTIONS ============ */
section { padding: 7rem 2.5rem; }
.sec-ey { display: flex; align-items: center; gap: 1rem; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 1.25rem; font-weight: 500; }
.sec-ey::before { content: ''; display: block; width: 2.5rem; height: 1.5px; background: var(--teal-mid); border-radius: 2px; }
.sec-h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.1rem, 3.5vw, 3.3rem); font-weight: 400; line-height: 1.15; color: var(--charcoal); }
.sec-h2 em { font-style: italic; color: var(--teal); }
.sec-lead { font-size: 1rem; line-height: 1.9; color: var(--mist); max-width: 640px; margin-top: 1.25rem; font-weight: 400; }

/* Alone section strip */
.alone { background: var(--ivory); }
.strip-wrap { margin-top: 3.5rem; overflow-x: auto; padding-bottom: 1rem; -webkit-overflow-scrolling: touch; }
.strip { display: flex; align-items: center; gap: 0; width: max-content; min-width: 100%; }
.strip-node { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; flex-shrink: 0; padding: 0 0.75rem; }
.strip-node .s-dot { width: 10px; height: 10px; border: 2px solid var(--gold); border-radius: 50%; background: var(--ivory); }
.strip-node .s-label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); white-space: nowrap; font-weight: 500; }
.strip-arrow { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.strip-node.start .s-dot { background: var(--gold); }
.strip-node.end .s-dot { background: var(--teal); border-color: var(--teal); }
.strip-node.end .s-label { color: var(--teal); }

/* ============ WIZARD ============ */
.wizard { background: var(--cream); }
.wiz-head { max-width: 760px; }
.wiz { margin-top: 3rem; background: var(--ivory); border: 1px solid var(--border-light); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 80px rgba(7,46,40,0.08); }
.wiz-progress { display: flex; align-items: center; gap: 0.5rem; padding: 1.4rem 2.5rem; background: var(--teal-dark); flex-wrap: wrap; }
.wiz-p-step { display: flex; align-items: center; gap: 0.55rem; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,242,0.35); }
.wiz-p-step .p-num { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.35); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; color: var(--gold); flex-shrink: 0; }
.wiz-p-step.done .p-num { background: var(--gold); color: var(--teal-dark); border-color: var(--gold); }
.wiz-p-step.active { color: rgba(250,247,242,0.92); }
.wiz-p-step.active .p-num { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.12); }
.wiz-p-step.done { color: rgba(250,247,242,0.5); }
.wiz-p-step.done .p-num { border-color: var(--teal-mid); color: var(--teal-light); }
.wiz-p-step .p-dash { width: 26px; height: 1px; background: rgba(201,169,110,0.2); }
.wiz-body { padding: 3rem 2.5rem 2.75rem; min-height: 380px; }
.wiz-step { display: none; }
.wiz-step.active { display: block; animation: fadeUp 0.45s ease both; }
.wiz-q { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 400; color: var(--charcoal); line-height: 1.25; margin-bottom: 0.75rem; }
.wiz-hint { font-size: 0.88rem; color: var(--mist); margin-bottom: 2rem; font-weight: 400; line-height: 1.7; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.choice { position: relative; background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--r); padding: 1.4rem 1.2rem; cursor: pointer; text-align: left; transition: all 0.25s; min-height: 96px; display: flex; flex-direction: column; gap: 0.6rem; font-family: 'Jost', sans-serif; -webkit-appearance: none; appearance: none; }
.choice:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(7,46,40,0.08); }
.choice .c-n { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.8rem; color: var(--gold); }
.choice .c-t { font-size: 0.95rem; font-weight: 500; color: var(--charcoal); line-height: 1.4; }
.choice .c-d { font-size: 0.76rem; color: var(--mist); line-height: 1.5; font-weight: 400; }
.choice.notsure { border-color: var(--gold); background: var(--gold-pale); grid-column: span 2; }
.choice.notsure .c-t { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; }
.choice.sel { background: var(--teal-dark); border-color: var(--teal-dark); }
.choice.sel .c-t, .choice.sel .c-d { color: #FAF7F2; }
.choice.sel .c-n { color: var(--gold-light); }
.choice.sel .c-d { color: rgba(250,247,242,0.7); }
.choice.sel::after { content: '\2713'; position: absolute; top: 0.9rem; right: 1rem; color: var(--gold); font-size: 1rem; }
.wiz-validate { margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; }
.wiz-validate.hidden { display: none; }
.btn-solid { padding: 0.95rem 2.2rem; background: var(--teal); color: #FAF7F2; font-family: 'Jost', sans-serif; font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; border-radius: var(--r-sm); font-weight: 500; min-height: 48px; }
.btn-solid:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-solid.gold { background: var(--gold); color: var(--teal-dark); }
.btn-solid.gold:hover { background: #ddb96e; }
.btn-ghost { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--mist); background: none; border: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; cursor: pointer; font-family: 'Jost', sans-serif; min-height: 44px; }
.btn-ghost:hover { color: var(--teal); border-color: var(--teal); }
.wiz-validate .btn-ghost { margin-right: auto; }
.reassure-line { font-size: 0.8rem; color: var(--mist); margin-top: 1.1rem; font-style: italic; }
.wiz-field { margin-bottom: 2rem; max-width: 560px; }
.wiz-field label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.6rem; letter-spacing: 0.04em; }
.wiz-field label .req { color: var(--gold); }
.wiz-field input, .wiz-field select { width: 100%; padding: 0.95rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 1rem; color: var(--charcoal); background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-sm); outline: none; transition: border-color 0.2s; appearance: none; }
.wiz-field input:focus, .wiz-field select:focus { border-color: var(--teal); }
.wiz-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8A84' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.wiz-field .help { font-size: 0.78rem; color: var(--mist); margin-top: 0.4rem; }
.wiz-opt-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.wiz-opt { background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--r-sm); padding: 0.95rem 1rem; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--charcoal); text-align: left; min-height: 48px; transition: all 0.2s; -webkit-appearance: none; appearance: none; }
.wiz-opt:hover { border-color: var(--gold); }
.wiz-opt.sel { background: var(--teal-dark); color: #FAF7F2; border-color: var(--teal-dark); }
.wiz-opt.sel::before { content: '\2713 '; color: var(--gold); }
.wiz-err { color: #C25E3A; font-size: 0.8rem; display: none; font-weight: 400; letter-spacing: 0.03em; }
.rec-card { background: var(--teal-dark); border-radius: var(--r-lg); padding: 2.5rem; color: #FAF7F2; }
.rec-ey { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.rec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.75rem; }
.rec-title em { font-style: italic; color: var(--gold-light); }
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.25rem; }
.rec-col h4 { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; font-weight: 500; }
.rec-col p { font-size: 0.86rem; line-height: 1.75; color: rgba(250,247,242,0.62); font-weight: 400; }
.rec-ctas { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.rec-guide { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(201,169,110,0.15); }
.rec-guide p { font-size: 0.9rem; color: rgba(250,247,242,0.55); margin-bottom: 0.9rem; font-weight: 400; }
.guide-form { display: flex; gap: 0.75rem; max-width: 460px; }
.guide-form input { flex: 1; padding: 0.85rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.92rem; border: 1px solid rgba(201,169,110,0.3); background: rgba(250,247,242,0.06); color: #FAF7F2; border-radius: var(--r-sm); outline: none; min-height: 48px; }
.guide-form input::placeholder { color: rgba(250,247,242,0.35); }
.guide-form input:focus { border-color: var(--gold); }
.guide-form button { padding: 0.85rem 1.6rem; background: var(--gold); color: var(--teal-dark); font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; border: none; border-radius: var(--r-sm); cursor: pointer; font-weight: 500; min-height: 48px; }
.guide-ok { font-size: 0.85rem; color: var(--gold-light); margin-top: 0.6rem; display: none; }
.guide-ok.show { display: block; }
.guide-err { font-size: 0.85rem; color: #e08a6a; margin-top: 0.6rem; display: none; }
.guide-err.show { display: block; }
.success-panel { text-align: center; padding: 1.5rem 1rem 0.5rem; }
.success-mark { width: 72px; height: 72px; border-radius: 50%; background: var(--teal-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.75rem; color: var(--teal); font-size: 1.8rem; }
.success-panel h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.9rem; }
.success-panel p { color: var(--mist); font-size: 1rem; line-height: 1.8; max-width: 560px; margin: 0 auto 2.25rem; font-weight: 400; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2rem; background: #25D366; color: #06350F; font-family: 'Jost', sans-serif; font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; border-radius: var(--r-sm); font-weight: 600; min-height: 48px; }
.whatsapp-btn:hover { background: #1fb958; color: #06350F; transform: translateY(-2px); }
.whatsapp-btn svg { width: 18px; height: 18px; }

/* ============ VALUE ============ */
.value { background: var(--ivory); }
.value-quote { margin-top: 3rem; background: var(--teal-dark); border-radius: var(--r-lg); padding: 3.5rem; display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }
.value-quote blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.45; color: #FAF7F2; font-weight: 400; }
.value-quote blockquote em { font-style: italic; color: var(--gold-light); }
.value-quote p { font-size: 0.95rem; line-height: 1.95; color: rgba(250,247,242,0.55); font-weight: 400; }
.value-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.vp { padding: 1.75rem 1.5rem; background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--r); }
.vp .vp-n { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 0.85rem; }
.vp h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; color: var(--charcoal); margin: 0.6rem 0; }
.vp p { font-size: 0.88rem; line-height: 1.8; color: var(--mist); font-weight: 400; }

/* ============ JOURNEY ============ */
.journey { background: var(--teal-dark); }
.journey .sec-ey { color: var(--gold); }
.journey .sec-ey::before { background: var(--gold); }
.journey .sec-h2 { color: #FAF7F2; }
.journey .sec-h2 em { color: var(--gold); }
.journey .sec-lead { color: rgba(250,247,242,0.55); }
.journey-banner { margin-top: 2.5rem; padding: 1.75rem 2rem; border: 1px solid rgba(201,169,110,0.25); border-radius: var(--r); background: rgba(201,169,110,0.06); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.journey-banner p { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2vw, 1.7rem); color: #FAF7F2; font-weight: 400; line-height: 1.4; }
.journey-banner p em { font-style: italic; color: var(--gold-light); }
.stage-track { margin-top: 3rem; overflow-x: auto; padding-bottom: 1.25rem; -webkit-overflow-scrolling: touch; }
.stage-row { display: flex; gap: 1rem; width: max-content; min-width: 100%; }
.stage { background: rgba(250,247,242,0.04); border: 1px solid rgba(201,169,110,0.14); border-radius: var(--r); padding: 1.75rem 1.5rem; width: 280px; flex-shrink: 0; display: flex; flex-direction: column; transition: border-color 0.25s, background 0.25s; }
.stage:hover { border-color: var(--gold); background: rgba(201,169,110,0.07); }
.stage .st-n { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; color: var(--gold); }
.stage .st-t { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #FAF7F2; font-weight: 400; margin: 0.7rem 0 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.stage dl { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.stage dt { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,247,242,0.3); font-weight: 500; }
.stage dd { font-size: 0.84rem; line-height: 1.7; color: rgba(250,247,242,0.62); font-weight: 400; }
.stage .st-cta { margin-top: auto; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.4); padding-bottom: 2px; display: inline-block; align-self: flex-start; }

/* ============ SERVICES ============ */
.services { background: var(--cream); }
.phase { margin-top: 3.5rem; }
.phase-head { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.phase-head .ph-n { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 1.1rem; }
.phase-head h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--charcoal); letter-spacing: 0.02em; }
.phase-head .ph-line { flex: 1; height: 1px; background: var(--border-light); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc { background: rgba(253,252,249,0.8); backdrop-filter: blur(8px); padding: 2.1rem 1.6rem; border-radius: var(--r); border: 1px solid var(--border-light); position: relative; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.svc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.svc:hover { background: var(--teal-dark); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(7,46,40,0.12); }
.svc:hover::after { transform: scaleX(1); }
.svc:hover .svc-n, .svc:hover .svc-title, .svc:hover .svc-desc { color: rgba(250,247,242,0.85); }
.svc-n { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--border); margin-bottom: 1.1rem; font-style: italic; }
.svc-title { font-family: 'Playfair Display', serif; font-size: 1.22rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.3; }
.svc-desc { font-size: 0.86rem; line-height: 1.8; color: var(--mist); font-weight: 400; margin-bottom: 1.4rem; }
.svc-when { margin-top: auto; align-self: flex-start; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-mid); border: 1px solid var(--border-light); padding: 0.3rem 0.7rem; border-radius: 20px; font-weight: 500; }

/* ============ TRUST ============ */
.trust { background: var(--ivory); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3.5rem; }
.trust-item { padding: 1.9rem 1.6rem; background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--r); }
.trust-item .t-ico { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--teal-mid); }
.trust-item .t-ico svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.trust-item h3 { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.55rem; }
.trust-item p { font-size: 0.87rem; line-height: 1.8; color: var(--mist); font-weight: 400; }
.trust-note { margin-top: 2.5rem; padding: 1.6rem 1.8rem; background: var(--gold-pale); border: 1px dashed var(--gold); border-radius: var(--r); font-size: 0.88rem; color: var(--charcoal); line-height: 1.8; font-weight: 400; }
.trust-note strong { color: var(--teal); }

/* Contact page: inline links inside trust cards */
.c-link { color: var(--teal); border-bottom: 1px solid var(--teal); font-weight: 500; }
.c-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============ PROJECTS ============ */
.projects { background: var(--cream); }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3.5rem; }
.proj-card { border-radius: var(--r); overflow: hidden; background: var(--ivory); border: 1px solid var(--border-light); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.proj-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.proj-img { aspect-ratio: 4/3; background: var(--teal-light); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.proj-img svg { width: 60%; opacity: 0.5; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; }
.proj-pill { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--teal-dark); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.32rem 0.75rem; border-radius: 20px; font-weight: 600; }
.proj-body { padding: 1.5rem; }
.proj-title { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.5rem; }
.proj-meta { font-size: 0.78rem; color: var(--mist); font-weight: 400; }

/* ============ DIASPORA ============ */
.diaspora { background: var(--teal-dark); }
.diaspora .sec-ey { color: var(--gold); }
.diaspora .sec-ey::before { background: var(--gold); }
.diaspora .sec-h2 { color: #FAF7F2; }
.diaspora .sec-h2 em { color: var(--gold); }
.dia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; align-items: start; }
.dia-text > p { font-size: 1rem; line-height: 2; color: rgba(250,247,242,0.55); margin-bottom: 1.5rem; font-weight: 400; }
.dia-feats { display: flex; flex-direction: column; gap: 0.9rem; }
.dia-f { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.2rem 1.25rem; border: 1px solid rgba(201,169,110,0.12); border-radius: var(--r-sm); transition: border-color 0.25s, background 0.25s; }
.dia-f:hover { border-color: rgba(201,169,110,0.35); background: rgba(201,169,110,0.04); }
.dia-f-ico { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid rgba(201,169,110,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.dia-f-ico svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.dia-f-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; color: #FAF7F2; margin-bottom: 0.25rem; }
.dia-f-desc { font-size: 0.82rem; line-height: 1.7; color: rgba(250,247,242,0.38); font-weight: 400; }
.dia-cta { margin-top: 2.5rem; }
.dia-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(201,169,110,0.2); position: relative; }
.dia-map svg { width: 100%; height: auto; }
.dia-map img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 340 / 280; }

/* ============ RECOVERY ============ */
.recovery { background: var(--gold-pale); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.recov-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; margin-top: 1rem; align-items: center; }
.recov-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2.5rem; }
.recov-list li { list-style: none; font-size: 0.9rem; color: var(--charcoal); padding: 0.85rem 1rem; background: rgba(253,252,249,0.7); border: 1px solid var(--border-light); border-radius: var(--r-sm); display: flex; align-items: center; gap: 0.6rem; font-weight: 400; }
.recov-list li::before { content: '\2192'; color: var(--gold); font-size: 1rem; }
.recov-right h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--charcoal); line-height: 1.3; margin-bottom: 1rem; }
.recov-right p { font-size: 0.92rem; line-height: 1.9; color: var(--mist); margin-bottom: 1.75rem; font-weight: 400; }
.btn-recovery { display: inline-block; padding: 1rem 2.5rem; background: var(--teal); color: #FAF7F2; font-family: 'Jost', sans-serif; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; border-radius: var(--r-sm); font-weight: 500; min-height: 48px; line-height: 1.5rem; }
.btn-recovery:hover { background: var(--teal-deep); color: #FAF7F2; transform: translateY(-2px); }

/* ============ RESOURCES ============ */
.resources { background: var(--cream); }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3.5rem; }
.res-card { background: var(--ivory); border: 1px solid var(--border-light); border-radius: var(--r); padding: 1.75rem 1.6rem; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.res-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.res-card .r-tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.res-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 400; color: var(--charcoal); line-height: 1.4; margin-bottom: 0.6rem; }
.res-card p { font-size: 0.85rem; line-height: 1.8; color: var(--mist); font-weight: 400; margin-bottom: 1.25rem; }
.res-card .r-link { margin-top: auto; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); border-bottom: 1px solid var(--teal); padding-bottom: 2px; align-self: flex-start; }
.res-card .r-link:hover { color: var(--gold); border-color: var(--gold); }
.res-featured { grid-column: span 2; background: var(--teal-dark); }
.res-featured h3 { color: #FAF7F2; font-size: 1.5rem; }
.res-featured p { color: rgba(250,247,242,0.55); }
.res-featured .r-tag { color: var(--gold); }
.res-featured .guide-form { margin-top: 1rem; max-width: 460px; }
.res-featured .guide-ok { color: var(--gold-light); }

/* Archive / journal cards (res-card variant with image) */
.res-card-img { margin-bottom: 1.25rem; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r-sm); }
.res-card-img img { width: 100%; height: 100%; object-fit: cover; }
.res-card-body { display: flex; flex-direction: column; flex: 1; }

/* Blog category filters */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.5rem; }
.blog-filter { display: inline-flex; align-items: center; padding: 0.55rem 1.1rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); border: 1px solid var(--border); border-radius: 999px; transition: all 0.25s; font-weight: 500; }
.blog-filter:hover { border-color: var(--gold); color: var(--gold); }
.blog-filter.is-active { background: var(--teal); border-color: var(--teal); color: #FAF7F2; }

/* ============ FAQ ============ */
.faq { background: var(--ivory); }
.faq-list { max-width: 780px; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.6rem 0; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 400; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; min-height: 60px; }
.faq-q .fq-ico { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--teal-mid); font-size: 1rem; transition: all 0.25s; }
.faq-item.open .faq-q .fq-ico { background: var(--teal); border-color: var(--teal); color: #FAF7F2; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 0 1.6rem; font-size: 0.92rem; line-height: 1.9; color: var(--mist); font-weight: 400; }

/* ============ CTA BAND ============ */
.cta-band { padding: 0; display: grid; grid-template-columns: 1fr 1.4fr; min-height: 440px; }
.cta-art { background: var(--teal); display: flex; align-items: center; justify-content: center; padding: 0; overflow: hidden; position: relative; }
.cta-art svg { width: 80%; max-width: 420px; }
.cta-art img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { background: var(--teal-dark); padding: 5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.emotion-strip { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.emotion-strip span { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,247,242,0.3); }
.emotion-strip i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 2.8vw, 2.9rem); font-weight: 400; color: #FAF7F2; line-height: 1.22; margin-bottom: 1rem; }
.cta-content h2 em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 0.95rem; color: rgba(250,247,242,0.5); margin-bottom: 2.5rem; font-weight: 400; }
.cta-actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { background: var(--teal-dark); padding: 5rem 2.5rem 2rem; color: rgba(250,247,242,0.5); }
.foot-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.3fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(201,169,110,0.12); }
.foot-brand .logo-link { margin-bottom: 1.25rem; }
.foot-brand p { font-size: 0.88rem; line-height: 1.85; color: rgba(250,247,242,0.42); max-width: 300px; font-weight: 400; }
.foot-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.foot-social a { width: 38px; height: 38px; border: 1px solid rgba(201,169,110,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(250,247,242,0.5); }
.foot-social a:hover { border-color: var(--gold); color: var(--gold); }
.foot-social svg { width: 15px; height: 15px; fill: currentColor; }
.foot-col h4 { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; font-weight: 500; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.foot-col a { font-size: 0.88rem; color: rgba(250,247,242,0.5); font-weight: 400; }
.foot-col a:hover { color: var(--gold); }
.foot-col li.foot-contact { font-size: 0.88rem; color: rgba(250,247,242,0.5); display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 400; }
.foot-col li.foot-contact svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-top: 4px; flex-shrink: 0; }
.foot-bottom { max-width: 1280px; margin: 0 auto; padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(250,247,242,0.3); font-weight: 400; }
.foot-bottom a { color: rgba(250,247,242,0.3); }
.foot-bottom a:hover { color: var(--gold); }

/* ============ FLOATING ============ */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #FAF7F2; border: none; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 1000; box-shadow: 0 4px 16px rgba(7,46,40,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }
.whatsapp-fab { position: fixed; bottom: 2rem; left: 2rem; width: 60px; height: 60px; border-radius: 50%; background: #25D366; border: 2px solid rgba(255,255,255,0.4); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(18,140,62,0.4); transition: all 0.3s; z-index: 1000; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #06350F; }

/* ============ REVEAL ============ */
/* Progressive enhancement: hidden only when JS is confirmed running (html.js).
   If main.js fails/blocked, content stays visible instead of opacity:0. */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
html.js .reveal.revealed, html.js .reveal.in { opacity: 1; transform: translateY(0); }
html.js .reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
html.js .reveal-left.revealed, html.js .reveal-left.in { opacity: 1; transform: translateX(0); }
html.js .reveal-delay-1 { transition-delay: 0.1s; }
html.js .reveal-delay-2 { transition-delay: 0.2s; }
html.js .reveal-delay-3 { transition-delay: 0.3s; }
html.js .reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal-left { opacity: 1; transform: none; transition: none; }
}

/* ============ WORDPRESS: ENTRY CONTENT ============ */
.entry-content { font-size: 1rem; line-height: 1.9; color: var(--charcoal); max-width: 780px; }
.entry-content > * { margin-bottom: 1.5rem; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.25; color: var(--charcoal); margin: 2.25rem 0 1rem; }
.entry-content h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.entry-content h3 { font-size: 1.4rem; }
.entry-content h4 { font-size: 1.15rem; }
.entry-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--gold); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote { border-left: 3px solid var(--gold); background: var(--teal-light); padding: 1.5rem 1.75rem; border-radius: 0 var(--r) var(--r) 0; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--teal-dark); }
.entry-content img { height: auto; }
.entry-content figure { margin: 2rem 0; }
.entry-content figcaption, .wp-caption-text { font-size: 0.8rem; color: var(--mist); text-align: center; margin-top: 0.6rem; }
.entry-content hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th, .entry-content td { border: 1px solid var(--border); padding: 0.75rem 1rem; text-align: left; }
.entry-content th { background: var(--teal-light); }
.entry-content pre { background: var(--teal-dark); color: #FAF7F2; padding: 1.25rem 1.5rem; border-radius: var(--r-sm); overflow-x: auto; }
.entry-content code { font-family: monospace; font-size: 0.9em; }
.wp-block-button__link { display: inline-block; padding: 0.95rem 2.2rem; background: var(--gold); color: var(--teal-dark); border-radius: var(--r-sm); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; }
.wp-block-button__link:hover { background: #ddb96e; color: var(--teal-dark); }

/* Editor alignment classes */
.alignleft { float: left; margin: 0 1.75rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.75rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
img.alignleft, img.alignright, img.aligncenter { display: block; }
.wp-caption { max-width: 100%; margin: 1.5rem 0; }
.sticky { position: relative; }

/* Post extras (single / page) */
.entry-thumb { margin-bottom: 2.5rem; }
.entry-thumb img { width: 100%; height: auto; border-radius: var(--r-lg); }
.post-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); font-size: 0.82rem; color: var(--mist); }
.post-meta a { color: var(--teal); }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.post-nav a { color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.post-nav a:hover { color: var(--gold); }
.page-links { margin-top: 2rem; font-size: 0.85rem; }

/* Pagination (archives) */
.pagination { display: flex; justify-content: center; margin-top: 3.5rem; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 0.9rem; border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--teal); font-size: 0.85rem; }
.pagination .page-numbers.current { background: var(--teal); border-color: var(--teal); color: #FAF7F2; }
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }

/* Comments */
.comments-area { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.comments-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 1.5rem; }
.comment-list { list-style: none; }
.comment-list ul.children { list-style: none; padding-left: 2rem; }
.comment-body { padding: 1.25rem 0; border-bottom: 1px solid var(--border-light); }
.comment-author { font-weight: 500; color: var(--charcoal); }
.comment-author .avatar { border-radius: 50%; margin-right: 0.5rem; }
.comment-metadata { font-size: 0.78rem; color: var(--mist); margin: 0.3rem 0 0.75rem; }
.comment-content { font-size: 0.92rem; line-height: 1.8; color: var(--charcoal); }
.comment-reply-link { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); }
.comment-respond { margin-top: 2.5rem; }
.comment-form label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 0.4rem; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 0.85rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.95rem; border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--cream); color: var(--charcoal); }
.comment-form .submit { padding: 0.95rem 2.2rem; background: var(--teal); color: #FAF7F2; border: none; border-radius: var(--r-sm); cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; }
.comment-form .submit:hover { background: var(--teal-deep); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .value-quote { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.75rem; }
  .rec-grid { grid-template-columns: 1fr 1fr; }
  .logo-tag { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  section { padding: 4.5rem 1.25rem; }
  .nav-links, .nav-right .nav-cta, .dark-toggle { display: none; }
  .logo-tag { display: none; }
  .mobile-menu-btn { display: flex; }
  nav { padding: 0 1.25rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 2.5rem; }
  .hero-art { padding: 1rem 1.5rem 4.5rem; }
  .hero-art-overlay { bottom: 2rem; right: 1.5rem; }
  .hero-scroll { display: none; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .choice.notsure { grid-column: span 2; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .res-featured { grid-column: span 1; }
  .proj-grid { grid-template-columns: 1fr; }
  .dia-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .recov-grid { grid-template-columns: 1fr; gap: 2rem; }
  .recov-list { grid-template-columns: 1fr; }
  .wiz-body { padding: 2rem 1.4rem 1.75rem; }
  .wiz-progress { padding: 1.1rem 1.4rem; }
  .wiz-p-step .p-dash { display: none; }
  .rec-card { padding: 1.75rem; }
  .rec-grid { grid-template-columns: 1fr; }
  .value-quote { padding: 2rem 1.5rem; }
  .value-pillars { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-art { display: none; }
  .cta-content { padding: 3.5rem 1.5rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .wiz-opt-group { grid-template-columns: 1fr; }
  .journey-banner { padding: 1.5rem; }
  .whatsapp-fab { left: 1.25rem; bottom: 1.25rem; width: 56px; height: 56px; }
  .back-to-top { right: 1.25rem; bottom: 1.25rem; }
}
@media (max-width: 420px) {
  .choice-grid { grid-template-columns: 1fr; }
  .choice.notsure { grid-column: span 1; }
  .guide-form { flex-direction: column; }
}
