:root {
  --bg: #FBFAF6;
  --surface: #FFFFFF;
  --surface-2: #F1F4EC;
  --green-900: #1B3B2C;
  --green-700: #2E5E43;
  --green-600: #3C7355;
  --gold: #B8863B;
  --gold-deep: #8F6528;
  --ink: #212821;
  --ink-soft: #55605A;
  --line: #E4E7DE;
  --white: #FFFFFF;
  --header-bg: rgba(251,250,246,0.92);
  --brand-text: #1B3B2C;
  --brand-text-soft: #2E5E43;
  --accent-text: #8F6528;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;
  --shadow-card: 0 1px 2px rgba(27,59,44,0.06), 0 12px 28px -16px rgba(27,59,44,0.18);
  --shadow-card-hover: 0 4px 10px rgba(27,59,44,0.08), 0 22px 40px -16px rgba(27,59,44,0.26);
  --font-head: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, 'Segoe UI', sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #10160F;
    --surface: #171F16;
    --surface-2: #1E2A1C;
    --ink: #EDEFE8;
    --ink-soft: #B7C0B2;
    --line: #2C3A29;
    --white: #171F16;
    --gold: #D8A75C;
    --header-bg: rgba(16,22,15,0.86);
    --brand-text: #BFE0C9;
    --brand-text-soft: #9FCBAA;
    --accent-text: #D8A75C;
    --shadow-card: 0 1px 2px rgba(0,0,0,0.3), 0 12px 28px -16px rgba(0,0,0,0.5);
    --shadow-card-hover: 0 4px 10px rgba(0,0,0,0.35), 0 22px 40px -18px rgba(0,0,0,0.6);
  }
}
:root[data-theme="dark"] {
  --bg: #10160F; --surface: #171F16; --surface-2: #1E2A1C; --ink: #EDEFE8;
  --ink-soft: #B7C0B2; --line: #2C3A29; --white: #171F16; --gold: #D8A75C;
  --header-bg: rgba(16,22,15,0.86);
  --brand-text: #BFE0C9; --brand-text-soft: #9FCBAA; --accent-text: #D8A75C;
  --shadow-card: 0 1px 2px rgba(0,0,0,0.3), 0 12px 28px -16px rgba(0,0,0,0.5);
  --shadow-card-hover: 0 4px 10px rgba(0,0,0,0.35), 0 22px 40px -18px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; } }

body { margin:0; background:var(--bg); color:var(--ink); font-family:var(--font-body); font-size:16.5px; line-height:1.6; -webkit-font-smoothing:antialiased; }
a { color:inherit; }
img { max-width:100%; display:block; }
.wrap { max-width:1240px; margin:0 auto; padding:0 clamp(20px,4vw,56px); }
section { padding: clamp(56px,8vw,104px) 0; }

h1,h2,h3 { font-family:var(--font-head); font-weight:800; letter-spacing:-0.01em; margin:0; color:var(--ink); }

.btn {
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-head); font-weight:700; font-size:0.96rem;
  padding:14px 28px; border-radius:100px; border:none; cursor:pointer; text-decoration:none;
  transition:transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s ease, background .2s ease;
}
.btn-primary { background:var(--green-900); color:#fff; box-shadow:0 10px 24px -12px rgba(27,59,44,0.5); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 16px 30px -14px rgba(27,59,44,0.6); background:var(--green-700); }
.btn-ghost { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,0.55); }
.btn-ghost:hover { background:rgba(255,255,255,0.12); }
.btn:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }

/* header */
header.site { position:sticky; top:0; background:var(--header-bg); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); z-index:20; }
.header-row { display:flex; align-items:center; justify-content:space-between; padding:16px 0; gap:20px; flex-wrap:wrap; }
.wordmark { display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:800; font-size:1.28rem; color:var(--brand-text); text-decoration:none; }
.wordmark .leaf { width:26px; height:26px; color:var(--gold); flex:none; }
nav.site-nav { display:flex; gap:clamp(16px,2.6vw,30px); align-items:center; flex-wrap:wrap; }
nav.site-nav a.nav-link { font-size:0.94rem; font-weight:600; text-decoration:none; color:var(--ink-soft); }
nav.site-nav a.nav-link:hover { color:var(--brand-text-soft); }
.header-cta { display:flex; align-items:center; gap:18px; }
.header-phone { font-family:var(--font-head); font-weight:700; font-size:0.95rem; color:var(--brand-text); text-decoration:none; white-space:nowrap; }

