/* ============================================================
   Blush Beauty Salon — GOLD LUXE template
   Dark, elegant, high-end boutique. Default theme = DARK.
   ============================================================ */

/* ---------------- Tokens ---------------- */
:root {
    /* dark (default) palette */
    --bg: #16110f;
    --panel: #1f1814;
    --panel-2: #261d18;
    --line: rgba(192, 161, 107, 0.22);
    --line-soft: rgba(239, 231, 220, 0.08);
    --text: #efe7dc;
    --muted: #b6a99a;
    --heading: #f6efe3;
    --gold: #c0a16b;
    --gold-bright: #d8b87a;
    --gold-deep: #9d8049;
    --on-gold: #1a130d;

    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

    --radius: 4px;
    --radius-lg: 8px;
    --maxw: 1180px;
    --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
    --shadow-soft: 0 18px 40px -26px rgba(0, 0, 0, 0.6);
    --header-h: 84px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* light mode override (warm ivory) */
.light-mode {
    --bg: #f7f1e7;
    --panel: #ffffff;
    --panel-2: #fbf5ea;
    --line: rgba(157, 128, 73, 0.28);
    --line-soft: rgba(26, 19, 13, 0.08);
    --text: #3a3127;
    --muted: #7c6f5e;
    --heading: #2a2019;
    --gold: #a9854a;
    --gold-bright: #c0a16b;
    --gold-deep: #8a6c39;
    --on-gold: #fffaf0;
    --shadow: 0 24px 60px -30px rgba(80, 60, 25, 0.4);
    --shadow-soft: 0 18px 40px -28px rgba(80, 60, 25, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--serif);
    color: var(--heading);
    font-weight: 600;
    line-height: 1.12;
    margin: 0 0 0.5em;
    letter-spacing: 0.2px;
}

p { margin: 0 0 1rem; }

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

/* ---------------- Eyebrow / labels ---------------- */
.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-bright);
    margin: 0 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}
.section-head .eyebrow::before { display: none; }

/* gold divider rule */
.rule {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.4rem auto;
}
.rule.left { margin-left: 0; margin-right: 0; background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------------- Buttons ---------------- */
.btn-primary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.95rem 1.7rem;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--on-gold);
    box-shadow: 0 12px 28px -14px rgba(192, 161, 107, 0.7);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -14px rgba(216, 184, 122, 0.8);
    filter: brightness(1.06);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--gold);
}
.btn-ghost:hover {
    background: rgba(192, 161, 107, 0.1);
    color: var(--gold-bright);
    transform: translateY(-2px);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.link-arrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-bright);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 1.1rem; }

/* ============================================================
   Header — overlay over hero, solid on scroll
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
                border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(22, 17, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 40px -24px rgba(0, 0, 0, 0.8);
}
.light-mode .site-header.scrolled {
    background: rgba(247, 241, 231, 0.94);
}
/* Inner pages have no hero behind the header → keep it solid always */
.has-solid-header .site-header {
    background: rgba(22, 17, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
}
.light-mode.has-solid-header .site-header {
    background: rgba(247, 241, 231, 0.94);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}
.brand-mark {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.4rem;
    border-radius: 50%;
    transition: all 0.3s var(--ease);
}
.brand:hover .brand-mark { background: var(--gold); color: var(--on-gold); }
.brand-name {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--heading);
}
.brand-name span { color: var(--gold-bright); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0; padding: 0;
}
.nav-link {
    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: var(--text);
    padding: 0.6rem 0.9rem;
    position: relative;
    transition: color 0.25s var(--ease);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem; right: 0.9rem; bottom: 0.35rem;
    height: 1px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold-bright); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    color: var(--gold-bright) !important;
    margin-left: 0.5rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: var(--on-gold) !important; }

.nav-tools { display: flex; align-items: center; gap: 0.4rem; }
.theme-btn {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.25s var(--ease);
}
.theme-btn:hover { color: var(--gold-bright); border-color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0 11px;
}
.nav-toggle span {
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   Hero — full-bleed image
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 90px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(15, 11, 9, 0.92) 0%, rgba(15, 11, 9, 0.72) 42%, rgba(15, 11, 9, 0.4) 100%),
        linear-gradient(0deg, rgba(15, 11, 9, 0.85) 0%, rgba(15, 11, 9, 0) 45%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.hero .eyebrow { color: var(--gold-bright); }
.hero-title {
    font-size: clamp(2.9rem, 7vw, 5.4rem);
    font-weight: 500;
    color: #f6efe3;
    margin-bottom: 0;
    letter-spacing: 0;
}
.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-bright);
}
.hero-sub {
    color: #ddd2c2;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 1.6rem 0 2.2rem;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: 2.6rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(239, 231, 220, 0.14);
}
.hero-meta-item {
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cdc0ad;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.hero-meta-item i { color: var(--gold-bright); }

/* scroll cue */
.hero-cue {
    position: absolute;
    left: 50%; bottom: 26px;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--gold-bright);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    animation: bob 2.4s var(--ease) infinite;
}
.hero-cue i { display: block; margin-top: 0.5rem; font-size: 0.9rem; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

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

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 500;
}
.section-title em { font-style: italic; color: var(--gold-bright); }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------------- Strip (marquee-like accents) ---------------- */
.strip {
    background: var(--panel-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4rem 3rem;
    padding: 26px 28px;
}
.strip-item {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--heading);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}
.strip-item i { color: var(--gold-bright); font-size: 0.95rem; }

