@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@8..144,400;8..144,500;8..144,600;8..144,700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════════════
   SNEZIR GARAJ — Corporate Design System
   Palette: Charcoal + Champagne Gold + Warm Cream
   ═══════════════════════════════════════════════════════════════ */

:root {
    --ink: #08080a;
    --ink-90: #121214;
    --ink-80: #1a1a1e;
    --ink-70: #252529;
    --ink-60: #323238;
    --gold: #c4a052;
    --gold-light: #dbb96a;
    --gold-dark: #9a7d3a;
    --gold-muted: rgba(196, 160, 82, 0.14);
    --gold-glow: rgba(196, 160, 82, 0.28);
    --cream: #f6f4ef;
    --cream-dark: #ebe8e0;
    --white: #ffffff;
    --success: #2d8a5e;
    --success-bg: rgba(45, 138, 94, 0.1);
    --danger: #c0392b;
    --danger-bg: rgba(192, 57, 43, 0.08);
    --info: #2c5282;
    --info-bg: rgba(44, 82, 130, 0.08);
    --text: #0c0c0e;
    --text-2: #4a4a54;
    --text-3: #7a7a86;
    --text-inv: rgba(255,255,255,.72);
    --text-inv-muted: rgba(255,255,255,.48);
    --border: rgba(12, 12, 14, 0.08);
    --border-strong: rgba(12, 12, 14, 0.14);
    --shadow-xs: 0 1px 2px rgba(8,8,10,.04);
    --shadow-sm: 0 4px 16px rgba(8,8,10,.06);
    --shadow-md: 0 12px 40px rgba(8,8,10,.08);
    --shadow-lg: 0 24px 64px rgba(8,8,10,.12);
    --shadow-gold: 0 8px 32px var(--gold-glow);
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --header-h: 80px;
    --topbar-h: 40px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.35s var(--ease);
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --tracking-tight: -0.025em;
    --tracking-normal: -0.011em;
    --container: 1240px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    letter-spacing: var(--tracking-normal);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── TOP BAR ─── */
.topbar {
    background: var(--ink);
    color: var(--text-inv-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-item svg { width: 14px; height: 14px; opacity: 0.6; }
.topbar-item strong { color: var(--gold-light); font-weight: 600; }

.topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.topbar-social svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-social:hover { color: #fff; }

.topbar-divider {
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,.12);
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .topbar-divider { display: none; }
    .topbar-social span { display: none; }
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(246, 244, 239, 0.82);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(8, 8, 10, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: #000;
}

.logo--footer .logo-img {
    width: 72px;
    height: 72px;
    border-color: rgba(255, 255, 255, 0.15);
}

.logo--hero .logo-img {
    width: 120px;
    height: 120px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo-emblem {
    width: 48px;
    height: 48px;
    position: relative;
}

.logo-emblem::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--gold);
    transform: rotate(45deg);
    border-radius: 2px;
}

.logo-emblem span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.logo-wordmark { line-height: 1.15; }

.logo-wordmark .name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo-wordmark .tagline {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    padding: 0.55rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.main-nav a:hover { color: var(--ink); background: rgba(8,8,10,.04); }
.main-nav a.active { color: var(--ink); font-weight: 600; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--ink);
}

.menu-toggle svg { width: 24px; height: 24px; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--ink);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-gold:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-dark {
    background: var(--ink);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
}

.btn-dark:hover { background: var(--ink-80); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 0.82rem 1.65rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-strong);
}

.btn-outline:hover { border-color: var(--ink); background: var(--white); }

.btn-outline.active {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 0.82rem 1.65rem;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(255,255,255,.25);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.45);
}

.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.8rem; }
.btn-danger { background: var(--danger); color: #fff; padding: 0.55rem 1.15rem; border-radius: var(--radius-md); }
.btn-danger:hover { background: #a93226; }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: calc(100vh - var(--topbar-h));
    display: flex;
    align-items: center;
    background: var(--ink);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.75) 45%, rgba(8,8,10,.6) 100%),
        url('../images/gallery/kaporta-atolye.png') center/cover no-repeat;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 75% 50%, rgba(196,160,82,.08) 0%, transparent 70%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: var(--tracking-tight);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: normal;
    font-weight: 800;
    color: var(--gold-light);
}

