/* ---------- Helvetica Neue font stack ---------- */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-01.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Italic-03.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Thin-13.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-ThinItalic-14.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-UltraLight-06.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-UltraLightItalic-07.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light-08.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-LightItalic-09.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Medium-11.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-MediumItalic-12.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold-02.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-BoldItalic-04.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue Condensed';
    src: url('fonts/HelveticaNeue-CondensedBold-05.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue Condensed';
    src: url('fonts/HelveticaNeue-CondensedBlack-10.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #e9e0c4;
    --white: #ffffff;
    --ink: #2a2118;
    --space: clamp(14px, 2.2vh, 24px);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--white);
    background: #1a140d;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 6vh 20px;
    /* Swap restaurant-bg.jpg for the clean restaurant photo.
       A warm dark gradient stands in until the image is present. */
    background-color: #1a140d;
    background-image:
            radial-gradient(120% 90% at 50% 30%, rgba(120, 78, 34, 0.35), transparent 60%),
            linear-gradient(160deg, #20160d 0%, #14100b 55%, #0d0a07 100%);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Vignette: darker top & bottom so text stays legible over any photo */
    background:
            linear-gradient(to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.15) 35%,
            rgba(0,0,0,0.25) 65%,
            rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

.hero { background-image:
    linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),
    url('BREAD_STREET_VIEW.jpg');
}

/* ---------- Content column ---------- */
.content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content > * {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.brand      { animation-delay: 0.05s; }
.logo-box   { animation-delay: 0.18s; }
.subtitle   { animation-delay: 0.30s; }
.divider    { animation-delay: 0.42s; }
.location   { animation-delay: 0.52s; }
.opening    { animation-delay: 0.62s; }
.btn        { animation-delay: 0.74s; }
.socials    { animation-delay: 0.86s; }

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Typography ---------- */
.brand {
    font-weight: 400;
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: clamp(10px, 1.5vh, 16px);
}

.logo-box {
    border: 3px solid var(--white);
    border-radius: 6px;
    padding: 16px 25px;
}

.logo {
    font-weight: 400;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.subtitle {
    font-weight: 400;
    font-size: clamp(18px, 1.8vw, 26px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: clamp(11px, 1.8vh, 19px);
}

.divider {
    width: clamp(180px, 45%, 288px);
    height: 3px;
    background: var(--cream);
    margin: clamp(22px, 4vh, 38px) 0;
}

.location {
    font-weight: 500;
    font-size: clamp(22px, 3vw, 32px);
    text-transform: uppercase;
    color: var(--cream);
}

.opening {
    font-weight: 300;
    font-size: clamp(18px, 3vw, 30px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: clamp(26px, 4.5vh, 48px);
}

/* ---------- Newsletter button ---------- */
.btn {
    display: inline-block;
    margin-top: clamp(36px, 6vh, 50px);
    padding: 12px 18px;
    background: var(--cream);
    color: var(--ink);
    font-weight: 500;
    font-size: clamp(16px, 1.2vw, 18px);
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 14px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover,
.btn:focus-visible {
    background: #f3ecd4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    outline: none;
}

/* ---------- Social icons ---------- */
.socials {
    display: flex;
    gap: clamp(19px, 4vw, 29px);
    margin-top: clamp(32px, 9vh, 76px);
}
.socials a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.socials a:hover,
.socials a:focus-visible {
    transform: translateY(-3px) scale(1.06);
    opacity: 0.85;
    outline: none;
}
.socials svg { width: 30px; height: 30px; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
    .content > * { animation: none; opacity: 1; transform: none; }
    .btn:hover, .socials a:hover { transform: none; }
}