/* ---------------- Card grids ---------------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* service cards w/ gold hairline */
.svc-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.section-alt .svc-card { background: var(--panel-2); }
.svc-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.svc-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
    width: 60px; height: 60px;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    border-radius: 50%;
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
}
.svc-card h3 { font-size: 1.6rem; }
.svc-card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 1rem; }
.price-from {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-bright);
}

/* ---------------- Split section ---------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.split-img img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}
.split-img::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(216, 184, 122, 0.5);
    border-radius: var(--radius);
    pointer-events: none;
}
.split-text .section-title { text-align: left; }
.split-text p { color: var(--muted); }

.feature-list { margin-top: 1.8rem; display: grid; gap: 1.4rem; }
.feature-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.fi-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    border-radius: 50%;
    font-size: 1rem;
}
.feature-item h4 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.feature-item p { margin: 0; font-size: 0.95rem; }

/* ---------------- Stats ---------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
}
.section-alt .stat { background: var(--panel-2); }
.stat-value {
    display: block;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-bright);
    line-height: 1;
}
.stat-label {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.7rem;
    display: block;
}

/* ---------------- Steps (gold-numbered) ---------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step {
    text-align: center;
    padding: 20px;
    position: relative;
}
.step-num {
    width: 76px; height: 76px;
    margin: 0 auto 1.3rem;
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--gold-bright);
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: relative;
}
.step-num::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid var(--line);
    border-radius: 50%;
}
.step h4 { font-size: 1.35rem; }
.step p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ---------------- Testimonials ---------------- */
.quote-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin: 0;
    position: relative;
}
.section-alt .quote-card { background: var(--panel-2); }
.quote-card::before {
    content: "\201C";
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 1;
    color: rgba(192, 161, 107, 0.25);
    position: absolute;
    top: 18px; right: 24px;
}
.stars { color: var(--gold-bright); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 1rem; }
.quote-card blockquote {
    margin: 0 0 1.4rem;
    font-family: var(--serif);
    font-size: 1.32rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--heading);
}
.quote-card figcaption {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-top: 1px solid var(--line-soft);
    padding-top: 1.2rem;
}
.quote-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
}
.quote-card figcaption strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--heading); }
.quote-card figcaption span { font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }

/* ---------------- CTA band ---------------- */
.cta-band {
    background: var(--panel-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -10%, rgba(192, 161, 107, 0.16), transparent 60%);
}
.cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 500; }
.cta-band p { color: var(--muted); font-size: 1.08rem; margin-bottom: 2rem; }
.cta-band .btn-row { justify-content: center; }

/* ============================================================
   Inner page head
   ============================================================ */
.page-head {
    padding: calc(var(--header-h) + 70px) 0 60px;
    text-align: center;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(192, 161, 107, 0.14), transparent 55%);
}
.page-head .container { position: relative; }
.page-head .eyebrow { justify-content: center; }
.page-title { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 500; }
.page-subtitle { color: var(--muted); max-width: 600px; margin: 0.4rem auto 1.2rem; font-size: 1.08rem; }
.breadcrumb {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0;
}
.breadcrumb a { color: var(--gold-bright); }

/* ============================================================
   Services menu blocks
   ============================================================ */
.menu-block {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}
.section-alt .menu-block { background: var(--panel-2); }
.menu-block-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-bottom: 1.2rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid var(--line);
}
.menu-block-head i { color: var(--gold-bright); font-size: 1.2rem; }
.menu-block-head h3 { font-size: 1.7rem; margin: 0; }
.menu-item {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line-soft);
}
.menu-item:last-child { border-bottom: none; }
.mi-name { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--heading); }
.mi-desc { display: block; font-size: 0.85rem; color: var(--muted); }
.mi-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.mi-price {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-bright);
    flex-shrink: 0;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.acc-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}