.hero-lead {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-inv);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-trust-item .num {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: var(--tracking-tight);
}

.hero-trust-item .lbl {
    font-size: 0.75rem;
    color: var(--text-inv-muted);
    letter-spacing: 0.04em;
}

.hero-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: var(--white);
}

.hero-card-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero-schedule { display: flex; flex-direction: column; gap: 0.5rem; }

.hero-schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,.06);
}

.hero-schedule-row .time { font-weight: 600; }
.hero-schedule-row .badge-open {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6ee7b7;
    background: rgba(16,185,129,.15);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.hero-feature-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hero-mini {
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-lg);
}

.hero-mini svg { width: 22px; height: 22px; color: var(--gold); margin-bottom: 0.5rem; }
.hero-mini strong { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.15rem; }
.hero-mini span { font-size: 0.75rem; color: var(--text-3); }

/* ─── TRUST BAR ─── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.trust-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.85rem;
    color: var(--text-2);
}

.trust-bar-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-bar-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.trust-bar-item strong { display: block; color: var(--ink); font-weight: 700; font-size: 0.9rem; }

/* ─── SECTIONS ─── */
.section { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }

.section-head {
    max-width: 640px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-head.centered .section-eyebrow::before { display: none; }

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: var(--tracking-tight);
    color: var(--ink);
    margin-bottom: 1rem;
}

.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-eyebrow { color: var(--gold-light); }

.section-head p {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
}

.section-dark .section-head p { color: var(--text-inv); }

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 560px;
}

.about-visual--brand {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-visual--photo {
    background: #111;
    padding: 0;
}

.about-visual--photo > img.about-photo-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-logo-float {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    border: 2px solid rgba(255,255,255,.9);
}

.about-visual--photo .about-visual-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.about-visual-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.about-visual-badge .years {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.about-visual-badge .text { font-size: 0.85rem; color: var(--text-2); line-height: 1.4; }
.about-visual-badge .text strong { color: var(--ink); display: block; font-size: 0.95rem; }

.about-content .lead {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: var(--tracking-normal);
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: var(--tracking-tight);
    margin-bottom: 1.25rem;
}

.about-content p { color: var(--text-2); margin-bottom: 1.5rem; }

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-pillar {
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-pillar:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.about-pillar svg { width: 24px; height: 24px; color: var(--gold); margin-bottom: 0.65rem; }
.about-pillar h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.about-pillar p { font-size: 0.8rem; color: var(--text-3); margin: 0; line-height: 1.5; }

/* ─── SERVICES ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: var(--tracking-tight);
    transition: var(--transition);
}

.service-card:hover .service-num { color: var(--gold-muted); }

.service-card svg { width: 28px; height: 28px; color: var(--gold-dark); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.service-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* ─── PROCESS ─── */
.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    opacity: 0.4;
}

.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.process-step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(196,160,82,.25);
}

.section-dark .process-step-num {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px rgba(196,160,82,.3);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.section-dark .process-step h3 { color: var(--white); }

.process-step p {
    font-size: 0.85rem;
    color: var(--text-3);
    line-height: 1.55;
}

.section-dark .process-step p { color: var(--text-inv-muted); }

/* ─── WHY US ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(196,160,82,.3);
    transform: translateY(-3px);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg { width: 26px; height: 26px; color: var(--gold-light); }

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--white);
    letter-spacing: var(--tracking-normal);
}

.why-card p { font-size: 0.9rem; color: var(--text-inv-muted); line-height: 1.65; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-3); }

/* ─── CTA BAND ─── */
.cta-band {
    background: linear-gradient(135deg, var(--ink-90) 0%, var(--ink-70) 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(196,160,82,.12) 0%, transparent 60%);
}

.cta-band-inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.8vw, 2.1rem);
    font-weight: 800;
    letter-spacing: var(--tracking-tight);
    color: var(--white);
    margin-bottom: 0.35rem;
}

.cta-band p { color: var(--text-inv-muted); font-size: 1rem; }

/* ─── BOOKING ─── */
.booking-section { background: var(--cream); }

