:root {
    --bg: #fff7fb;
    --card: rgba(255, 255, 255, .75);
    --card2: rgba(255, 255, 255, .55);
    --text: #2a1b22;
    --muted: rgba(42, 27, 34, .70);

    --pink-1: #ffd6e7;
    --pink-2: #ffb6d4;
    --pink-3: #ff8fbe;

    --red: #e33b52;
    --red-soft: rgba(227, 59, 82, .12);

    --line: rgba(42, 27, 34, .12);

    --shadow: 0 18px 45px rgba(42, 27, 34, .12);
    --shadow2: 0 10px 22px rgba(42, 27, 34, .10);

    --radius: 18px;
    --radius2: 26px;

    --max: 1120px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(1100px 680px at 10% 0%, rgba(255, 182, 212, .35), transparent 60%),
        radial-gradient(900px 620px at 90% 20%, rgba(255, 214, 231, .55), transparent 55%),
        linear-gradient(180deg, #ffffff, var(--bg));
    overflow-x: hidden;
}

html {
    overflow-x: clip;
}

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

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

.container {
    width: min(100% - 2.2rem, var(--max));
    margin-inline: auto;
}

.skip {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: .8rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow2);
    z-index: 999;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(255, 247, 251, .65);
    border-bottom: 1px solid rgba(42, 27, 34, .08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 0;
}

.brand__mark {
    display: flex;
    align-items: center;
}

.brand__logo {
    width: auto;
    height: 56px;
    display: block;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.brand__name {
    font-family: Fraunces, serif;
    font-weight: 700;
    letter-spacing: .2px;
}

.brand__tag {
    font-size: .85rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav a {
    font-weight: 500;
    font-size: .95rem;
    color: rgba(42, 27, 34, .82);
    padding: .55rem .7rem;
    border-radius: 999px;
    transition: transform .25s var(--ease), background .25s var(--ease);
}

.nav a:hover {
    background: rgba(255, 182, 212, .22);
    transform: translateY(-1px);
}

.navToggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(42, 27, 34, .10);
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 10px 18px rgba(42, 27, 34, .06);
    cursor: pointer;
}

.navToggle__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: rgba(42, 27, 34, .75);
    border-radius: 2px;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .95rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(227, 59, 82, .25);
    background: linear-gradient(145deg, rgba(227, 59, 82, .95), rgba(255, 143, 190, .95));
    color: white;
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(227, 59, 82, .18);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(227, 59, 82, .22);
    filter: saturate(1.05);
}

.btn:active {
    transform: translateY(0px) scale(.98);
}

.btn--ghost {
    background: rgba(255, 255, 255, .72);
    color: rgba(42, 27, 34, .90);
    border: 1px solid rgba(42, 27, 34, .12);
    box-shadow: 0 12px 24px rgba(42, 27, 34, .08);
}

.btn--ghost:hover {
    box-shadow: 0 18px 34px rgba(42, 27, 34, .11);
}

.btn--small {
    padding: .65rem .9rem;
    font-size: .92rem;
}

.btn__spark {
    opacity: .9;
}

/* Hero */
.hero {
    position: relative;
    padding: clamp(3.2rem, 6vw, 5rem) 0 2.2rem;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: clamp(1.4rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(42, 27, 34, .10);
    background: rgba(255, 255, 255, .68);
    color: rgba(42, 27, 34, .75);
    box-shadow: 0 12px 22px rgba(42, 27, 34, .06);
    font-weight: 500;
    margin: 0 0 1rem;
}

.hero h1 {
    font-family: Fraunces, serif;
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    letter-spacing: .2px;
}

.accent {
    color: var(--red);
    background: linear-gradient(180deg, transparent 60%, rgba(255, 182, 212, .35) 60%);
}

.lead {
    margin: 0 0 1.35rem;
    font-size: 1.05rem;
    color: rgba(42, 27, 34, .78);
    line-height: 1.6;
    max-width: 52ch;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.4rem;
}

.hero__facts {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.fact {
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(42, 27, 34, .10);
    border-radius: 16px;
    padding: .75rem .85rem;
    min-width: 150px;
    box-shadow: 0 16px 26px rgba(42, 27, 34, .07);
}

.fact__num {
    display: block;
    font-weight: 700;
    letter-spacing: .2px;
}

.fact__label {
    display: block;
    font-size: .9rem;
    color: var(--muted);
    margin-top: .2rem;
}

/* Cozy illustration card */
.hero__card {
    border-radius: var(--radius2);
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .55));
    border: 1px solid rgba(42, 27, 34, .10);
    box-shadow: var(--shadow);
    padding: 1.1rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.carousel {
    position: relative;
    border-radius: 22px;
    background: radial-gradient(900px 260px at 50% 0%, rgba(255, 182, 212, .35), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .4));
    border: 1px solid rgba(42, 27, 34, .10);
    overflow: hidden;
    padding: .9rem;
    min-height: 320px;
    display: grid;
    place-items: center;
}

.carousel__track {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .6);
}

.carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.carousel__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(42, 27, 34, .12);
    background: rgba(255, 255, 255, .85);
    color: rgba(42, 27, 34, .85);
    box-shadow: 0 12px 22px rgba(42, 27, 34, .12);
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.carousel__btn:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 16px 26px rgba(42, 27, 34, .16);
}

.carousel__btn.prev {
    left: 16px;
}

.carousel__btn.next {
    right: 16px;
}

.carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: .45rem;
}

.carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(42, 27, 34, .25);
    background: rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s var(--ease);
}

.carousel__dot.is-active {
    background: var(--red);
    border-color: rgba(227, 59, 82, .65);
    transform: scale(1.15);
}

.hero__see-more {
    width: 100%;
    margin-top: .9rem;
    justify-content: center;
}

.hero__badge {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .8rem;
    border-radius: 999px;
    background: rgba(227, 59, 82, .10);
    border: 1px solid rgba(227, 59, 82, .18);
    color: rgba(42, 27, 34, .84);
    font-weight: 600;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(227, 59, 82, .14);
}

/* Simple "cake" illustration */
.photo {
    border-radius: 22px;
    background: radial-gradient(900px 260px at 50% 0%, rgba(255, 182, 212, .35), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .4));
    border: 1px solid rgba(42, 27, 34, .10);
    overflow: hidden;
    padding: 1rem;
    position: relative;
    min-height: 320px;
}

.photo__top {
    position: relative;
    height: 70px;
}

.steam {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    filter: blur(10px);
    opacity: .55;
    background: radial-gradient(circle at 30% 30%, rgba(255, 182, 212, .55), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, .75), transparent 60%);
    animation: float 6.2s var(--ease) infinite;
}

.s1 {
    left: 10%;
    top: 5px;
    animation-delay: 0s;
}

.s2 {
    left: 42%;
    top: -8px;
    animation-delay: .8s;
}

.s3 {
    left: 68%;
    top: 10px;
    animation-delay: 1.4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-14px) translateX(6px) scale(1.05);
    }
}

.photo__plate {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: 86%;
}

.cake {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.cake__layer {
    height: 52px;
    border-radius: 18px;
    border: 1px solid rgba(42, 27, 34, .10);
    background: linear-gradient(180deg, rgba(255, 214, 231, .9), rgba(255, 182, 212, .75));
    box-shadow: 0 18px 26px rgba(227, 59, 82, .08);
    margin-bottom: 10px;
}

.cake__layer:nth-child(2) {
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 214, 231, .75));
}

.cake__layer:nth-child(3) {
    background: linear-gradient(180deg, rgba(255, 182, 212, .85), rgba(255, 143, 190, .7));
}

.cake__drip {
    position: absolute;
    top: 58px;
    left: 18px;
    right: 18px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(42, 27, 34, .08);
    filter: blur(.2px);
}

.cake__berries {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.cake__berries span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 6px 14px rgba(227, 59, 82, .22);
}

.strawberries {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.berry {
    width: 26px;
    height: 26px;
    border-radius: 10px 10px 14px 14px;
    background: linear-gradient(180deg, rgba(227, 59, 82, .95), rgba(255, 143, 190, .85));
    border: 1px solid rgba(42, 27, 34, .10);
    box-shadow: 0 10px 18px rgba(227, 59, 82, .14);
}

/* Hero background blobs */
.hero__bg {
    position: absolute;
    inset: -120px 0 auto 0;
    height: 520px;
    pointer-events: none;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .7;
    transform: translateZ(0);
    animation: drift 10s var(--ease) infinite;
}

.b1 {
    width: 340px;
    height: 240px;
    left: -80px;
    top: 90px;
    background: rgba(255, 182, 212, .55);
}

.b2 {
    width: 360px;
    height: 260px;
    right: -90px;
    top: 40px;
    background: rgba(255, 214, 231, .7);
    animation-delay: 1s;
}

.b3 {
    width: 260px;
    height: 200px;
    left: 42%;
    top: -20px;
    background: rgba(227, 59, 82, .14);
    animation-delay: 2s;
}

@keyframes drift {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-14px) translateX(10px) scale(1.03);
    }
}

