/* ============================================
   ROOT & RESET
   ============================================ */
:root {
    --bg:         #0e0c0a;
    --bg-2:       #141210;
    --surface:    #1c1916;
    --gold:       #c9984a;
    --gold-light: #e8bb72;
    --gold-dim:   rgba(201,152,74,0.15);
    --cream:      #f5efe6;
    --muted:      #7a7068;
    --text:       #ede8e0;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'DM Sans', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

::selection {
    background: var(--gold);
    color: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Grain noise overlay */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SHARED TYPOGRAPHY
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--gold);
    color: #0e0c0a;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 152, 74, 0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s, gap 0.3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    gap: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 6%;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

header.scrolled {
    background: rgba(14,12,10,0.95);
    backdrop-filter: blur(16px);
    padding: 1rem 6%;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.04em;
    font-style: italic;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.navbar a {
    color: rgba(237,232,224,0.7);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: color 0.3s;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out-expo);
}

.navbar a:hover {
    color: var(--cream);
}

.navbar a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.reserve-btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s;
}

.reserve-btn:hover {
    background: var(--gold);
    color: #0e0c0a;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #c94a4a;
    bottom: -80px;
    left: 10%;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 5rem;
}

.hero-plate {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-plate img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(201,152,74,0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}

.hero-badge {
    position: absolute;
    bottom: 10%;
    left: -5%;
    background: var(--gold);
    color: #0e0c0a;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(201,152,74,0.4);
}

.badge-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 2rem;
    border-radius: 4px;
    align-self: flex-start;
    margin-left: 2rem;
}

.stat { display: flex; flex-direction: column; align-items: center; }
.stat-n { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-l { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: scanline 2s ease-in-out infinite;
}

@keyframes scanline {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 0.9rem 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #0e0c0a;
    white-space: nowrap;
}

.marquee-track i {
    font-size: 0.5rem;
    color: rgba(14,12,10,0.4);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 8rem 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 4px;
    filter: brightness(0.9) contrast(1.05);
}

.about-card {
    position: absolute;
    right: -1.5rem;
    bottom: 3rem;
    background: var(--gold);
    color: #0e0c0a;
    padding: 1.2rem 1.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.about-card i { font-size: 1.8rem; }
.about-card span { font-size: 0.85rem; font-weight: 500; line-height: 1.4; }

.about-text { padding-right: 2rem; }
.about-text p { color: var(--muted); line-height: 1.9; margin: 1.5rem 0 2rem; }

.about-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.feat i { color: var(--gold); font-size: 1rem; }

/* ============================================
   MENU
   ============================================ */
.menu-section {
    padding: 8rem 6%;
    background: var(--bg-2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-dim);
}

.card-img {
    position: relative;
    background: #1a1713;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img img {
    height: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out-expo);
}

.menu-card:hover .card-img img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: #0e0c0a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
}

.card-body { padding: 1.5rem; }

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.card-top h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
}

.price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 1rem;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.add-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.add-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0e0c0a;
}

.menu-footer {
    text-align: center;
    margin-top: 3.5rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 8rem 6%;
    position: relative;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,152,74,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
}

.s-card {
    padding: 2.5rem 2rem;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.s-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-6px);
}

.s-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,152,74,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.s-card:hover .s-icon { background: var(--gold); }

.s-icon i {
    font-size: 1.3rem;
    color: var(--gold);
    transition: color 0.3s;
}

.s-card:hover .s-icon i { color: #0e0c0a; }

.s-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.s-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
}

.s-num {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 6%;
    background: var(--surface);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner .section-title { margin-bottom: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-2);
    padding: 5rem 6% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 1.8rem;
}

.social-row {
    display: flex;
    gap: 0.8rem;
}

.social-row a {
    width: 38px;
    height: 38px;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.social-row a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0e0c0a;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.82rem;
    color: rgba(122, 112, 104, 0.6);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom i { color: #c94a4a; font-size: 0.7rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }
    .hero-cta { justify-content: center; }
    .hero-visual { padding-top: 0; }
    .hero-stats { align-self: center; margin-left: 0; }
    .hero-tag { justify-content: center; }
    .about { grid-template-columns: 1fr; }
    .about-text { padding-right: 0; }
    .about-card { right: 0; }
    .scroll-hint { display: none; }

    /* Mobile nav */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(14,12,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out-expo);
        z-index: 900;
    }
    .navbar.open { transform: translateX(0); }
    .navbar a { font-size: 1.6rem; font-family: var(--font-serif); padding: 0.8rem 2rem; }
    .navbar a::after { display: none; }
    .reserve-btn { display: none; }
    .hamburger { display: flex; z-index: 1001; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-title { font-size: 2.8rem; }
}

/* ============================================
   CONTACT & RESERVATION SECTION
   ============================================ */
.contact-section {
    padding: 8rem 6%;
    background: var(--bg-2);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

/* ── Info side ── */
.contact-info .section-title { margin-bottom: 1rem; }

.contact-sub {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.c-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.c-icon {
    width: 42px;
    height: 42px;
    background: var(--gold-dim);
    border: 1px solid rgba(201,152,74,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-icon i {
    font-size: 1rem;
    color: var(--gold);
}

.c-detail > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.c-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.c-val {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.6;
}

/* Map placeholder */
.map-placeholder {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    color: var(--muted);
    font-size: 0.88rem;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

.map-placeholder:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}

.map-placeholder i {
    font-size: 1.2rem;
    color: var(--gold);
}

/* ── Form side ── */
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    overflow: hidden;
}

/* Tabs */
.form-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.2rem 1rem;
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.tab-btn:hover { color: var(--text); background: rgba(255,255,255,0.02); }

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(201,152,74,0.04);
}

/* Panels */
.tab-panel {
    display: none;
    padding: 2rem;
    flex-direction: column;
    gap: 1.2rem;
}

.tab-panel.active { display: flex; }

/* Form elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.optional {
    font-size: 0.72rem;
    color: rgba(122,112,104,0.6);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    width: 100%;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201,152,74,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,112,104,0.5); }

/* Date/time input color fix */
.form-group input[type="date"],
.form-group input[type="time"] { color-scheme: dark; }

/* Guest counter */
.guest-counter {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    height: 44px;
}

.guest-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    width: 44px;
    height: 100%;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-btn:hover { background: var(--gold-dim); }

#guestCount {
    flex: 1;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text);
    pointer-events: none;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 520px) {
    .form-row { grid-template-columns: 1fr; }
    .tab-btn { font-size: 0.78rem; }
}