/* ==========================================================================
   SERAPHIC HOMOEOPATHY — Design System
   Palette: cream + sage green + deep brown + antique gold, drawn from the
   clinic's own "Physical / Mental / Emotional / Spiritual" leaf mark.
   Display face: Fraunces (organic serif) — Body: Jost (clean geometric sans)
   ========================================================================== */

:root {
    /* Color */
    --cream:        #FAF5EA;
    --cream-deep:   #F0E6D2;
    --paper:        #FFFEFB;
    --sage-50:      #EEF2E5;
    --sage-100:     #DCE6CC;
    --sage:         #6B8054;
    --sage-dark:    #3E5233;
    --sage-darker:  #2E3E26;
    --brown:        #3A2A20;
    --brown-soft:   #6E5A4C;
    --gold:         #AC8449;
    --gold-light:   #D9BE8C;
    --ink:          #2A211B;
    --white:        #FFFFFF;
    --line:         rgba(58, 42, 32, 0.12);

    /* Type */
    --font-display: "Fraunces", "Georgia", serif;
    --font-body: "Jost", "Segoe UI", sans-serif;

    /* Rhythm */
    --container: 1180px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --shadow-soft: 0 20px 50px -25px rgba(42, 33, 27, 0.35);
    --shadow-card: 0 10px 30px -15px rgba(42, 33, 27, 0.25);
    --ease: cubic-bezier(.4,0,.2,1);
}

/* ---- Reset -------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--sage-darker); margin: 0 0 .5em; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--brown-soft); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--cream-deep); }
.section--dark { background: var(--sage-darker); color: var(--sage-50); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark p { color: var(--sage-100); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 1px;
    background: var(--gold);
    display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

/* ---- Botanical divider (signature motif) --------------------------------*/
.sprig-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 8px 0 40px; opacity: .8; }
.sprig-divider svg { width: 46px; height: 20px; color: var(--sage); }
.sprig-divider .dash { width: 60px; height: 1px; background: var(--line); }

/* ---- Buttons -------------------------------------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: .03em;
    border: 1px solid transparent;
    transition: all .3s var(--ease);
    white-space: nowrap;
}
.btn--primary { background: var(--sage-dark); color: var(--paper); box-shadow: var(--shadow-card); }
.btn--primary:hover { background: var(--sage-darker); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #96703b; transform: translateY(-2px); }
.btn--outline { border-color: var(--brown); color: var(--brown); background: transparent; }
.btn--outline:hover { background: var(--brown); color: var(--paper); }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: var(--paper); }
.btn--outline-light:hover { background: var(--paper); color: var(--sage-darker); }
.btn--sm { padding: 11px 22px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* ---- Top utility bar -----------------------------------------------------*/
.topbar {
    background: var(--sage-darker);
    color: var(--sage-100);
    font-size: 13px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar a { color: var(--sage-100); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold-light); }
.topbar__rating { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-light); font-weight: 500; }
.topbar__social { display: flex; gap: 14px; }
@media (max-width: 720px){ .topbar__left span:not(:first-child){ display:none; } }

/* ---- Header / Nav ---------------------------------------------------------*/
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(248, 246, 233, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px -20px rgba(42,33,27,.4); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 92px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 64px; width: 64px; border-radius: 50%; object-fit: cover; background: var(--cream); }
.brand__text .name { font-family: var(--font-display); font-size: 21px; color: var(--sage-darker); line-height: 1.1; font-weight: 600; }
.brand__text .tag { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    padding: 10px 16px; font-size: 14.5px; font-weight: 500; color: var(--brown);
    border-radius: 999px; transition: all .25s var(--ease); position: relative;
}
.main-nav a:hover, .main-nav a.active { background: var(--sage-50); color: var(--sage-darker); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 24px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--brown); margin: 6px 0; transition: .3s; }