/* Sections */
.section {
    padding: clamp(3.2rem, 5vw, 4.4rem) 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 214, 231, .22), rgba(255, 247, 251, .10));
    border-top: 1px solid rgba(42, 27, 34, .06);
    border-bottom: 1px solid rgba(42, 27, 34, .06);
}

.section__head {
    margin-bottom: 1.6rem;
    max-width: 70ch;
}

.section__head h2 {
    font-family: Fraunces, serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin: 0 0 .35rem;
}

.section__head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.card {
    background: var(--card);
    border: 1px solid rgba(42, 27, 34, .10);
    border-radius: var(--radius);
    padding: 1.2rem 1.1rem;
    box-shadow: var(--shadow2);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(42, 27, 34, .12);
}

.card h3 {
    margin: 0 0 .4rem;
    font-size: 1.15rem;
}

.muted {
    color: var(--muted);
}

.note {
    margin: .8rem 0 0;
    color: rgba(42, 27, 34, .72);
}

.list {
    list-style: none;
    padding: 0;
    margin: .9rem 0 0;
    display: grid;
    gap: .55rem;
}

.list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem .7rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(42, 27, 34, .08);
}

.price {
    font-weight: 700;
    color: rgba(42, 27, 34, .75);
}

/* Callout */
.callout {
    margin-top: 1.2rem;
    padding: 1.2rem 1.2rem;
    border-radius: var(--radius2);
    border: 1px solid rgba(227, 59, 82, .18);
    background: linear-gradient(180deg, rgba(227, 59, 82, .08), rgba(255, 255, 255, .55));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 16px 30px rgba(227, 59, 82, .10);
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1.2rem;
    align-items: start;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 1rem 0 1.2rem;
}

.chip {
    padding: .5rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(42, 27, 34, .10);
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 12px 22px rgba(42, 27, 34, .05);
    font-weight: 500;
    color: rgba(42, 27, 34, .78);
}

.steps {
    display: grid;
    gap: .7rem;
}

.step {
    display: flex;
    gap: .8rem;
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(42, 27, 34, .10);
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 12px 22px rgba(42, 27, 34, .06);
}

.step__num {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(227, 59, 82, .10);
    border: 1px solid rgba(227, 59, 82, .18);
    font-weight: 800;
    color: rgba(42, 27, 34, .85);
}

.about__panel {
    background: var(--card2);
    border: 1px solid rgba(42, 27, 34, .10);
    border-radius: var(--radius2);
    padding: 1.2rem;
    box-shadow: var(--shadow2);
}

.about__panel h3 {
    margin: 0 0 .8rem;
}

.flavors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .7rem;
}

.flavor {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem .8rem;
    border-radius: 16px;
    border: 1px solid rgba(42, 27, 34, .08);
    background: rgba(255, 255, 255, .58);
}

.flavor span {
    font-size: 1.2rem;
}

.flavor p {
    margin: 0;
    font-weight: 600;
    color: rgba(42, 27, 34, .78);
}

.miniCard {
    margin-top: .9rem;
    padding: .85rem .9rem;
    border-radius: 18px;
    border: 1px solid rgba(227, 59, 82, .16);
    background: rgba(227, 59, 82, .06);
}

/* Quotes */
.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quote {
    margin: 0;
    padding: 1.2rem 1.1rem;
    border-radius: var(--radius2);
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(42, 27, 34, .10);
    box-shadow: var(--shadow2);
}

.quote blockquote {
    margin: 0 0 .8rem;
    font-size: 1.02rem;
    line-height: 1.6;
}

.quote figcaption {
    color: var(--muted);
    font-weight: 600;
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.2rem;
    align-items: start;
}

.contact__tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin-top: 1rem;
}

.tile {
    display: flex;
    gap: .8rem;
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(42, 27, 34, .10);
    background: rgba(255, 255, 255, .70);
    box-shadow: 0 12px 22px rgba(42, 27, 34, .06);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(42, 27, 34, .10);
}