.booking-shell {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-top {
    background: var(--ink);
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.booking-top h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: var(--tracking-tight);
    color: var(--white);
    margin-bottom: 0.25rem;
}

.booking-top p { font-size: 0.9rem; color: var(--text-inv-muted); }

.booking-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.bstep {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    letter-spacing: 0.02em;
}

.bstep.active { color: var(--white); }
.bstep.done { color: var(--gold-light); }

.bstep-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.15);
    flex-shrink: 0;
}

.bstep.active .bstep-dot { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.bstep.done .bstep-dot { background: var(--success); color: #fff; border-color: var(--success); }

.bstep-line {
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 0 0.3rem;
}

.bstep.done + .bstep-line { background: var(--gold); opacity: 0.5; }

.booking-body { padding: clamp(1.5rem, 3vw, 2.5rem); }

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Calendar */
.cal-panel {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.cal-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.cal-nav { display: flex; gap: 0.4rem; }

.cal-nav button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-strong);
    background: var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1rem;
    color: var(--ink);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav button:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.cal-weekday {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-3);
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cal-day {
    aspect-ratio: 1;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1.5px solid transparent;
    position: relative;
}

.cal-day.empty { pointer-events: none; }
.cal-day.disabled { color: #ccc; cursor: not-allowed; }
.cal-day.sunday { color: #e8a0a0; background: #fef8f8; cursor: not-allowed; }
.cal-day.available { background: var(--white); box-shadow: var(--shadow-xs); }
.cal-day.available:hover { border-color: var(--gold); color: var(--gold-dark); }
.cal-day.today.available { box-shadow: inset 0 0 0 1.5px var(--gold); }
.cal-day.selected { background: var(--ink); color: var(--white); border-color: var(--ink); }

.cal-day .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--success);
    position: absolute;
    bottom: 4px;
}

.cal-day.selected .dot { background: var(--gold-light); }

/* Slots */
.slots-side { display: flex; flex-direction: column; }

.slots-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-strong);
    color: var(--text-3);
    min-height: 320px;
}

.slots-empty svg { width: 48px; height: 48px; margin-bottom: 1rem; opacity: 0.35; }
.slots-empty strong { display: block; color: var(--text-2); margin-bottom: 0.25rem; }

