/* ============================================================
   Sage Spa — Blush Beauty Salon
   Calm, natural, organic wellness aesthetic
   ============================================================ */

/* ---------------- Tokens ---------------- */
:root {
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* light palette */
    --bg: #f6f4ee;
    --panel: #fbfaf6;
    --panel-2: #efece2;
    --ink: #2f342b;
    --ink-soft: #5b6151;
    --line: #e2ddd0;

    --accent: #6f8a68;        /* sage primary */
    --accent-2: #7e9b76;      /* sage light */
    --accent-strong: #56714f; /* deep sage */
    --clay: #c08a6a;          /* secondary terracotta */
    --clay-soft: #d8b59c;

    --shadow-sm: 0 4px 14px rgba(47, 52, 43, 0.06);
    --shadow: 0 18px 50px rgba(47, 52, 43, 0.10);
    --shadow-lg: 0 30px 80px rgba(47, 52, 43, 0.14);

    --radius: 18px;
    --radius-lg: 32px;
    --maxw: 1180px;
    --blob: 62% 38% 46% 54% / 56% 44% 56% 44%;
}

.dark-mode {
    --bg: #1c211b;
    --panel: #242b22;
    --panel-2: #2c342a;
    --ink: #e9ece3;
    --ink-soft: #aab2a0;
    --line: #38402f;

    --accent: #8aa67f;
    --accent-2: #9bb491;
    --accent-strong: #a9c39e;
    --clay: #cf9d7e;
    --clay-soft: #b78460;

    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
}

/* ---------------- Base ---------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.12;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; color: var(--ink-soft); }

a { color: var(--accent-strong); text-decoration: none; }

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

em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent-strong);
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------------- Buttons ---------------- */
.btn-primary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.96rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fbfaf6;
    box-shadow: 0 10px 26px rgba(111, 138, 104, 0.32);
}
.dark-mode .btn-primary { color: #1c211b; }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(111, 138, 104, 0.4); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-strong);
}
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(5px); }

/* ---------------- Header ---------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 244, 238, 0.78);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.dark-mode .site-header { background: rgba(28, 33, 27, 0.8); }
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.brand-mark {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    background: var(--accent);
    color: #fbfaf6;
    border-radius: 50% 50% 50% 12px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.25rem;
}
.dark-mode .brand-mark { color: #1c211b; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand-name span { color: var(--accent-strong); font-style: italic; }
.brand-tag { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-top: -4px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-link {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: color .18s ease, background .18s ease;
}
.nav-link:hover { color: var(--accent-strong); }
.nav-link.active { color: var(--accent-strong); }
.nav-link.active::after {
    content: ""; display: block;
    width: 18px; height: 2px; margin: 2px auto 0;
    background: var(--clay); border-radius: 2px;
}
.nav-cta {
    background: var(--accent);
    color: #fbfaf6 !important;
    box-shadow: 0 8px 20px rgba(111, 138, 104, 0.3);
}
.dark-mode .nav-cta { color: #1c211b !important; }
.nav-cta:hover { background: var(--accent-strong); }
.nav-cta.active::after { display: none; }

.nav-tools { display: flex; align-items: center; gap: 0.5rem; }
.theme-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--panel);
    color: var(--ink);
    cursor: pointer;
    font-size: 1rem;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.theme-btn:hover { border-color: var(--accent); color: var(--accent-strong); transform: rotate(-12deg); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Sections ---------------- */
.section { padding: 84px 0; }
.section-alt { background: var(--panel-2); }

.eyebrow {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.eyebrow::before {
    content: "\f06c"; /* leaf */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-2);
    font-size: 0.8rem;
}

.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-sub { font-size: 1.05rem; }

