@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&display=swap');
/* ====================================================================
   The Good Health Shop — Functional Medicine & Health Coaching
   REAL brand: gold/amber wordmark + forest-green leaf · warm, natural
   Display Fraunces (serif), body Open Sans. Logo: leaf + butterfly wordmark.
   ==================================================================== */

:root {
  /* REAL brand sampled from the logo: gold/amber wordmark + muted forest-green leaf.
     Var names kept (--lime/--teal) but values are now the warm, natural palette. */
  --lime: #cf9a1e;        /* gold accent underline */
  --lime-d: #b9851a;
  --teal: #4e8c63;        /* muted forest green (the leaf) */
  --teal-mid: #3f7a52;
  --teal-d: #356a45;
  --teal-deep: #28543a;
  --grad: linear-gradient(120deg, #4e8c63 0%, #356a45 60%, #28543a 100%);
  --grad-soft: linear-gradient(120deg, rgba(207,154,30,0.14), rgba(78,140,99,0.14));
  --gold: #e0a516;        /* warm amber (wordmark) */
  --gold-d: #c98c0e;
  --gold-soft: rgba(224,165,22,0.14);

  --paper: #fffdf8;       /* warm ivory, not cold white */
  --mint: #f8f2e6;        /* warm cream */
  --mint-2: #f2e9d7;      /* deeper cream */
  --soft: #f6efe0;
  --ink: #4a4438;         /* warm charcoal-brown text */
  --ink-soft: #6a6354;
  --muted: #9a917e;
  --charcoal: #2c3424;    /* deep warm green-brown for footer/headings */
  --border: #ece3d2;
  --border-2: #e0d4bd;

  --container: 1200px;
  --container-narrow: 760px;
  --radius: 8px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-sm: 0 1px 3px rgba(33,58,53,0.06);
  --shadow-md: 0 12px 36px rgba(33,58,53,0.10);
  --shadow-lg: 0 26px 70px rgba(33,58,53,0.16);
  --shadow-teal: 0 14px 34px rgba(54,168,146,0.26);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --head: 'Poppins', 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink);
  background: var(--paper); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-d); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--teal-deep); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: rgba(126,203,182,0.3); }

h1,h2,h3,h4,h5 { font-family: var(--head); color: var(--charcoal); letter-spacing: -0.02em; line-height: 1.14; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { margin-bottom: 1.2em; } p:last-child { margin-bottom: 0; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--teal-d); margin-bottom: 1.1em; display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 26px; height: 3px; border-radius: 3px; background: var(--grad); display: inline-block; }
.eyebrow.center { justify-content: center; }
.lead { font-size: 1.18rem; line-height: 1.7; color: var(--ink-soft); }