.slots-head { margin-bottom: 1.25rem; }
.slots-head h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.2rem; }
.slots-head p { font-size: 0.85rem; color: var(--text-3); }

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.slot-item {
    padding: 1.1rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.slot-item:hover:not(.full):not(.expired) { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.slot-item.selected { background: var(--ink); border-color: var(--ink); color: var(--white); }
.slot-item.full { opacity: 0.55; cursor: not-allowed; background: #f5f5f5; }
.slot-item.expired { opacity: 0.45; cursor: not-allowed; background: #f0f0f0; border-style: dashed; }

.slot-time { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
.slot-meta { display: flex; justify-content: flex-end; align-items: center; font-size: 0.72rem; }

.slot-tag {
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.slot-tag.open { background: var(--success-bg); color: var(--success); }
.slot-tag.expired { background: #ececec; color: #888; }
.slot-tag.full { background: var(--danger-bg); color: var(--danger); }
.slot-item.selected .slot-tag.open { background: rgba(255,255,255,.15); color: #86efac; }

/* Form */
.form-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.form-block-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.form-block-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-block-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.form-block-head h3 { font-size: 1.1rem; font-weight: 700; }
.form-block-head p { font-size: 0.85rem; color: var(--text-3); }

.form-divider {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
    margin: 1.75rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.form-divider:first-child { margin-top: 0; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.form-group.span-2 { grid-column: span 2; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

.form-group label .req { color: var(--danger); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-actions {
    margin-top: 1.75rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Success */
.success-state {
    text-align: center;
    padding: clamp(2.5rem, 5vw, 4rem) 2rem;
}

.success-ring {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: var(--success-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--success);
    animation: popIn 0.5s var(--ease);
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-state h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: var(--tracking-tight);
    margin-bottom: 0.75rem;
}

.success-state .ref-no {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: 0.04em;
    margin: 1.25rem 0;
    padding: 0.6rem 1.75rem;
    background: var(--gold-muted);
    border-radius: var(--radius-md);
    border: 1px solid rgba(196,160,82,.2);
}

.success-state p { color: var(--text-2); max-width: 480px; margin: 0 auto 1.5rem; }

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }

.contact-card h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.contact-card small { font-size: 0.8rem; color: var(--text-3); display: block; margin-top: 0.15rem; }

.contact-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-card--link:hover {
    border-color: #e1306c;
    box-shadow: var(--shadow-sm);
}

.contact-card-icon--instagram {
    background: linear-gradient(135deg, rgba(225,48,108,.12), rgba(131,58,180,.12));
}

.contact-card--link:hover .contact-card-icon--instagram svg {
    color: #e1306c;
}

.footer-social {
    margin-top: 1.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.social-link:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.35);
    color: #fff;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/11;
    background:
        linear-gradient(135deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.35) 100%),
        url('../images/gallery/lastik-sokme.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inv-muted);
    font-size: 0.9rem;
    border: 1px solid var(--border);
    position: relative;
}

.contact-map::before { display: none; }

/* ─── GALLERY ─── */
.gallery-section { background: var(--white); }

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, minmax(220px, 1fr));
    gap: 1.25rem;
    min-height: 640px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink);
    margin: 0;
    min-height: 220px;
}

.gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s var(--ease);
}

.gallery-card:hover img { transform: scale(1.06); }

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,10,.08) 0%, rgba(8,8,10,.15) 35%, rgba(8,8,10,.88) 100%);
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}

.gallery-card:hover::after {
    background: linear-gradient(180deg, rgba(8,8,10,.12) 0%, rgba(8,8,10,.25) 30%, rgba(8,8,10,.92) 100%);
}

.gallery-card--hero {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    min-height: 460px;
}

.gallery-card--hero img { object-position: center 30%; }

.gallery-card--side:nth-of-type(2) { grid-column: 4; grid-row: 1; }
.gallery-card--side:nth-of-type(3) { grid-column: 4; grid-row: 2; }

.gallery-card:nth-of-type(4) { grid-column: 1; grid-row: 3; }
.gallery-card:nth-of-type(5) { grid-column: 2; grid-row: 3; }
.gallery-card:nth-of-type(6) { grid-column: 3; grid-row: 3; }
.gallery-card:nth-of-type(7) { grid-column: 4; grid-row: 3; }

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.35rem 1.5rem;
    z-index: 1;
    color: #fff;
    transform: translateY(4px);
    transition: transform 0.35s var(--ease);
}

.gallery-card:hover .gallery-caption { transform: translateY(0); }

.gallery-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.45rem;
}

.gallery-caption strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: var(--tracking-normal);
    line-height: 1.3;
}

.gallery-card--hero .gallery-caption strong { font-size: 1.35rem; }

.gallery-caption span:last-child {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,.68);
    line-height: 1.45;
}

@media (max-width: 1024px) {
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        min-height: 0;
    }

    .gallery-card--hero,
    .gallery-card--side:nth-of-type(2),
    .gallery-card--side:nth-of-type(3),
    .gallery-card:nth-of-type(4),
    .gallery-card:nth-of-type(5),
    .gallery-card:nth-of-type(6),
    .gallery-card:nth-of-type(7) {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
    }

    .gallery-card--hero { grid-column: 1 / -1; min-height: 420px; }
}

@media (max-width: 600px) {
    .gallery-bento { gap: 1rem; }

    .gallery-card,
    .gallery-card--hero {
        min-height: 280px;
    }

    .gallery-card--hero { min-height: 360px; }

    .gallery-caption { padding: 1.1rem 1.2rem; }

    .gallery-card--hero .gallery-caption strong { font-size: 1.15rem; }
}

.contact-map-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(8, 8, 10, 0.45);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    margin: 1rem;
}

.contact-map-inner svg { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 0.75rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    background: var(--ink);
    padding: calc(var(--header-h) + var(--topbar-h) + 3rem) 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(196,160,82,.1) 0%, transparent 60%);
}

.page-hero-inner {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-hero .section-eyebrow { color: var(--gold-light); justify-content: center; }
.page-hero .section-eyebrow::before { display: none; }

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: var(--tracking-tight);
}