/* ---------------- HERO (asymmetric / organic) ---------------- */
.hero {
    position: relative;
    padding: 70px 0 96px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -160px; right: -120px;
    width: 460px; height: 460px;
    background: radial-gradient(circle at 30% 30%, rgba(126,155,118,0.28), rgba(126,155,118,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -120px; left: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle at 50% 50%, rgba(192,138,106,0.18), rgba(192,138,106,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: clamp(30px, 5vw, 80px);
}

.hero-title {
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    line-height: 1.02;
    margin-bottom: 1.1rem;
}
.hero-sub { font-size: 1.12rem; max-width: 30rem; margin-bottom: 1.7rem; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 1.9rem; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.hero-meta-item i { color: var(--accent); }

/* organic image */
.hero-photo { position: relative; justify-self: center; }
.hero-photo .shape {
    position: absolute;
    z-index: 0;
}
.hero-photo .leaf-1 {
    top: -34px; left: -38px;
    width: 96px; height: 96px;
    color: var(--accent-2);
    opacity: 0.5;
    font-size: 96px;
    transform: rotate(-18deg);
}
.hero-photo .dot-ring {
    bottom: -26px; right: -10px;
    width: 120px; height: 120px;
    border: 2px dashed var(--clay-soft);
    border-radius: 50%;
    opacity: 0.7;
}
.hero-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    border-radius: var(--blob);
    box-shadow: var(--shadow-lg);
    animation: blobmorph 16s ease-in-out infinite alternate;
}
@keyframes blobmorph {
    0%   { border-radius: 62% 38% 46% 54% / 56% 44% 56% 44%; }
    50%  { border-radius: 44% 56% 58% 42% / 48% 56% 44% 52%; }
    100% { border-radius: 56% 44% 40% 60% / 60% 40% 54% 46%; }
}
.hero-badge {
    position: absolute;
    z-index: 2;
    left: -24px; bottom: 40px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.hero-badge .stars { color: #d9a441; font-size: 0.85rem; letter-spacing: 1px; }
.hero-badge strong { display: block; font-family: var(--serif); font-size: 1.3rem; line-height: 1; }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------------- Strip (vertical wellness pills, organic) ---------------- */
.strip { padding: 0 0 14px; }
.strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.strip-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem 1.3rem;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.strip-item i {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50% 50% 50% 14px;
    background: var(--panel-2);
    color: var(--accent-strong);
    font-size: 1.15rem;
}

/* ---------------- Staggered service cards ---------------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* asymmetric stagger: nudge alternating cards */
.svc-grid .svc-card:nth-child(3n+2) { transform: translateY(28px); }
.svc-grid .svc-card:nth-child(3n+2).reveal.in { transform: translateY(28px); }

.svc-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.7rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.svc-card::after {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 110px; height: 110px;
    background: radial-gradient(circle, rgba(126,155,118,0.12), rgba(126,155,118,0));
    border-radius: 50%;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent-2); }
.svc-grid .svc-card:nth-child(3n+2):hover { transform: translateY(22px); }
.svc-icon {
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 50% 50% 14px 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fbfaf6;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}
.dark-mode .svc-icon { color: #1c211b; }
.svc-card h3 { font-size: 1.35rem; }
.svc-card p { font-size: 0.96rem; margin-bottom: 1rem; }
.price-from {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: var(--accent-strong);
    background: var(--panel-2);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

/* ---------------- Split / Feature ---------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.split-img { position: relative; }
.split-img img {
    width: 100%;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    border-radius: 48% 52% 55% 45% / 52% 48% 52% 48%;
    box-shadow: var(--shadow);
}
.split-img::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid var(--accent-2);
    border-radius: 48% 52% 55% 45% / 52% 48% 52% 48%;
    opacity: 0.4;
    z-index: -1;
}

.feature-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.fi-icon {
    flex: none;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 50% 50% 50% 14px;
    background: var(--panel-2);
    color: var(--accent-strong);
    font-size: 1.05rem;
}
.feature-item h4 { font-family: var(--sans); font-weight: 600; font-size: 1.02rem; margin-bottom: 0.15rem; }
.feature-item p { font-size: 0.92rem; margin: 0; }

/* ---------------- Stats ---------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.stat {
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem;
    box-shadow: var(--shadow-sm);
}
.stat-value { display: block; font-family: var(--serif); font-weight: 600; font-size: 2.6rem; color: var(--accent-strong); line-height: 1; }
.stat-label { display: block; margin-top: 0.5rem; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------------- Steps ---------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.9rem 1.5rem;
    box-shadow: var(--shadow-sm);
}
.step:nth-child(even) { transform: translateY(22px); }
.step-num {
    width: 50px; height: 50px;
    display: grid; place-items: center;
    border-radius: 50% 50% 14px 50%;
    background: var(--accent);
    color: #fbfaf6;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.dark-mode .step-num { color: #1c211b; }
.step h4 { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------------- Testimonials ---------------- */
.quote-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    margin: 0;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.quote-card::before {
    content: "\201C";
    position: absolute;
    top: 8px; right: 24px;
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--accent-2);
    opacity: 0.22;
    line-height: 1;
}
.quote-card .stars { color: #d9a441; letter-spacing: 2px; margin-bottom: 0.8rem; }
.quote-card blockquote { margin: 0 0 1.3rem; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.08rem; color: var(--ink); line-height: 1.5; }
.quote-card figcaption { display: flex; align-items: center; gap: 0.8rem; }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote-card figcaption strong { display: block; font-family: var(--sans); }
.quote-card figcaption span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------------- CTA band ---------------- */
.cta-band {
    margin: 0 24px 84px;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.cta-band::before, .cta-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-band::before { width: 280px; height: 280px; top: -120px; right: -60px; }
.cta-band::after { width: 200px; height: 200px; bottom: -110px; left: 10%; }
.cta-inner {
    position: relative;
    text-align: center;
    padding: 64px 24px;
    color: #fbfaf6;
}
.cta-inner h2 { color: #fbfaf6; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-inner p { color: rgba(251,250,246,0.9); max-width: 36rem; margin: 0 auto 1.6rem; }
.cta-inner .btn-row { justify-content: center; }
.cta-inner .btn-primary { background: #fbfaf6; color: var(--accent-strong); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.cta-inner .btn-primary:hover { background: #fff; }
.cta-inner .btn-ghost { color: #fbfaf6; border-color: rgba(255,255,255,0.5); }
.cta-inner .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* ---------------- Page head ---------------- */
.page-head {
    padding: 64px 0 18px;
    position: relative;
    overflow: hidden;
}
.page-head::before {
    content: "";
    position: absolute;
    top: -120px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(126,155,118,0.2), rgba(126,155,118,0) 70%);
    border-radius: 50%;
}
.page-title { font-size: clamp(2.2rem, 4.8vw, 3.4rem); position: relative; }
.page-subtitle { font-size: 1.1rem; max-width: 40rem; position: relative; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); position: relative; }
.breadcrumb a { color: var(--accent-strong); }

/* ---------------- Menu blocks (services) ---------------- */
.menu-block {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.9rem;
    box-shadow: var(--shadow-sm);
}
.menu-block:nth-child(even) { transform: translateY(24px); }
.menu-block-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.menu-block-head i {
    width: 50px; height: 50px;
    display: grid; place-items: center;
    border-radius: 50% 50% 14px 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fbfaf6;
    font-size: 1.2rem;
}
.dark-mode .menu-block-head i { color: #1c211b; }
.menu-block-head h3 { font-size: 1.45rem; margin: 0; }
.menu-item { display: flex; align-items: baseline; gap: 0.6rem; padding: 0.7rem 0; }
.mi-name { display: block; font-family: var(--sans); font-weight: 600; color: var(--ink); }
.mi-desc { display: block; font-size: 0.84rem; color: var(--ink-soft); }
.mi-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.mi-price { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--accent-strong); white-space: nowrap; }

/* ---------------- FAQ accordion ---------------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.acc-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acc-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--ink);
    padding: 1.15rem 1.4rem;
}
.acc-q i { color: var(--accent-strong); transition: transform .25s ease; flex: none; }
.acc-item.open .acc-q i { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a-inner { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------------- Team ---------------- */
.team-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 1 / 1.06; object-fit: cover; }
.team-body { padding: 1.3rem 1.4rem 1.5rem; }
.team-body h4 { font-size: 1.25rem; }
.team-body .role { font-size: 0.88rem; color: var(--clay); font-weight: 500; margin-bottom: 0.7rem; }
.team-social { display: flex; gap: 0.55rem; }
.team-social a {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.team-social a:hover { color: #fbfaf6; background: var(--accent); border-color: var(--accent); }
.dark-mode .team-social a:hover { color: #1c211b; }

/* ---------------- Gallery (organic masonry) ---------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------------- Contact ---------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 38px;
    align-items: start;
}

.info-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
    box-shadow: var(--shadow-sm);
}
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 0.85rem 0; }
.info-row + .info-row { border-top: 1px solid var(--line); }
.ir-icon {
    flex: none;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border-radius: 50% 50% 14px 50%;
    background: var(--panel-2);
    color: var(--accent-strong);
    font-size: 1.1rem;
}
.info-row h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; margin-bottom: 0.15rem; }
.info-row p { margin: 0; font-size: 0.94rem; }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.94rem; border-top: 1px solid var(--line); }
.hours-list li:first-child { border-top: none; }
.hours-list .day { color: var(--ink); font-weight: 500; }
.hours-list .time { color: var(--ink-soft); }
.hours-list .time.closed { color: var(--clay); font-weight: 600; }

/* sticky sidebar booking */
.booking-aside { position: sticky; top: 96px; }

.form-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.9rem;
    box-shadow: var(--shadow);
}
.form-success {
    display: none;
    background: rgba(111, 138, 104, 0.14);
    border: 1px solid var(--accent-2);
    color: var(--accent-strong);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}
.form-success.show { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 0.94rem;
    color: var(--ink);
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(111, 138, 104, 0.18);
}
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin: 0.9rem 0 0; text-align: center; }

/* ---------------- Map placeholder ---------------- */
.map-offline {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 38px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.9rem;
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    background-image:
        radial-gradient(circle at 18% 30%, rgba(126,155,118,0.10), rgba(126,155,118,0) 32%),
        radial-gradient(circle at 82% 75%, rgba(192,138,106,0.10), rgba(192,138,106,0) 32%);
    transition: box-shadow .25s ease, transform .25s ease;
}
.map-offline:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.map-pin {
    flex: none;
    width: 60px; height: 60px;
    display: grid; place-items: center;
    border-radius: 50% 50% 14px 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fbfaf6;
    font-size: 1.5rem;
}
.dark-mode .map-pin { color: #1c211b; }
.map-text { flex: 1 1 240px; }
.map-text strong { display: block; font-family: var(--serif); font-size: 1.2rem; }
.map-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--accent-strong); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--panel-2); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-about p { font-size: 0.94rem; margin: 1rem 0 1.2rem; max-width: 26rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--accent); color: #fbfaf6; border-color: var(--accent); }
.dark-mode .footer-social a:hover { color: #1c211b; }
.footer h5 { font-family: var(--sans); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a { color: var(--ink-soft); font-size: 0.94rem; }
.footer-links a:hover { color: var(--accent-strong); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.footer-contact i { color: var(--accent); margin-top: 4px; }

.footer-bottom { border-top: 1px solid var(--line); margin-top: 48px; padding: 22px 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.85rem; color: var(--ink-soft); }
.footer-templates a { color: var(--accent-strong); font-weight: 600; }

/* ---------------- To top ---------------- */
.to-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 48px; height: 48px;
    border-radius: 50% 50% 14px 50%;
    border: none;
    background: var(--accent);
    color: #fbfaf6;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
    z-index: 40;
}
.dark-mode .to-top { color: #1c211b; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent-strong); }

/* ---------------- Reveal ---------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: translateY(0); }
.js .svc-grid .svc-card.reveal:nth-child(3n+2) { transform: translateY(50px); }
.js .svc-grid .svc-card.reveal.in:nth-child(3n+2) { transform: translateY(28px); }
.js .step.reveal:nth-child(even) { transform: translateY(44px); }
.js .step.reveal.in:nth-child(even) { transform: translateY(22px); }
.js .menu-block.reveal:nth-child(even) { transform: translateY(46px); }
.js .menu-block.reveal.in:nth-child(even) { transform: translateY(24px); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
    .nav-links {
        position: fixed;
        top: 76px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        background: var(--panel);
        border-bottom: 1px solid var(--line);
        padding: 1rem 24px 1.4rem;
        box-shadow: var(--shadow);
        transform: translateY(-130%);
        transition: transform .3s ease;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-link { padding: 0.7rem 0.9rem; }
    .nav-link.active::after { display: none; }
    .nav-cta { justify-content: center; }
    .nav-toggle { display: flex; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo { order: -1; margin-bottom: 1.5rem; }
    .hero-photo img { max-width: 360px; }

    .contact-grid { grid-template-columns: 1fr; }
    .booking-aside { position: static; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 760px) {
    .section { padding: 60px 0; }
    .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
    .svc-grid .svc-card:nth-child(3n+2),
    .js .svc-grid .svc-card.reveal:nth-child(3n+2),
    .js .svc-grid .svc-card.reveal.in:nth-child(3n+2) { transform: none; }
    .strip-inner { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step:nth-child(even),
    .js .step.reveal:nth-child(even),
    .js .step.reveal.in:nth-child(even),
    .menu-block:nth-child(even),
    .js .menu-block.reveal:nth-child(even),
    .js .menu-block.reveal.in:nth-child(even) { transform: none; }
    .split { grid-template-columns: 1fr; }
    .split-img::before { inset: 12px -12px -12px 12px; }
    .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; }
    .hero-badge { left: 0; }
}

@media (max-width: 440px) {
    .strip-inner, .stats-grid { grid-template-columns: 1fr; }
}