.tile__icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 182, 212, .30);
    border: 1px solid rgba(227, 59, 82, .15);
}

.tile__title {
    font-weight: 700;
    display: block;
}

.tile__sub {
    color: var(--muted);
    display: block;
    font-size: .92rem;
    margin-top: .15rem;
}

.hours {
    margin-top: 1rem;
    padding: .9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(42, 27, 34, .10);
    background: rgba(255, 255, 255, .58);
}

.hours__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 0;
}

.hours__row+.hours__row {
    border-top: 1px solid rgba(42, 27, 34, .08);
}

/* Form */
.form {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(42, 27, 34, .10);
    border-radius: var(--radius2);
    padding: 1.2rem;
    box-shadow: var(--shadow2);
}

.form h3 {
    margin: 0 0 .9rem;
}

label {
    display: block;
    margin-bottom: .8rem;
}

label span {
    display: block;
    font-weight: 600;
    margin: 0 0 .35rem;
}

input,
select,
textarea {
    width: 100%;
    padding: .85rem .9rem;
    border-radius: 14px;
    border: 1px solid rgba(42, 27, 34, .12);
    background: rgba(255, 255, 255, .85);
    outline: none;
    transition: box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
    color: rgba(42, 27, 34, .92);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(227, 59, 82, .35);
    box-shadow: 0 0 0 6px rgba(227, 59, 82, .10);
}

textarea {
    resize: vertical;
    min-height: 130px;
}

.form__note {
    margin: .8rem 0 0;
    font-size: .93rem;
}

.toast {
    margin-top: .9rem;
    padding: .75rem .85rem;
    border-radius: 14px;
    background: rgba(227, 59, 82, .08);
    border: 1px solid rgba(227, 59, 82, .16);
    color: rgba(42, 27, 34, .84);
    display: none;
}

/* Footer */
.footer {
    padding: 1.2rem 0 2.4rem;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(42, 27, 34, .70);
}

.toTop {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(42, 27, 34, .10);
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 10px 18px rgba(42, 27, 34, .06);
    transition: transform .25s var(--ease);
}

.toTop:hover {
    transform: translateY(-2px);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile nav */
@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .quotes {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .hero__card {
        max-width: 560px;
        margin: 0 auto;
    }

    .brand__tag {
        max-width: 220px;
    }
}

@media (max-width: 760px) {
    .header__inner {
        padding: .7rem 0;
    }

    .brand__logo {
        height: 44px;
    }

    .brand__name {
        font-size: 1rem;
    }

    .navToggle {
        display: block;
    }

    .nav {
        position: fixed;
        inset: 68px 1rem auto 1rem;
        background: rgba(255, 255, 255, .85);
        border: 1px solid rgba(42, 27, 34, .10);
        border-radius: 22px;
        box-shadow: var(--shadow);
        padding: .7rem;
        display: flex;
        flex-direction: column;
        gap: .25rem;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s var(--ease), transform .25s var(--ease);
    }

    .nav a {
        width: 100%;
        padding: .85rem .9rem;
    }

    body.nav-open .nav {
        opacity: 1;
        transform: translateY(0px);
        pointer-events: auto;
    }

    body.nav-open .navToggle__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    body.nav-open .navToggle__line:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .navToggle__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .contact__tiles {
        grid-template-columns: 1fr;
    }

    .callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding: 2.6rem 0 2rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fact {
        min-width: 0;
    }

    .carousel {
        min-height: 240px;
    }

    .list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        margin-top: .1rem;
    }

    .hours__row {
        flex-direction: column;
        align-items: flex-start;
        gap: .2rem;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 1.5rem, var(--max));
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .pill {
        font-size: .88rem;
    }

    .hero__facts {
        grid-template-columns: 1fr;
    }

    .carousel__btn {
        width: 36px;
        height: 36px;
    }

    .carousel__btn.prev {
        left: 10px;
    }

    .carousel__btn.next {
        right: 10px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        transition: none;
        transform: none;
        opacity: 1;
    }

    .blob,
    .steam {
        animation: none;
    }

    .carousel__slide {
        transition: none;
    }

    .btn,
    .card,
    .tile,
    .toTop,
    .nav a {
        transition: none;
    }
}