/* hero */
.hero { position:relative; padding:0; min-height:min(86vh, 780px); display:flex; align-items:center; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns:minmax(300px,1fr) 2fr; min-height:min(86vh,760px); }
@media (max-width:860px) { .hero-grid { grid-template-columns:1fr; min-height:auto; } }
.hero-text { display:flex; flex-direction:column; justify-content:center; padding:clamp(40px,6vw,72px) clamp(24px,5vw,64px); background:var(--bg); position:relative; z-index:2; }
.hero-photo { position:relative; overflow:hidden; background:var(--surface-2); }
@media (max-width:860px) { .hero-photo { height:340px; order:-1; } }
.hero-photo img { width:100%; height:100%; object-fit:cover; object-position:50% 18%; display:block; will-change:transform; }
.hero h1 { color:var(--ink); font-size:clamp(2.3rem,4vw,3.4rem); line-height:1.05; text-wrap:balance; margin-bottom:20px; }
.hero p.lede { color:var(--ink-soft); font-size:1.1rem; margin:0 0 30px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }

/* trust bar */
.trust-bar { background:var(--surface); border-bottom:1px solid var(--line); }
.trust-row { display:flex; flex-wrap:wrap; gap:clamp(20px,4vw,0px); justify-content:space-between; padding:26px 0; }
.trust-item { display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:700; font-size:0.92rem; color:var(--brand-text); }
.trust-item svg { width:20px; height:20px; color:var(--gold); flex:none; }

/* section heading */
.section-head { max-width:640px; margin:0 auto 48px; text-align:center; }
.section-head h2 { font-size:clamp(1.8rem,3.4vw,2.5rem); text-wrap:balance; }
.section-head p { color:var(--ink-soft); font-size:1.06rem; margin-top:14px; }