.page-hero p { color: var(--text-inv-muted); font-size: 1.05rem; }

.page-main {
    max-width: 800px;
    margin: -2.5rem auto 0;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
    position: relative;
    z-index: 1;
}

/* ─── INQUIRY ─── */
.inquiry-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    overflow: hidden;
}

.inquiry-panel-head {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.inquiry-panel-head h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: var(--tracking-tight);
    margin-bottom: 0.35rem;
}

.inquiry-panel-head p {
    font-size: 0.9rem;
    color: var(--text-3);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
}

.inquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
}

.inquiry-form-phone {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

.inquiry-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.inquiry-input-icon {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-3);
    pointer-events: none;
    flex-shrink: 0;
}

.inquiry-input-wrap input {
    width: 100%;
    min-width: 0;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: var(--cream);
    color: var(--text);
    transition: var(--transition);
}

.inquiry-input-wrap input::placeholder { color: var(--text-3); }

.inquiry-input-wrap input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

.inquiry-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.inquiry-submit {
    min-width: 240px;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .inquiry-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .inquiry-form-phone {
        max-width: none;
        margin: 0;
    }

    .inquiry-submit {
        width: 100%;
        min-width: 0;
    }
}

.results-stack { display: flex; flex-direction: column; gap: 1rem; }

.result-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    transition: var(--transition);
}

.result-item:hover { box-shadow: var(--shadow-md); border-color: transparent; }

.result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-ref {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: var(--tracking-normal);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
}

.result-field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin-bottom: 0.2rem;
}

.result-field span { font-size: 0.9rem; font-weight: 600; color: var(--ink); }

.result-foot {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.empty-panel {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    color: var(--text-3);
}

.empty-panel svg { width: 56px; height: 56px; margin: 0 auto 1rem; opacity: 0.3; }
.empty-panel strong { display: block; color: var(--text-2); margin-bottom: 0.35rem; font-size: 1rem; }

/* ─── ALERTS & BADGES ─── */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success { background: var(--success-bg); color: #1a6b45; border: 1px solid rgba(45,138,94,.2); }
.alert-error { background: var(--danger-bg); color: #922b21; border: 1px solid rgba(192,57,43,.15); }
.alert-info { background: var(--info-bg); color: #1a4a7a; border: 1px solid rgba(44,82,130,.15); }

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.badge.pending { background: #fef3e2; color: #9a6700; }
.badge.approved { background: var(--success-bg); color: #1a6b45; }
.badge.rejected { background: var(--danger-bg); color: #922b21; }
.badge.completed { background: var(--info-bg); color: #1a4a7a; }
.badge.cancelled { background: #f0f0f2; color: #5c5c66; }

.loading { text-align: center; padding: 2.5rem; color: var(--text-3); }

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── FOOTER ─── */
.site-footer {
    background: var(--ink);
    color: var(--text-inv-muted);
    padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo-wordmark .name { color: var(--white); }
.footer-brand .logo-wordmark .tagline { color: var(--gold-light); }

@media (max-width: 900px) {
    .logo-wordmark--header .tagline { display: none; }
    .logo-img { width: 48px; height: 48px; }
}
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 300px; }

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.875rem;
    color: var(--text-inv-muted);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.75rem clamp(1.25rem, 4vw, 2.5rem);
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-bottom a { color: var(--text-inv-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-aside { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-height: 400px; aspect-ratio: 16/10; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar-left .topbar-item:not(:first-child) { display: none; }

    .menu-toggle { display: block; }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .main-nav.open { display: flex; }
    .main-nav a { width: 100%; text-align: center; padding: 0.85rem; color: var(--text); }
    .header-cta .btn-outline { display: none; }

    .hero-trust { gap: 1.5rem; }
    .trust-bar-inner { justify-content: center; }
    .trust-bar-item { flex: 1 1 40%; min-width: 140px; }
    .services-grid,
    .why-grid,
    .testimonials-grid,
    .process-track { grid-template-columns: 1fr; }
    .process-track::before { display: none; }
    .about-pillars { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.span-2 { grid-column: span 1; }
    .slots-grid { grid-template-columns: 1fr; }
    .booking-steps { display: none; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .result-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