@media (max-width: 980px) {
    .main-nav { position: fixed; inset: 92px 0 0 0; background: var(--cream); flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { padding: 16px 18px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
    .header-cta .btn span.btn-label-full { display: none; }
    .nav-toggle { display: block; }
    .brand img { height: 52px; width: 52px; }
    .site-header .container { height: 76px; }
}

/* ---- Hero -----------------------------------------------------------------*/
.hero { position: relative; overflow: hidden; padding: 76px 0 100px; background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 70%, var(--cream-deep) 100%); }
.hero__bg-leaf { position: absolute; top: -80px; right: -120px; width: 620px; height: 620px; opacity: .12; color: var(--sage); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero__title { font-size: clamp(36px, 5vw, 58px); line-height: 1.08; margin-bottom: 22px; }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__lede { font-size: 18.5px; max-width: 520px; margin-bottom: 34px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__trust { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; }
.hero__trust-item strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--sage-darker); }
.hero__trust-item span { font-size: 12.5px; color: var(--brown-soft); }

.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__frame {
    position: relative; width: 100%; max-width: 420px; aspect-ratio: 1/1.05;
    border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%;
    background: radial-gradient(circle at 30% 25%, var(--sage-100), var(--sage) 70%, var(--sage-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
}
.hero__frame img { width: 78%; border-radius: 50%; aspect-ratio: 1/1; object-fit: cover; border: 6px solid var(--paper); }
.hero__badge {
    position: absolute; bottom: 6%; left: -6%; background: var(--paper); border-radius: var(--radius-md);
    padding: 16px 20px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.hero__badge .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--sage-50); display: flex; align-items: center; justify-content: center; color: var(--sage-dark); flex-shrink: 0; }
.hero__badge strong { display: block; font-size: 14px; color: var(--sage-darker); }
.hero__badge span { font-size: 12px; color: var(--brown-soft); }
.hero__ring { position: absolute; top: -6%; right: -8%; width: 34%; aspect-ratio: 1; border: 1.5px dashed var(--gold-light); border-radius: 50%; }

@media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { order: -1; margin-bottom: 20px; }
    .hero__frame { max-width: 300px; }
}

/* ---- Whole-Person / Four Leaves feature ------------------------------------*/
.leaf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.leaf-card {
    background: var(--paper); border-radius: var(--radius-md); padding: 34px 26px; text-align: center;
    border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.leaf-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.leaf-card .leaf-ic { width: 62px; height: 62px; margin: 0 auto 18px; color: var(--sage-dark); }
.leaf-card h3 { font-size: 19px; margin-bottom: 8px; }
.leaf-card p { font-size: 14.5px; margin: 0; }
.leaf-card--1 .leaf-ic { color: #5F7A4C; }
.leaf-card--2 .leaf-ic { color: #3E5233; }
.leaf-card--3 .leaf-ic { color: #7C6B3F; }
.leaf-card--4 .leaf-ic { color: #4A3527; }
@media (max-width: 980px){ .leaf-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .leaf-grid { grid-template-columns: 1fr; } }

/* ---- About snippet / split sections ---------------------------------------*/
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.split.reverse { grid-template-columns: 1.15fr .85fr; }
.split.reverse .split__visual { order: 2; }
.split__visual { position: relative; }
.split__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ph-photo {
    width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
    background: radial-gradient(circle at 30% 20%, var(--sage-100), var(--sage) 65%, var(--sage-dark) 100%);
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.ph-photo svg { width: 34%; opacity: .9; }
.ph-photo::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 22px); }
.ph-photo.ph-wide { aspect-ratio: 16/10; }
.ph-photo.ph-square { aspect-ratio: 1/1; }
.split__visual .frame-deco { position: absolute; inset: -18px auto auto -18px; width: 60%; height: 60%; border: 2px solid var(--gold-light); border-radius: var(--radius-lg); z-index: -1; }
.split__stat { position: absolute; bottom: -24px; right: -20px; background: var(--sage-dark); color: var(--paper); padding: 22px 26px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); text-align: center; }
.split__stat strong { font-family: var(--font-display); font-size: 30px; display: block; }
.split__stat span { font-size: 12px; letter-spacing: .05em; color: var(--sage-100); }
.split__body h2 { font-size: clamp(28px,4vw,38px); }
.split__points { display: grid; gap: 16px; margin: 28px 0 32px; }
.split__points li { display: flex; gap: 14px; align-items: flex-start; color: var(--brown); font-weight: 500; }
.split__points .chk { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-50); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) {
    .split, .split.reverse { grid-template-columns: 1fr; }
    .split.reverse .split__visual { order: 0; }
    .split__stat { right: 10px; }
}

/* ---- Approach / timeline (real sequence -> numbered) -----------------------*/
.approach { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.approach::before { content: ""; position: absolute; top: 30px; left: 8%; right: 8%; height: 1px; background: repeating-linear-gradient(90deg, var(--gold-light) 0 10px, transparent 10px 20px); }
.approach__step { text-align: center; padding: 0 16px; position: relative; }
.approach__num { width: 62px; height: 62px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--gold-light); color: var(--sage-dark); font-family: var(--font-display); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; }
.approach__step h3 { font-size: 17px; margin-bottom: 8px; }
.approach__step p { font-size: 14px; }
@media (max-width: 900px){ .approach { grid-template-columns: 1fr; gap: 36px; } .approach::before{ display:none; } }

/* ---- Service cards ---------------------------------------------------------*/
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--paper); border-radius: var(--radius-md); padding: 34px 28px; border: 1px solid var(--line);
    transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-card__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--sage-50); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card .cat { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.service-card h3 { font-size: 20px; margin: 6px 0 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 18px; }
.service-card__link { font-size: 13.5px; font-weight: 600; color: var(--sage-dark); display: inline-flex; align-items: center; gap: 6px; }
.service-card__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
@media (max-width: 980px){ .service-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .service-grid { grid-template-columns: 1fr; } }

/* ---- Stat strip -------------------------------------------------------------*/
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 10px; }
.stat strong { font-family: var(--font-display); font-size: clamp(30px,4vw,42px); color: var(--paper); display: block; }
.stat span { font-size: 13px; letter-spacing: .04em; color: var(--sage-100); }
@media (max-width: 700px){ .stat-strip{ grid-template-columns: repeat(2,1fr);} }

/* ---- Testimonials ------------------------------------------------------------*/
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--paper); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--line); position: relative; }
.testi-card .quote-mark { font-family: var(--font-display); font-size: 60px; color: var(--sage-100); line-height: 0; position: absolute; top: 26px; right: 26px; }
.testi-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.testi-card p.text { font-size: 15px; color: var(--brown); margin-bottom: 22px; min-height: 90px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-person .ph-fallback { width: 46px; height: 46px; border-radius: 50%; background: var(--sage-50); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; }
.testi-person strong { display: block; font-size: 14.5px; color: var(--sage-darker); }
.testi-person span { font-size: 12.5px; color: var(--brown-soft); }
@media (max-width: 980px){ .testi-track { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .testi-track { grid-template-columns: 1fr; } }

/* ---- Blog cards ----------------------------------------------------------------*/
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--paper); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); transition: all .3s var(--ease); }
.blog-card:hover { box-shadow: var(--shadow-card); transform: translateY(-6px); }
.blog-card__img { aspect-ratio: 16/10.5; overflow: hidden; background: var(--sage-50); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 26px; }
.blog-card .meta { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; }
.blog-card p { font-size: 14.5px; }
.blog-card__link { font-size: 13.5px; font-weight: 600; color: var(--sage-dark); }
@media (max-width: 980px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .blog-grid { grid-template-columns: 1fr; } }