/* ====== Layout ====== */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
section { padding: clamp(58px, 9vw, 120px) 0; }
.bg-white { background: var(--paper); }
.bg-mint { background: var(--mint); }
.bg-soft { background: var(--soft); }
.bg-grad { background: var(--grad); color: #fff; }
.bg-charcoal { background: var(--charcoal); color: #eaf3ef; }
.bg-grad h2,.bg-grad h3,.bg-charcoal h2,.bg-charcoal h3 { color: #fff; }

/* ====== Motion ====== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} }

/* ====== Nav ====== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.88); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 11px 32px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--charcoal); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: color .15s; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current=page] { color: var(--teal-d); border-bottom-color: var(--lime); }
.nav-links a.cta { color: #fff; background: var(--grad); padding: 10px 22px; border-radius: 99px; border-bottom: none; box-shadow: var(--shadow-teal); transition: all .18s var(--ease); }
.nav-links a.cta:hover { transform: translateY(-1px); filter: brightness(1.04); }
.nav-toggle { display: none; }
@media (max-width: 980px) {
  .nav-inner { padding: 9px 20px; }
  .brand img { height: 42px; }
  .nav-toggle { display: block; padding: 6px; } .nav-toggle svg { width: 26px; height: 26px; stroke: var(--charcoal); }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 26px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; } .nav-links a { font-size: 1rem; padding: 6px 0; }
}

/* ====== Hero (light, airy, split) ====== */
.hero { position: relative; background: linear-gradient(165deg, var(--mint) 0%, var(--mint-2) 60%, #ffffff 100%); overflow: hidden; padding: clamp(54px, 9vw, 104px) 0; }
.hero::before { content:''; position:absolute; top:-120px; right:-120px; width:420px; height:420px; border-radius:50%; background: var(--grad-soft); filter: blur(10px); z-index:0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; line-height: 1.06; margin-bottom: 0.45em; color: var(--charcoal); }
.hero .hero-sub { font-size: 1.2rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 1.8em; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-badges { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.hero-badge { color: var(--ink-soft); font-size: 0.86rem; display: flex; align-items: center; gap: 9px; font-weight: 600; }
.hero-badge svg { width: 19px; height: 19px; stroke: var(--teal-d); flex-shrink: 0; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.hero-media::after { content:''; position:absolute; inset:-6px; border-radius:30px; padding:6px; background: var(--grad); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:.5; pointer-events:none; }
.hero-media .float-card { position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius-lg); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.hero-media .float-card .fc-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-media .float-card .fc-ic svg { width: 21px; height: 21px; }
.hero-media .float-card .fc-num { font-weight: 800; color: var(--charcoal); font-size: 1.05rem; line-height: 1.1; }
.hero-media .float-card .fc-lbl { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 920px){ .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero-media { max-width: 440px; } }

/* ====== Buttons ====== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 99px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: all .18s var(--ease); border: 2px solid transparent; cursor: pointer; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 18px 40px rgba(54,168,146,.32); color:#fff; }
.btn-ghost { background: #fff; color: var(--teal-deep); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--teal-deep); }
.btn-white:hover { color: var(--teal-deep); box-shadow: var(--shadow-md); }
.btn-on-grad { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-on-grad:hover { background: #fff; color: var(--teal-deep); }
.btn-sm { padding: 11px 20px; font-size: 0.8rem; }
.text-link { font-weight: 700; color: var(--teal-d); border-bottom: 2px solid var(--lime); }
.text-link:hover { color: var(--teal-deep); }

/* ====== Section header ====== */
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head.left { margin: 0 0 44px; text-align: left; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { color: var(--ink-soft); }

/* ====== Grids ====== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ====== Image cards (services / posts) ====== */
.icard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s var(--ease); display: flex; flex-direction: column; height: 100%; }
.icard:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--border-2); }
.icard .icard-img { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.icard .icard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.icard:hover .icard-img img { transform: scale(1.06); }
.icard .icard-img .price-chip { position: absolute; top: 14px; right: 14px; background: #fff; color: var(--teal-deep); font-weight: 800; font-size: 1rem; padding: 7px 15px; border-radius: 99px; box-shadow: var(--shadow-md); }
.icard .icard-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.icard h3 { color: var(--charcoal); }
.icard p { color: var(--ink-soft); font-size: 0.96rem; }
.icard .cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--teal-d); }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-d); margin-top: auto; }
.card-link svg { width: 15px; height: 15px; transition: transform .18s; }
.icard:hover .card-link svg, a.icard:hover .card-link svg { transform: translateX(4px); }
a.icard:hover { text-decoration: none; }

/* plain feature card */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all .25s var(--ease); display: flex; flex-direction: column; gap: 15px; height: 100%; }
.card:hover { box-shadow: var(--shadow-md); border-color: var(--border-2); transform: translateY(-4px); }
.card h3 { color: var(--charcoal); } .card p { color: var(--ink-soft); }
.card .card-icon { width: 54px; height: 54px; border-radius: 15px; background: var(--grad); display: grid; place-items: center; color: #fff; flex-shrink: 0; box-shadow: var(--shadow-teal); }
.card .card-icon svg { width: 26px; height: 26px; }

/* ====== Steps ====== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
@media (max-width: 980px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 20px; border-top: 3px solid transparent; border-image: var(--grad) 1; }
.step .num { font-weight: 800; font-size: 2rem; line-height: 1; display: block; margin-bottom: 10px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ====== Editorial split ====== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 70px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; object-fit: cover; }
.split-media .float-card { position: absolute; bottom: -24px; left: -24px; background: #fff; border-radius: var(--radius-lg); padding: 18px 22px; box-shadow: var(--shadow-lg); max-width: 230px; }
.split-media .float-card .fc-num { font-weight: 800; font-size: 1.7rem; background: var(--grad); -webkit-background-clip: text; background-clip:text; -webkit-text-fill-color: transparent; line-height: 1; }
.split-media .float-card .fc-lbl { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 44px; } .split.rev .split-media { order: 0; } .split-media .float-card { left: 16px; bottom: -20px; } }

/* ====== TL;DR answer block (GEO) ====== */
.answer-box { background: var(--mint); border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 22px 26px; }
.answer-box .eyebrow { color: var(--teal-d); margin-bottom: 8px; }
.answer-box p { color: var(--ink); margin: 0; font-size: 1.02rem; }

/* ====== Gradient band ====== */
.band { position: relative; background: var(--grad); overflow: hidden; }
.band::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 120%, rgba(255,255,255,0.22), transparent 60%); }
.band-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: clamp(64px,9vw,104px) 32px; }
.band blockquote { font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.32; color: #fff; max-width: 880px; letter-spacing: -0.02em; }
.band cite { display: block; margin-top: 22px; font-style: normal; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.85); }
.band .quote-mark { font-size: 4rem; color: rgba(255,255,255,0.55); line-height: 0.3; display: block; margin-bottom: 22px; font-weight: 800; }

/* ====== Pricing rows ====== */
.svc { display: grid; gap: 24px; }
.svc-row { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 290px 1fr; transition: all .25s var(--ease); }
.svc-row:hover { box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.svc-row .svc-photo { overflow: hidden; }
.svc-row .svc-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 230px; transition: transform .6s var(--ease); }
.svc-row:hover .svc-photo img { transform: scale(1.05); }
.svc-row .svc-text { padding: 30px 34px; }
.svc-row .svc-headrow { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin-bottom: 12px; flex-wrap: wrap; }
.svc-row .svc-price { font-weight: 800; font-size: 1.7rem; background: var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; white-space: nowrap; }
.svc-row .svc-dur { font-size: 0.78rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-top: 6px; }
.svc-row h3 { margin-bottom: 8px; }
@media (max-width: 760px){ .svc-row { grid-template-columns: 1fr; } .svc-row .svc-photo img { min-height: 200px; aspect-ratio: 16/9; } }

/* ====== Stats ====== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width:760px){ .stats { grid-template-columns: repeat(2,1fr); gap: 36px 24px; } }
.stat .n { font-weight: 800; font-size: clamp(2.1rem,4vw,2.9rem); color: #fff; line-height: 1; }
.stat .l { font-size: 0.92rem; color: rgba(255,255,255,0.9); margin-top: 10px; }

/* ====== FAQ ====== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 25px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 1.18rem; font-weight: 700; color: var(--charcoal); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item summary .ic::before,.faq-item summary .ic::after { content:''; position:absolute; background: var(--teal-d); border-radius:2px; }
.faq-item summary .ic::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-item summary .ic::after { top: 0; left: 10px; width: 2px; height: 22px; transition: transform .2s, opacity .2s; }
.faq-item[open] summary .ic::after { transform: rotate(90deg); opacity: 0; }
.faq-item .faq-a { padding: 0 0 26px; color: var(--ink-soft); max-width: 720px; }

/* ====== Prose ====== */
.prose { max-width: 720px; }
.prose p { font-size: 1.08rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.5em; }
.prose h2 { margin: 1.8em 0 0.5em; font-size: 1.7rem; }
.prose h3 { margin: 1.6em 0 0.4em; }
.prose ul,.prose ol { margin: 0 0 1.5em; padding-left: 1.4em; }
.prose li { margin-bottom: 0.6em; line-height: 1.75; }
.prose blockquote { margin: 1.6em 0; padding: 8px 0 8px 26px; border-left: 4px solid var(--teal); font-weight: 700; font-size: 1.25rem; color: var(--charcoal); }
.prose hr { border: none; border-top: 1px solid var(--border-2); margin: 2.2em 0; }
.prose strong { color: var(--charcoal); }

/* ====== Article hero (light) ====== */
.article-hero { background: linear-gradient(165deg, var(--mint), #fff); padding: clamp(48px,7vw,84px) 0 0; }
.article-hero .a-inner { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.article-hero .article-meta { color: var(--teal-d); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; margin-bottom: 14px; }
.article-hero h1 { font-size: clamp(2rem,4.4vw,3rem); margin-bottom: 14px; color: var(--charcoal); }
.article-hero .article-byline { color: var(--muted); font-size: 0.92rem; padding-bottom: 8px; }
.article-figure { max-width: var(--container-narrow); margin: 32px auto 0; padding: 0 32px; }
.article-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 16/8; object-fit: cover; }

/* ====== CTA band ====== */
.cta-band { background: var(--grad); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 20% -20%, rgba(255,255,255,0.25), transparent 55%); }
.cta-band .cta-inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 32px; font-size: 1.15rem; }

/* ====== Testimonials ====== */
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 940px){ .t-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .t-grid { grid-template-columns: 1fr; } }
.tcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.tcard .stars { display: flex; gap: 3px; color: #f0b429; }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard .q { color: var(--ink); font-size: 1rem; line-height: 1.7; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.tcard .who .nm { font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }
.tcard .who .rl { font-size: 0.8rem; color: var(--muted); }

/* ====== Tags ====== */
.tag { display: inline-block; padding: 5px 13px; background: var(--mint); color: var(--teal-deep); border-radius: 99px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ====== Page header (light) ====== */
.page-header { background: linear-gradient(165deg, var(--mint) 0%, var(--mint-2) 70%, #fff 100%); text-align: center; padding: clamp(56px,8vw,96px) 0; position: relative; overflow: hidden; }
.page-header::before { content:''; position:absolute; top:-100px; left:-80px; width:340px; height:340px; border-radius:50%; background: var(--grad-soft); }
.page-header .ph-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 32px; }
.page-header h1 { margin-bottom: 16px; color: var(--charcoal); }
.page-header .lead { color: var(--ink-soft); }
.page-header .eyebrow { justify-content: center; }

/* ====== Contact ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-method { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-method .ci { width: 48px; height: 48px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; color: #fff; flex-shrink: 0; box-shadow: var(--shadow-teal); }
.contact-method .ci svg { width: 22px; height: 22px; }
.contact-method h4 { margin-bottom: 2px; }
.contact-method a { font-weight: 700; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 8px; }
.field input,.field textarea,.field select { width: 100%; padding: 14px 16px; background: var(--mint); border: 1px solid var(--border-2); border-radius: var(--radius); font-size: 1rem; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input:focus,.field textarea:focus,.field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(126,203,182,0.25); background:#fff; }
.field textarea { resize: vertical; min-height: 130px; }

/* ====== Footer ====== */
.footer { background: var(--charcoal); color: #d7e7e1; padding: 70px 0 30px; }
.footer a { color: rgba(215,231,225,0.78); text-decoration: none; }
.footer a:hover { color: var(--lime); }
.footer h4 { color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 50px; }
.footer-logo { height: 56px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer-grid p { color: rgba(215,231,225,0.62); font-size: 0.95rem; max-width: 320px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid li a { font-size: 0.92rem; }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(215,231,225,0.14); font-size: 0.78rem; color: rgba(215,231,225,0.5); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(215,231,225,0.6); }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }

/* ====== GHS green+gold extras ====== */
.btn-gold { background: var(--gold); color: #3a2e00; box-shadow: 0 8px 24px rgba(224,183,0,.28); }
.btn-gold:hover { background: var(--gold-d); color: #3a2e00; }
.eyebrow.gold { color: var(--gold-d); }
.eyebrow.gold::before { background: var(--gold); }
.card .card-icon.gold, .icard .card-icon.gold { background: linear-gradient(120deg,#f0c83a,#e0b700); color:#fff; }
.nav .brand img { height: 52px; }
@media (max-width:980px){ .nav .brand img { height: 42px; } }
.footer-logo { background: #fff; padding: 8px 12px; border-radius: 10px; }

/* ═══════════════════════════════════════════════════════════════
   PREMIUM LAYER — warm glass / luxurious  (2026-06-15 rebuild)
   Real brand: gold/amber wordmark + forest-green leaf, warm cream.
   ═══════════════════════════════════════════════════════════════ */

/* Warm mesh background gives depth so the glass reads as glass */
body{
  background:
    radial-gradient(1100px 600px at 8% -8%, rgba(224,165,22,0.10), transparent 60%),
    radial-gradient(1000px 620px at 100% 0%, rgba(78,140,99,0.10), transparent 58%),
    radial-gradient(900px 700px at 50% 110%, rgba(224,165,22,0.06), transparent 60%),
    var(--paper);
  background-attachment: fixed;
}

/* Elegant editorial serif for display headings = the "expensive" feel */
h1, h2, .hero h1, .section-head h2, .post-title, .band blockquote{
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.018em;
}
.hero h1{ font-weight: 500 !important; }

/* ── Glass cards ─────────────────────────────────────────────── */
.icard, .card, .tcard, .bcard, .form-card,
.hero-media .float-card, .split-media .float-card{
  background: rgba(255,253,248,0.62) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.7) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 18px 50px -18px rgba(58,48,24,0.22),
    0 6px 18px -10px rgba(58,48,24,0.12) !important;
}
.icard:hover, .card:hover, .bcard:hover{
  border-color: rgba(224,165,22,0.45) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 70px -22px rgba(58,48,24,0.30),
    0 0 0 1px rgba(224,165,22,0.18) !important;
  transform: translateY(-6px);
}

/* Sections become translucent so the warm mesh shows through */
.bg-white{ background: rgba(255,253,248,0.55) !important; }
.bg-mint{ background: rgba(248,242,230,0.55) !important; }

/* ── Nav: frosted, warm ──────────────────────────────────────── */
.nav{
  background: rgba(255,253,248,0.72) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(224,165,22,0.16) !important;
}
.nav-links a:hover, .nav-links a[aria-current=page]{ border-bottom-color: var(--gold) !important; }

/* ── Hero: kill the neon ring, warm glass ───────────────────── */
.hero{
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(224,165,22,0.16), transparent 60%),
    radial-gradient(820px 560px at 100% 10%, rgba(78,140,99,0.14), transparent 58%),
    linear-gradient(165deg, #fbf4e6 0%, #fdf9f0 55%, #fffdf8 100%) !important;
}
.hero::before{ display:none !important; }
.hero-media img{ box-shadow: 0 40px 90px -34px rgba(58,48,24,0.45) !important; }
.hero-media::after{
  background: linear-gradient(135deg, rgba(224,165,22,0.55), rgba(78,140,99,0.45)) !important;
  opacity: .35 !important;
}
.hero-media .float-card .fc-ic{ background: linear-gradient(135deg, var(--gold), var(--gold-d)) !important; }
.hero-media .float-card .fc-num,
.split-media .float-card .fc-num{
  background: linear-gradient(120deg, var(--gold-d), var(--teal-d)) !important;
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* Hero highlight word = gold→amber, matching the wordmark */
.grad-text{
  background: linear-gradient(120deg, #e0a516 0%, #d98a14 55%, #c97e10 100%) !important;
  -webkit-background-clip:text !important; background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
}

/* ── Buttons: refined, tactile ──────────────────────────────── */
.btn-primary{
  background: linear-gradient(135deg, #4e8c63 0%, #356a45 100%) !important;
  box-shadow: 0 10px 28px -10px rgba(40,84,58,0.55), 0 1px 0 rgba(255,255,255,0.25) inset !important;
}
.btn-primary:hover{ box-shadow: 0 18px 40px -12px rgba(40,84,58,0.6) !important; }
.btn-gold{
  background: linear-gradient(135deg, #e9b531 0%, #e0a516 100%) !important;
  color:#3a2c00 !important;
  box-shadow: 0 10px 28px -10px rgba(224,165,22,0.55), 0 1px 0 rgba(255,255,255,0.4) inset !important;
}
.nav-links a.cta{ background: linear-gradient(135deg, #4e8c63, #356a45) !important; box-shadow: 0 8px 20px -8px rgba(40,84,58,0.5) !important; }

/* Eyebrows / accents → gold */
.eyebrow{ color: var(--gold-d) !important; }
.eyebrow::before{ background: linear-gradient(120deg, var(--gold), var(--teal)) !important; }
.eyebrow.gold{ color: var(--teal-d) !important; }
.card-link{ color: var(--gold-d) !important; }

/* Bands / CTA → rich forest green with warm glow */
.band, .cta-band{
  background: linear-gradient(135deg, #356a45 0%, #28543a 70%, #1f4530 100%) !important;
}
.band::before, .cta-band::before{
  background: radial-gradient(circle at 80% -10%, rgba(224,165,22,0.30), transparent 55%) !important;
}

/* Stars (testimonials) → warm gold */
.tcard .stars{ color: var(--gold) !important; }
.tcard .who .av{ background: linear-gradient(135deg, var(--gold), var(--gold-d)) !important; color:#3a2c00 !important; }

/* Footer warm */
.footer{ background: #2c3424 !important; }
.footer a:hover{ color: var(--gold) !important; }

/* ── Facebook feed embed ─────────────────────────────────────── */
.fb-wrap{display:flex;justify-content:center;max-width:520px;margin:0 auto;}
.fb-wrap .fb-page,.fb-wrap span,.fb-wrap iframe{width:100%!important;max-width:500px;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 18px 50px -18px rgba(58,48,24,0.22);}

/* ── Fix footer logo white block: colourful logo on white box, NO invert ── */
.footer-logo{ filter:none !important; background:#fff !important; padding:10px 14px !important; border-radius:12px !important; display:inline-block; }

/* ── Footer brand badge: clean green circle on the dark footer ── */
.footer-badge{ width:78px; height:78px; border-radius:50%; margin-bottom:18px; display:block; box-shadow:0 8px 22px rgba(0,0,0,0.28); object-fit:cover; }