/* services grid */
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:920px) { .svc-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px) { .svc-grid { grid-template-columns:1fr; } }
.svc-card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; box-shadow:var(--shadow-card); transition:transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; display:flex; flex-direction:column; }
.svc-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card-hover); }
.svc-card .svc-img { aspect-ratio:4/3; overflow:hidden; background:var(--surface-2); }
.svc-card .svc-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s cubic-bezier(.16,1,.3,1); }
.svc-card:hover .svc-img img { transform:scale(1.06); }
.svc-card .svc-body { padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.svc-card h3 { font-size:1.14rem; }
.svc-card p { margin:0; color:var(--ink-soft); font-size:0.94rem; flex:1; }
.svc-foot { display:flex; align-items:center; justify-content:space-between; margin-top:8px; padding-top:14px; border-top:1px solid var(--line); }
.svc-price { font-family:var(--font-head); font-weight:800; color:var(--brand-text); font-variant-numeric:tabular-nums; }
.svc-price small { display:block; font-weight:600; font-size:0.72rem; color:var(--ink-soft); }
.svc-link { position:relative; font-family:var(--font-head); font-weight:700; font-size:0.86rem; color:var(--brand-text-soft); text-decoration:none; }
.svc-link::after { content:''; position:absolute; left:0; bottom:-2px; width:100%; height:1px; background:currentColor; transform:scaleX(0); transform-origin:left; transition:transform .25s cubic-bezier(.16,1,.3,1); }
.svc-link:hover::after { transform:scaleX(1); }
.svc-link:hover { color:var(--accent-text); }

/* about band */
.about-band { background:var(--surface-2); }
.about-grid { display:grid; grid-template-columns:0.9fr 1.1fr; gap:clamp(32px,6vw,72px); align-items:center; }
@media (max-width:860px) { .about-grid { grid-template-columns:1fr; } }
.about-photo { border-radius:var(--radius-l); overflow:hidden; box-shadow:var(--shadow-card); aspect-ratio:4/5; }
.about-photo img { width:100%; height:100%; object-fit:cover; }
.about-copy h2 { font-size:clamp(1.8rem,3.2vw,2.4rem); margin-bottom:18px; text-wrap:balance; }
.about-copy p { color:var(--ink-soft); font-size:1.03rem; margin:0 0 16px; }
.about-copy p:last-of-type { margin-bottom:0; }
.about-facts { display:flex; gap:28px; margin-top:28px; flex-wrap:wrap; }
.about-fact strong { display:block; font-family:var(--font-head); font-weight:800; font-size:1.2rem; color:var(--brand-text); }
.about-fact span { font-size:0.86rem; color:var(--ink-soft); }

/* testimonial band */
.quote-band { background:var(--green-900); color:#fff; text-align:center; }
.quote-band svg.mark { width:36px; height:36px; color:var(--gold); margin:0 auto 26px; }
.quote-band blockquote { margin:0 auto; max-width:52ch; font-family:var(--font-head); font-weight:600; font-size:clamp(1.3rem,2.6vw,1.7rem); line-height:1.4; text-wrap:balance; }
.quote-band cite { display:block; margin-top:22px; font-style:normal; font-size:0.9rem; color:rgba(255,255,255,0.65); letter-spacing:0.03em; }

/* CTA band */
.cta-band { background:linear-gradient(120deg, var(--green-900), var(--green-700)); border-radius:var(--radius-l); color:#fff; padding:clamp(40px,6vw,64px); display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.cta-band h2 { color:#fff; font-size:clamp(1.6rem,3vw,2.1rem); max-width:20ch; text-wrap:balance; }
.cta-band p { color:rgba(255,255,255,0.8); margin:10px 0 0; }

/* contact */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,6vw,64px); }
@media (max-width:820px) { .contact-grid { grid-template-columns:1fr; } }
.contact-card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-l); padding:clamp(28px,4vw,40px); box-shadow:var(--shadow-card); }
.contact-facts dt { font-family:var(--font-head); font-weight:700; font-size:0.75rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--accent-text); margin-top:20px; }
.contact-facts dt:first-child { margin-top:0; }
.contact-facts dd { margin:6px 0 0; font-size:1.06rem; }
.contact-facts a { text-decoration:none; color:var(--ink); border-bottom:1px solid var(--line); }
.contact-facts a:hover { color:var(--brand-text-soft); border-color:var(--brand-text-soft); }
form.book-form { display:flex; flex-direction:column; gap:16px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field label { font-family:var(--font-head); font-size:0.78rem; font-weight:700; color:var(--ink-soft); }
.field input, .field textarea { font-family:var(--font-body); font-size:1rem; padding:13px 14px; border-radius:var(--radius-s); border:1.5px solid var(--line); background:var(--bg); color:var(--ink); }
.field input:focus-visible, .field textarea:focus-visible { outline:2px solid var(--green-700); outline-offset:1px; }
form.book-form .btn { align-self:flex-start; }
.form-msg { font-size:0.9rem; padding:12px 14px; border-radius:var(--radius-s); margin-top:4px; }
.form-msg.success { background:#E5F3EA; color:var(--green-900); }
.form-msg.error { background:#FBEAEA; color:#7C2530; }

/* footer */
footer.site { background:#10160F; color:#D6DBD1; padding:56px 0 30px; }
footer .wrap { display:flex; flex-wrap:wrap; gap:32px; justify-content:space-between; }
footer .wordmark { color:#fff; }
footer .foot-col h4 { font-family:var(--font-head); font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase; color:#8FA089; margin:0 0 14px; }
footer .foot-col a { display:block; color:#D6DBD1; text-decoration:none; font-size:0.94rem; margin-bottom:10px; }
footer .foot-col a:hover { color:var(--gold); }
.copyline { width:100%; margin-top:40px; padding-top:22px; border-top:1px solid rgba(255,255,255,0.1); font-size:0.8rem; color:#6E7B69; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }

.reveal { opacity:0; transform:translateY(16px); animation:rise .9s cubic-bezier(.16,1,.3,1) forwards; }
.reveal.d1 { animation-delay:.1s; }
.reveal.d2 { animation-delay:.2s; }
@keyframes rise { to { opacity:1; transform:translateY(0); } }

/* scroll-in reveal, triggered by JS adding .is-visible */
.scroll-reveal { opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.scroll-reveal.is-visible { opacity:1; transform:translateY(0); }
.scroll-reveal-group.is-visible .scroll-reveal-item { opacity:1; transform:translateY(0); }
.scroll-reveal-item { opacity:0; transform:translateY(24px); transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.scroll-reveal-item:nth-child(1) { transition-delay:0s; }
.scroll-reveal-item:nth-child(2) { transition-delay:.07s; }
.scroll-reveal-item:nth-child(3) { transition-delay:.14s; }
.scroll-reveal-item:nth-child(4) { transition-delay:.21s; }
.scroll-reveal-item:nth-child(5) { transition-delay:.28s; }
.scroll-reveal-item:nth-child(6) { transition-delay:.35s; }

@media (prefers-reduced-motion:reduce) {
  .scroll-reveal, .scroll-reveal-item { opacity:1 !important; transform:none !important; transition:none !important; }
}

/* admin-panel-free basics reused by login/simple utility pages */
.auth-shell { min-height:100vh; display:flex; align-items:center; justify-content:center; background:var(--surface-2); padding:24px; }
.auth-card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-l); padding:40px; width:100%; max-width:400px; box-shadow:var(--shadow-card); }
.auth-card h1 { font-size:1.4rem; margin-bottom:24px; }