.section-alt .acc-item { background: var(--panel-2); }
.acc-item.open { border-color: var(--gold); }
.acc-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--heading);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.acc-q i { color: var(--gold-bright); font-size: 0.9rem; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.acc-item.open .acc-q i { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-a-inner { padding: 0 1.5rem 1.3rem; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   Team
   ============================================================ */
.team-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.section-alt .team-card { background: var(--panel-2); }
.team-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-soft); }
.team-card img { width: 100%; height: 320px; object-fit: cover; filter: grayscale(0.15); transition: filter 0.4s var(--ease); }
.team-card:hover img { filter: grayscale(0); }
.team-body { padding: 24px 26px 28px; text-align: center; }
.team-body h4 { font-size: 1.5rem; margin-bottom: 0.15rem; }
.team-body .role {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--gold-bright);
    margin-bottom: 1rem;
}
.team-social { display: flex; justify-content: center; gap: 0.7rem; }
.team-social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    transition: all 0.25s var(--ease);
}
.team-social a:hover { color: var(--on-gold); background: var(--gold); border-color: var(--gold); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
    border: 1px solid var(--line);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: grid; place-items: center;
    color: var(--gold-bright);
    font-size: 1.4rem;
    background: rgba(15, 11, 9, 0.55);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.info-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 32px;
}
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.info-row:first-child { padding-top: 0; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.ir-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    border-radius: 50%;
}
.info-row h4 { font-size: 1.3rem; margin-bottom: 0.1rem; }
.info-row p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.info-row a:hover { color: var(--gold-bright); }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text); }
.hours-list .time { color: var(--muted); }
.hours-list .time.closed { color: var(--gold-deep); font-style: italic; }

/* form */
.form-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.95rem;
    padding: 0.8rem 0.95rem;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.light-mode .field input, .light-mode .field select, .light-mode .field textarea { background: var(--panel-2); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(192, 161, 107, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-note { font-size: 0.78rem; color: var(--muted); margin: 1rem 0 0; text-align: center; }

.form-success {
    display: none;
    background: rgba(192, 161, 107, 0.12);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    color: var(--gold-bright);
    padding: 1rem 1.2rem;
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
}
.form-success.show { display: block; }
.form-success i { margin-right: 0.4rem; }

/* offline map */
.map-offline {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.map-offline::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(192,161,107,0.05) 0 2px, transparent 2px 22px);
    pointer-events: none;
}
.map-offline:hover { border-color: var(--gold); transform: translateY(-3px); }
.map-pin {
    width: 60px; height: 60px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    border-radius: 50%;
    font-size: 1.5rem;
    position: relative;
}
.map-text { position: relative; }
.map-text strong { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--heading); }
.map-text { color: var(--muted); font-size: 0.95rem; }
.map-cta {
    margin-left: auto;
    position: relative;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-bright);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--gold);
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--panel-2);
    border-top: 1px solid var(--line);
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-about p { color: var(--muted); font-size: 0.95rem; margin: 1.2rem 0; max-width: 320px; }
.footer-about .brand { margin-bottom: 0.4rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    transition: all 0.25s var(--ease);
}
.footer-social a:hover { color: var(--on-gold); background: var(--gold); border-color: var(--gold); }
.footer h5 {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    color: var(--gold-bright);
    margin-bottom: 1.2rem;
}
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-links a, .footer-contact li { color: var(--muted); font-size: 0.94rem; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact i { color: var(--gold-bright); margin-top: 0.25rem; }

.footer-bottom {
    border-top: 1px solid var(--line-soft);
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.84rem;
    color: var(--muted);
}
.footer-all { color: var(--gold-bright) !important; }
.footer-all:hover { text-decoration: underline; }

/* ============================================================
   Back to top
   ============================================================ */
.to-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 50px; height: 50px;
    display: grid; place-items: center;
    background: var(--gold);
    color: var(--on-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.3s var(--ease);
    z-index: 90;
    box-shadow: var(--shadow-soft);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-bright); transform: translateY(-3px); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
/* No-JS fallback: if JS never runs, show content instead of leaving it hidden. */
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
    * { animation: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
    .card-grid, .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .split-img img { min-height: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(22, 17, 15, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 14px 22px 22px;
        gap: 0.2rem;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .light-mode .nav-links { background: rgba(247, 241, 231, 0.98); }
    .nav-links.open {
        max-height: 80vh;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-link { padding: 0.85rem 0.4rem; font-size: 0.82rem; }
    .nav-link::after { display: none; }
    .nav-cta { margin: 0.5rem 0 0; text-align: center; justify-content: center; }
    /* keep mobile menu readable over hero */
    .site-header .nav-links { color: var(--text); }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .section { padding: 70px 0; }
    .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
    .stats-grid, .steps { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
    .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
    .form-row { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .hero { min-height: 92vh; }
    .map-offline { flex-direction: column; align-items: flex-start; text-align: left; }
    .map-cta { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; }
}
