:root {
    --gold: #d4b45a;
    --gold-dark: #b8943a;
    --ink: #111;
    --muted: #5c5c5c;
    --line: #e6e6e6;
    --nav-h: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top));
}

body {
    font-family: Inter, system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
iframe {
    max-width: 100%;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: var(--nav-h);
    padding: 0 20px;
    padding-top: env(safe-area-inset-top);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
}

.nav-name {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
    justify-self: start;
}

.nav-soon {
    justify-self: center;
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

.nav-call {
    justify-self: end;
    flex-shrink: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    padding: 10px 14px;
    border-radius: 8px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + env(safe-area-inset-top) + 32px) 20px 40px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.5));
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    width: 100%;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.kicker {
    color: var(--gold);
    font-size: clamp(1.05rem, 3.2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.55rem, 9vw, 4.4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 18px;
}

.phone {
    display: inline-block;
    color: var(--gold);
    font-size: clamp(1.25rem, 3.5vw, 1.7rem);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.98rem;
    font-weight: 600;
}

.btn-gold {
    background: var(--gold);
    color: #1a1408;
}

.btn-ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.visit {
    padding: 48px 20px 56px;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    scroll-margin-top: calc(var(--nav-h) + env(safe-area-inset-top) + 12px);
}

.visit-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
    margin: 6px 0 10px;
}

.visit-copy p {
    color: var(--muted);
    margin-bottom: 8px;
}

.visit-copy a {
    color: var(--ink);
    font-weight: 600;
}

.visit-copy a.btn {
    color: #fff;
}

.visit-copy .label {
    color: var(--gold-dark);
}

.label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.hours-label {
    margin-top: 22px !important;
}

.hours {
    color: var(--ink) !important;
    font-weight: 600;
    margin-bottom: 4px !important;
}

.visit-copy .btn {
    margin-top: 20px;
}

.map {
    border-radius: 14px;
    overflow: hidden;
    min-height: 280px;
    background: #eee;
    border: 1px solid var(--line);
}

.map iframe {
    display: block;
    width: 100%;
    height: 280px;
}

.footer {
    background: #111;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
    font-size: 0.88rem;
}

.footer p + p {
    margin-top: 6px;
}

@media (min-width: 760px) {
    .nav {
        padding: 0 36px;
    }

    .hero {
        padding-left: 36px;
        padding-right: 36px;
    }

    .visit {
        grid-template-columns: 0.85fr 1.15fr;
        align-items: center;
        padding: 72px 36px 80px;
    }

    .map,
    .map iframe {
        min-height: 360px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .nav-name {
        font-size: 0.82rem;
    }

    .nav-soon {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    .nav-call {
        font-size: 0.72rem;
        padding: 8px 10px;
    }
}