/* ---- FAQ Accordion ----------------------------------------------------------------*/
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 16.5px; color: var(--sage-darker); }
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--sage-50); color: var(--sage-dark); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease); font-size: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--sage-dark); color: var(--paper); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--brown-soft); }
.faq-item.open .faq-a { max-height: 400px; }

/* ---- Gallery ------------------------------------------------------------------------*/
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid .g-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; cursor: pointer; background: var(--sage-50); }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-grid .g-item:hover img { transform: scale(1.1); }
.gallery-grid .g-item .g-label { position: absolute; inset: auto 0 0 0; padding: 14px; font-size: 13px; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,.6), transparent); opacity: 0; transition: opacity .3s; }
.gallery-grid .g-item:hover .g-label { opacity: 1; }
@media (max-width: 980px){ .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px){ .gallery-grid { grid-template-columns: repeat(2,1fr); } }

.lightbox { position: fixed; inset: 0; background: rgba(20,15,10,.92); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; }
.lightbox .lb-close { position: absolute; top: 26px; right: 34px; color: #fff; font-size: 34px; background: none; border: none; line-height: 1; }

/* ---- CTA banner ------------------------------------------------------------------------*/
.cta-banner { background: var(--sage-dark); border-radius: var(--radius-lg); padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-banner::after { content:""; position:absolute; width: 360px; height: 360px; background: var(--sage-darker); opacity:.5; border-radius: 50%; right: -120px; bottom: -160px; }
.cta-banner__text { position: relative; z-index: 1; max-width: 520px; }
.cta-banner h2 { color: var(--paper); font-size: clamp(24px,3vw,32px); }
.cta-banner p { color: var(--sage-100); margin: 0; }
.cta-banner__actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 700px){ .cta-banner { padding: 40px 28px; } }

/* ---- Forms -----------------------------------------------------------------------------*/
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--sage-darker); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
    background: var(--paper); font-family: var(--font-body); font-size: 15px; color: var(--ink); transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); outline: none; }
