/* Brand tokens — Pantone 600c (yellow), 673c (pink), 367c (green) approximated to sRGB */
:root {
    --c-yellow: #F1EB9C;
    --c-yellow-ink: #B6A93B;
    --c-pink: #EBBDD3;
    --c-pink-ink: #B85283;
    --c-green: #A4D65E;
    --c-green-ink: #4F7C1F;
    --c-cream: #FFF8EE;
    --c-ink: #2B1A22;
    --c-ink-soft: #5A3F4D;

    --font-display: "Fraunces", "Times New Roman", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --radius-pill: 999px;
    --radius-card: 28px;
    --shadow-card: 0 14px 30px rgba(43, 26, 34, 0.12);
    --max-w: 1180px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--c-ink);
    background: var(--c-cream);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

a { color: var(--c-pink-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 88px 0; position: relative; }
.section__narrow { max-width: 760px; margin: 0 auto; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--c-ink-soft);
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Backgrounds */
.bg-yellow { background: var(--c-yellow); }
.bg-pink   { background: var(--c-pink); }
.bg-green  { background: var(--c-green); }
.bg-cream  { background: var(--c-cream); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1;
    border: 3px solid var(--c-ink);
    box-shadow: 4px 4px 0 var(--c-ink);
    transition: transform 120ms ease, box-shadow 120ms ease;
    text-decoration: none;
    cursor: pointer;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--c-ink); text-decoration: none; }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--c-ink); }
.btn--pink { background: var(--c-pink); color: var(--c-ink); }
.btn--yellow { background: var(--c-yellow); color: var(--c-ink); }
.btn--green { background: var(--c-green); color: var(--c-ink); }
.btn--cream { background: var(--c-cream); color: var(--c-ink); }

.pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--c-ink);
    color: var(--c-cream);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pill--lg { padding: 8px 18px; font-size: 0.9rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--c-cream);
    border-bottom: 3px solid var(--c-ink);
}
.site-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.site-header__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}
.site-header__logo {
    height: 140px;
    width: auto;
    display: block;
}
.site-header__nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-header__nav a {
    color: var(--c-ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.92rem;
}
.site-header__nav a:hover { color: var(--c-pink-ink); text-decoration: none; }
.site-header__toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    padding: 6px;
}
.site-header__toggle span {
    display: block;
    height: 3px;
    background: var(--c-ink);
    margin: 5px 0;
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--c-pink);
    color: var(--c-ink);
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero__media {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.45;
}
.hero__inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 120px 24px 160px;
    text-align: center;
}
.hero__heading {
    font-style: italic;
    text-shadow: 4px 4px 0 var(--c-yellow);
}
.hero__sub {
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto 28px;
}
.hero__scallop {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 40px;
    background:
        radial-gradient(circle at 20px 0, var(--c-cream) 20px, transparent 21px) repeat-x;
    background-size: 40px 40px;
}
.hero + .flavors-strip .hero__scallop { display: none; }

/* Page header */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 96px 0 120px;
}
.page-header__media {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.35;
}
.page-header__inner {
    position: relative;
    text-align: center;
}
.page-header__intro {
    max-width: 680px;
    margin: 16px auto 0;
    font-size: 1.1rem;
}

/* Flavor grid */
.flavor-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.flavor-grid--full { gap: 36px; }
.flavor-card {
    border-radius: var(--radius-card);
    border: 3px solid var(--c-ink);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 150ms ease;
}
.flavor-card:hover { transform: translateY(-6px) rotate(-1deg); }
.flavor-card a {
    color: var(--c-ink);
    text-decoration: none;
    display: block;
    padding: 0 0 24px;
}
.flavor-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.flavor-card h3 { margin: 18px 20px 4px; font-style: italic; }
.flavor-card p { margin: 0 20px 12px; }
.flavor-card .pill { margin-left: 20px; }
.flavor-card--yellow { background: var(--c-yellow); }
.flavor-card--pink   { background: var(--c-pink); }
.flavor-card--green  { background: var(--c-green); }

.flavors-strip { padding: 80px 0 100px; }

/* Flavor detail */
.flavor-detail { position: relative; overflow: hidden; padding: 80px 0 120px; }
.flavor-detail__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.flavor-detail__media img {
    border-radius: 50%;
    border: 4px solid var(--c-ink);
    box-shadow: var(--shadow-card);
    aspect-ratio: 1/1;
    object-fit: cover;
}
.flavor-detail__copy h1 { font-style: italic; }
.flavor-detail__copy .pill { margin-bottom: 18px; }
.flavor-detail__copy .btn { margin-top: 18px; }

