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

html, body {
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
}

/* ── Page layout ──────────────────────────── */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 40px;
    /* Wide enough so the headline never wraps at desktop */
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Logo ─────────────────────────────────── */
.logo-img {
    width: 300px;
    height: 300px;
    margin-bottom: 60px;
    display: block;
}

/* ── Headline ─────────────────────────────── */
/*
 * Each <br>-separated line must fit on one desktop line.
 * "Drink from James Suckling's cellar" is the longer of the two.
 * At 50px Playfair Display it fits comfortably within 1020px content width.
 */
.headline {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-bottom: 44px;
    line-height: 1.3;
    white-space: nowrap;
}

/* ── Short horizontal rules ───────────────── */
.divider {
    width: 280px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.divider-full {
    width: 100%;
    max-width: 680px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
}

/* ── Address / Opening ────────────────────── */
.info-section {
    text-align: center;
    padding: 50px 0;
}

.address {
    font-family: 'Futura PT', 'Futura Std', 'Futura', 'Avenir Next', 'Century Gothic', sans-serif;
    font-size: 18px;
    letter-spacing: 0.28em;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.dot-separator {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1;
}

.opening {
    font-family: 'Futura PT', 'Futura Std', 'Futura', 'Avenir Next', 'Century Gothic', sans-serif;
    font-size: 18px;
    letter-spacing: 0.28em;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

/* ── "Menu, hours…" label ─────────────────── */
.details {
    font-family: 'Futura PT', 'Futura Std', 'Futura', 'Avenir Next', 'Century Gothic', sans-serif;
    font-size: 18px;
    letter-spacing: 0.28em;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-top: 36px;
    margin-bottom: 25px;
}

/* ── Newsletter (Mailchimp) ────────────────── */
.newsletter-section {
    width: 100%;
    max-width: 560px;
    margin-bottom: 50px;
}

/* Strip all Mailchimp default chrome */
#mc_embed_shell,
#mc_embed_signup {
    background: transparent !important;
    clear: left;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif !important;
}

#mc_embed_signup form {
    padding: 0 !important;
    margin: 0 !important;
}

/* Flex row: [input field] [arrow button] */
#mc_embed_signup_scroll {
    display: block !important;
}

.newsletter-form-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: transparent !important;
}

/* Hide Mailchimp chrome */
#mc_embed_signup h2,
#mc_embed_signup .indicates-required,
#mc_embed_signup .mc-field-group label {
    display: none !important;
}

/* Email field group fills available space */
#mc_embed_signup .mc-field-group {
    flex: 1 1 auto !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    float: none !important;
    clear: none !important;
}

#mc_embed_signup .mc-field-group input {
    box-sizing: border-box;
}

/* Mailchimp injects inline validation nodes on blur; hide them so they don't stretch the field row */
#mc_embed_signup div.mce_inline_error,
#mc_embed_signup label.mce_inline_error {
    display: none !important;
}

#mc_embed_signup input.mce_inline_error {
    border: none !important;
    box-shadow: none !important;
}

/* Email input/placeholder — lighter Futura-style to create secondary hierarchy */
#mc_embed_signup input#mce-EMAIL {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 16px 22px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-family: 'Futura PT', 'Futura Std', 'Futura', 'Avenir Next', 'Century Gothic', sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    letter-spacing: 0.01em !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

#mc_embed_signup input#mce-EMAIL::placeholder {
    color: rgba(255, 255, 255, 0.78) !important;
    font-family: 'Futura PT', 'Futura Std', 'Futura', 'Avenir Next', 'Century Gothic', sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    letter-spacing: 0.01em !important;
    font-style: normal !important;
}

/* Submit .clear wrapper */
#mc_embed_signup div.clear:not(#mce-responses) {
    display: flex !important;
    align-items: stretch !important;
    flex: 0 0 auto !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* White arrow button */
.submit-arrow-wrap {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.submit-arrow-wrap:hover {
    background: #e8e8e8;
}

.submit-arrow-wrap > svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    stroke-width: 2.2;
    fill: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

/* Invisible submit input covers the button area */
.submit-arrow-wrap > input[type="submit"] {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    font-size: 0 !important;
    border: none !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Mailchimp response messages */
#mce-responses {
    width: 100%;
    display: none;
    padding-top: 10px;
}

#mce-responses.is-visible {
    display: block !important;
}

#mce-success-response,
#mce-error-response {
    margin-top: 0 !important;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    text-align: center;
}

#mce-success-response { color: #a8d8a8; }
#mce-error-response   { color: #e08080; }

/* ── Social icons ─────────────────────────── */
.social-links {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.65;
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

/* ── Contact line ──────────────────────────── */
.contact-section {
    text-align: center;
    font-family: 'Futura PT', 'Futura Std', 'Futura', 'Avenir Next', 'Century Gothic', sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.contact-email {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.contact-email:hover {
    opacity: 0.7;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
    .headline { font-size: 42px; white-space: nowrap; }
    .container { padding: 60px 24px; }
    .newsletter-section { max-width: 460px; }
}

@media (max-width: 720px) {
    /* Allow headline to wrap on smaller screens */
    .headline {
        font-size: 36px;
        white-space: normal;
    }
    .logo-img { width: 220px; height: 220px; margin-bottom: 44px; }
    .address, .opening { font-size: 15px; }
}

@media (max-width: 650px) {
    #mc_embed_signup {
        padding: 0;
    }

    .newsletter-form-row {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .headline { font-size: 24px; line-height: 1.3; white-space: normal; }
    .logo-img { width: 180px; height: 180px; margin-bottom: 36px; }
    .address, .opening { font-size: 13px; letter-spacing: 0.18em; }
    .details { font-size: 11px; }
    .divider { width: 200px; }
    .newsletter-section { width: 100%; max-width: 320px; }
    .contact-section { font-size: 13px; }
}