.form-note { font-size: 12.5px; color: var(--brown-soft); margin-top: 10px; }
.alert { padding: 16px 20px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 24px; }
.alert--success { background: #E8F0E1; color: var(--sage-darker); border: 1px solid var(--sage-100); }
.alert--error { background: #FBEAE7; color: #8A3B2E; border: 1px solid #F1C7BE; }
@media (max-width: 700px){ .form-grid { grid-template-columns: 1fr; } }

/* ---- Contact info cards ------------------------------------------------------------------*/
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 50px; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; }
.info-card .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--sage-50); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.info-card p { font-size: 14.5px; margin: 0; }
@media (max-width: 900px){ .info-cards { grid-template-columns: 1fr; } }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---- Page banner (inner pages) -----------------------------------------------------------*/
.page-banner { padding: 70px 0 60px; background: var(--cream-deep); text-align: center; position: relative; overflow: hidden; }
.page-banner .leaf-deco { position: absolute; top: -40px; left: -40px; width: 200px; opacity: .15; color: var(--sage); }
.page-banner h1 { font-size: clamp(32px,5vw,48px); margin-bottom: 12px; }
.breadcrumb { font-size: 13.5px; color: var(--brown-soft); }
.breadcrumb a { color: var(--sage-dark); font-weight: 600; }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* ---- Service / Blog detail --------------------------------------------------------------*/
.detail-banner { height: 320px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 44px; background: linear-gradient(120deg, var(--sage), var(--sage-dark)); position: relative; }
.detail-banner img { width: 100%; height: 100%; object-fit: cover; }
.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.prose { font-size: 16px; color: var(--brown); }
.prose h2, .prose h3 { margin-top: 1.3em; }
.prose p { color: var(--brown-soft); }
.detail-sidebar { position: sticky; top: 120px; display: grid; gap: 22px; }
.sidebar-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; }
.sidebar-card h3 { font-size: 16px; margin-bottom: 16px; }
.sidebar-card .related-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; font-weight: 500; color: var(--brown); }
.sidebar-card .related-link:last-child { border: none; }
.sidebar-card .related-link:hover { color: var(--sage-dark); }
@media (max-width: 900px){ .detail-layout { grid-template-columns: 1fr; } .detail-sidebar{ position: static; } .detail-banner{ height: 220px; } }

/* ---- Footer -------------------------------------------------------------------------------*/
.site-footer { background: var(--brown); color: #E9DFCF; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 46px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; gap: 14px; margin-bottom: 18px; }
.footer-brand img { height: 56px; width: 56px; border-radius: 50%; }
.footer-brand .name { font-family: var(--font-display); font-size: 19px; color: #fff; }
.footer-brand .tag { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.site-footer p { color: #C7B9A4; font-size: 14.5px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 14.5px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #C7B9A4; font-size: 14.5px; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; color: #C7B9A4; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-light); margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 13px; color: #a9987f; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #a9987f; }
.footer-bottom a:hover { color: var(--gold-light); }
@media (max-width: 980px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---- Floating actions ----------------------------------------------------------------------*/
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); color: #fff; transition: transform .25s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab--wa { background: #3fa54a; }
.fab--call { background: var(--sage-dark); }
.fab svg { width: 24px; height: 24px; }

/* ---- Utilities -----------------------------------------------------------------------------*/
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-data { text-align: center; padding: 40px; color: var(--brown-soft); font-style: italic; }

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
}