/* Image + text */
.image-text__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.image-text--left .image-text__media { order: 0; }
.image-text--left .image-text__copy { order: 1; }
.image-text--right .image-text__media { order: 1; }
.image-text--right .image-text__copy { order: 0; }
.image-text__media img {
    border-radius: var(--radius-card);
    border: 3px solid var(--c-ink);
    box-shadow: var(--shadow-card);
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Gallery */
.gallery__grid {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.gallery__grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 18px;
    border: 3px solid var(--c-ink);
}

/* Quote */
.quote blockquote {
    margin: 0;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.25;
}
.quote cite {
    display: block;
    margin-top: 18px;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Callout */
.callout__inner { text-align: center; }
.callout__inner .btn { margin-top: 18px; }

/* Events */
.event-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.event-row {
    display: grid;
    grid-template-columns: 110px 1fr 220px;
    gap: 28px;
    align-items: center;
    background: var(--c-cream);
    border: 3px solid var(--c-ink);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.event-row--empty { grid-template-columns: 1fr; text-align: center; }
.event-row__date {
    background: var(--c-yellow);
    border: 3px solid var(--c-ink);
    border-radius: 18px;
    padding: 14px 8px;
    text-align: center;
}
.event-row__month {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}
.event-row__day {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
}
.event-row__body h3 { margin: 0 0 6px; }
.event-row__body h3 a { color: var(--c-ink); }
.event-row__meta { font-size: 0.9rem; color: var(--c-ink-soft); margin-bottom: 6px; }
.event-row__thumb img { border-radius: 16px; border: 3px solid var(--c-ink); aspect-ratio: 4/3; object-fit: cover; }

/* Specials */
.special-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 32px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.special-card {
    background: var(--c-cream);
    border: 3px solid var(--c-ink);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.special-card a { color: var(--c-ink); text-decoration: none; display: block; }
.special-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.special-card__body { padding: 22px; }
.special-card__dates { margin-top: 12px; font-weight: 700; color: var(--c-pink-ink); }
.special-card--empty { padding: 28px; }

/* Blog */
.post-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 32px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.post-card {
    background: var(--c-cream);
    border: 3px solid var(--c-ink);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.post-card a { color: var(--c-ink); text-decoration: none; display: block; }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card__body { padding: 22px; }

/* Newsletter */
.newsletter { padding: 72px 0; }
.newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}
.newsletter h2 { font-style: italic; }
.newsletter__form {
    display: flex;
    gap: 12px;
    background: var(--c-cream);
    padding: 12px;
    border: 3px solid var(--c-ink);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
}
.newsletter__form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font: inherit;
    color: var(--c-ink);
    outline: none;
    min-width: 0;
}

/* Rich text */
.rich-text a { color: var(--c-pink-ink); text-decoration: underline; }
.rich-text h2, .rich-text h3 { margin-top: 1.4em; }

/* Footer */
.site-footer {
    background: var(--c-ink);
    color: var(--c-cream);
    padding: 72px 0 32px;
    margin-top: 0;
}
.site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.site-footer a { color: var(--c-yellow); }
.site-footer__logo {
    max-width: 360px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}
.site-footer__social { list-style: none; padding: 0; margin: 0; display: flex; gap: 16px; }
.site-footer__hours p { margin: 0; }

/* StreamField */
.streamfield > section + section { /* color blocks abut directly, no extra spacing */ }

/* Responsive */
@media (max-width: 880px) {
    .image-text__inner,
    .flavor-detail__inner,
    .newsletter__inner { grid-template-columns: 1fr; }
    .image-text--left .image-text__media,
    .image-text--right .image-text__media { order: 0; }
    .image-text--left .image-text__copy,
    .image-text--right .image-text__copy { order: 1; }
    .event-row { grid-template-columns: 90px 1fr; }
    .event-row__thumb { display: none; }
    .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .site-header__logo { height: 85px; }
    .site-header__toggle { display: block; }
    .site-header__nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--c-cream);
        border-bottom: 3px solid var(--c-ink);
        max-height: 0;
        overflow: hidden;
        transition: max-height 200ms ease;
    }
    .site-header__nav.is-open { max-height: 480px; }
    .site-header__nav ul { flex-direction: column; padding: 16px 24px; gap: 16px; }
    .section { padding: 64px 0; }
}
