* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #30261d;
    background: #f8f0e3;
}
a { color: inherit; text-decoration: none; }
.cafe-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    padding: 18px 44px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    font-size: 13px;
    background: linear-gradient(180deg, rgba(31, 20, 13, .76), rgba(31, 20, 13, .44));
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
    backdrop-filter: blur(14px);
}
.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    text-transform: none;
    letter-spacing: .02em;
    line-height: .95;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .26);
}
.wordmark span:last-child {
    display: grid;
}
.wordmark strong,
.wordmark em {
    display: block;
}
.wordmark em {
    margin-left: 20px;
    color: #f4c27c;
    font-style: italic;
    font-weight: 700;
}
.brand-seal {
    position: relative;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244, 194, 124, .88);
    border-radius: 50%;
    color: #f4c27c;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.22), rgba(184,115,51,.22) 42%, rgba(41,25,14,.42));
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .05), 0 12px 28px rgba(0, 0, 0, .24);
    font: 800 14px/1 Arial, Helvetica, sans-serif;
    letter-spacing: .08em;
}
.brand-seal::before,
.brand-seal::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: inherit;
}
.brand-seal::after {
    inset: -5px;
    border-color: rgba(244, 194, 124, .18);
}
.cafe-header nav {
    display: flex;
    gap: 28px;
    justify-content: center;
}
.menu-toggle {
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .08);
    color: inherit;
    font: inherit;
}
.hero-gallery {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #24150d;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    animation: heroFade 18s infinite;
}
.s1 { background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.45)), url('../assets/photos/cafe-hero.jpg'); }
.s2 { background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.45)), url('../assets/photos/cafe-1.jpg'); animation-delay: 6s; }
.s3 { background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.45)), url('../assets/photos/cafe-2.jpg'); animation-delay: 12s; }
.hero-overlay {
    position: absolute;
    left: 50%;
    bottom: 10vh;
    width: min(860px, calc(100% - 40px));
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}
.hero-overlay span,
.kicker {
    display: block;
    margin-bottom: 14px;
    color: #b87333;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.hero-overlay h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 9vw, 126px);
    line-height: .88;
    font-weight: 500;
}
.hero-overlay p {
    max-width: 690px;
    margin: 0 auto 28px;
    font-size: 19px;
    line-height: 1.7;
}
.hero-overlay a,
.feature-band a,
.text-button,
.community a,
.newsletter button,
.reservation button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin: 4px;
    padding: 0 22px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}
.story,
.locations,
.instagram {
    padding: 90px clamp(22px, 7vw, 110px);
    text-align: center;
}
.story h2,
.locations h2,
.feature-band h2,
.split-feature h2,
.community h2,
.instagram h2,
.newsletter h2,
.reservation h2 {
    max-width: 980px;
    margin: 0 auto 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 500;
}
.story p:last-child {
    max-width: 840px;
    margin: 0 auto;
    color: #6d5a48;
    font-size: 18px;
    line-height: 1.8;
}
.location-list,
.button-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.location-list a,
.button-stack a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    border-bottom: 2px solid #b87333;
}
.feature-band {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 44px;
    align-items: center;
    padding: 86px clamp(22px, 7vw, 110px);
    color: #fff;
    background: #30261d;
}
.feature-band p {
    max-width: 660px;
    color: #e6d8c8;
    line-height: 1.8;
}
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}
.split-feature.reverse { background: #efe1cf; }
.split-feature > div:not(.feature-photo) {
    display: grid;
    align-content: center;
    padding: 70px clamp(22px, 6vw, 92px);
}
.split-feature p {
    max-width: 650px;
    color: #6d5a48;
    font-size: 18px;
    line-height: 1.8;
}
.feature-photo {
    min-height: 520px;
    background-size: cover;
    background-position: center;
}
.catering { background-image: url('../assets/photos/cafe-3.jpg'); }
.bakehouse { background-image: url('../assets/photos/cafe-hero.jpg'); }
.community {
    padding: 96px clamp(22px, 7vw, 110px);
    text-align: center;
    color: #fff;
    background: #8a4d23;
}
.community .kicker { color: #ffe6c7; }
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.insta-grid span {
    min-height: 190px;
    background: #d9b58c;
    background-size: cover;
    background-position: center;
}
.insta-grid span:nth-child(1) { background-image: url('../assets/photos/cafe-1.jpg'); }
.insta-grid span:nth-child(2) { background-image: url('../assets/photos/cafe-2.jpg'); }
.insta-grid span:nth-child(3) { background-image: url('../assets/photos/cafe-3.jpg'); }
.insta-grid span:nth-child(4) { background-image: url('../assets/photos/cafe-hero.jpg'); }
.insta-grid span:nth-child(5) { background-image: url('../assets/photos/cafe-1.jpg'); }
.insta-grid span:nth-child(6) { background-image: url('../assets/photos/cafe-2.jpg'); }
.newsletter,
.reservation {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 34px;
    align-items: center;
    padding: 84px clamp(22px, 7vw, 110px);
    background: #fffaf4;
}
.newsletter form,
.reservation form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.reservation form { grid-template-columns: repeat(5, 1fr); }
input,
select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d9b58c;
    border-radius: 999px;
    padding: 0 16px;
    color: #30261d;
    background: #fff;
    font: inherit;
}
.newsletter button,
.reservation button {
    border-color: #30261d;
    background: #30261d;
    color: #fff;
}
.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr .9fr .8fr;
    gap: 42px;
    padding: 72px clamp(22px, 7vw, 110px) 58px;
    color: #f4e6d2;
    overflow: hidden;
    background:
        linear-gradient(rgba(36, 20, 11, .88), rgba(36, 20, 11, .94)),
        url('../assets/photos/cafe-2.jpg') center/cover;
}
.site-footer::before {
    content: "";
    position: absolute;
    left: clamp(22px, 7vw, 110px);
    right: clamp(22px, 7vw, 110px);
    top: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 194, 124, .72), transparent);
}
.site-footer > * {
    position: relative;
}
.footer-wordmark {
    margin-bottom: 22px;
    color: #fff;
}
.footer-brand p,
.site-footer div > p:not(.footer-title) {
    max-width: 430px;
    margin: 0 0 10px;
    color: rgba(244, 230, 210, .78);
    line-height: 1.75;
}
.footer-title {
    margin: 0 0 16px;
    color: #f4c27c;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .11em;
}
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.site-footer nav a {
    border-bottom: 1px solid rgba(244, 194, 124, .45);
    padding-bottom: 5px;
}
@keyframes heroFade {
    0%, 100% { opacity: 0; transform: scale(1.05); }
    8%, 30% { opacity: 1; transform: scale(1); }
    38% { opacity: 0; transform: scale(1.02); }
}
@media (max-width: 900px) {
    .cafe-header { grid-template-columns: 1fr auto; }
    .cafe-header nav { display: none; }
    .feature-band,
    .split-feature,
    .newsletter,
    .reservation { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter form,
    .reservation form { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr; }
}
