/* ================================================================
   BLACK SUGAR — Specialty Coffee
   Premium design system · 2026 refresh
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
    --espresso:    #100b09;
    --espresso-2:  #17110d;
    --panel:       rgba(244, 236, 226, 0.028);
    --panel-2:     rgba(244, 236, 226, 0.05);
    --cream:       #f4ece2;
    --cream-70:    rgba(244, 236, 226, 0.70);
    --cream-45:    rgba(244, 236, 226, 0.45);
    --cream-25:    rgba(244, 236, 226, 0.25);
    --caramel:     #d0a878;
    --caramel-2:   #b98650;
    --caramel-deep:#8a5a2f;
    --line:        rgba(244, 236, 226, 0.09);
    --line-soft:   rgba(244, 236, 226, 0.05);

    --serif: 'Fraunces', Georgia, serif;
    --sans:  'Inter', system-ui, sans-serif;

    --radius:   22px;
    --radius-s: 14px;
    --ease:     cubic-bezier(0.22, 1, 0.36, 1);
    --container: 1200px;
    --shadow:   0 30px 70px -30px rgba(0, 0, 0, 0.85);
}

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

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

body {
    font-family: var(--sans);
    background: var(--espresso);
    color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Fine film grain over everything for a warm, printed feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.4;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

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

::selection { background: var(--caramel); color: var(--espresso); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 100px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
    position: relative;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--caramel), var(--caramel-2));
    color: #1a1109;
    box-shadow: 0 14px 34px -14px rgba(208, 168, 120, 0.7);
}
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -16px rgba(208, 168, 120, 0.75);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--cream);
}
.btn--outline:hover {
    border-color: var(--caramel);
    color: var(--caramel);
    transform: translateY(-3px);
}

.btn--small { padding: 11px 24px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Section headers ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--caramel);
}
.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--caramel));
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
    content: '';
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, var(--caramel), transparent);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-header .eyebrow { margin-bottom: 18px; }

.section-header__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: var(--cream);
}
.section-header__text {
    margin-top: 16px;
    color: var(--cream-45);
    font-size: 16px;
    font-weight: 300;
}

.highlight {
    font-style: italic;
    color: var(--caramel);
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    padding: 13px 0;
    background: rgba(16, 11, 9, 0.72);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-bottom-color: var(--line-soft);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__icon {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: linear-gradient(140deg, rgba(208,168,120,0.18), rgba(208,168,120,0.04));
    border: 1px solid rgba(208,168,120,0.18);
    font-size: 20px;
}
.logo__text {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 1.5px;
    color: var(--cream);
}
.logo__text small {
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3.5px;
    color: var(--cream-45);
    text-transform: uppercase;
}

.nav__list { display: flex; list-style: none; gap: 38px; }
.nav__link {
    text-decoration: none;
    color: var(--cream-45);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1.5px;
    background: var(--caramel);
    transition: width 0.4s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--cream); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__cta { display: inline-flex; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    z-index: 1001;
}
.burger__line {
    width: 26px; height: 2px;
    background: var(--cream);
    border-radius: 4px;
    transition: all 0.35s var(--ease);
}
.burger.active .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active .burger__line:nth-child(2) { opacity: 0; }
.burger.active .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 90px;
    overflow: hidden;
}
#particlesCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}
.hero__bg {
    position: absolute; inset: 0;
    z-index: 0;
    background:
        radial-gradient(60% 80% at 78% 42%, rgba(208, 168, 120, 0.12) 0%, transparent 60%),
        radial-gradient(50% 60% at 15% 20%, rgba(138, 90, 47, 0.10) 0%, transparent 55%),
        var(--espresso);
}
.hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(120% 90% at 50% 120%, transparent 55%, var(--espresso) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    border-radius: 100px;
    background: var(--panel-2);
    border: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--cream-70);
    margin-bottom: 26px;
    backdrop-filter: blur(6px);
}
.hero__badge b {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(208, 168, 120, 0.14);
    color: var(--caramel);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.3px;
}
.hero__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(44px, 6.6vw, 82px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    color: var(--cream);
    margin-bottom: 22px;
}
.hero__text {
    font-size: 17.5px;
    font-weight: 300;
    color: var(--cream-45);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 36px;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats { display: flex; gap: 40px; }
.hero__stat-num {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
}
.hero__stat-label {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--cream-45);
}

/* Crafted cup composition */
.hero__stage {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}
.hero__glow {
    position: absolute;
    width: 78%; aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 42% 34%, rgba(208, 168, 120, 0.22), transparent 62%);
    filter: blur(6px);
}
.hero__seal {
    position: absolute;
    width: 100%; height: 100%;
    animation: spin 34s linear infinite;
}
.hero__seal text { fill: var(--cream-25); font-family: var(--sans); font-size: 6.6px; letter-spacing: 3.6px; font-weight: 600; }
@keyframes spin { to { transform: rotate(360deg); } }

.cup {
    position: relative;
    width: 58%;
    filter: drop-shadow(0 40px 50px rgba(0,0,0,0.55));
    z-index: 2;
}
.cup__steam {
    position: absolute;
    left: 50%; top: -6%;
    transform: translateX(-50%);
    display: flex; gap: 16px;
    z-index: 1;
}
.cup__steam span {
    display: block;
    width: 6px; height: 60px;
    border-radius: 100px;
    background: linear-gradient(to top, rgba(244,236,226,0.28), transparent);
    filter: blur(3px);
    animation: steam 4s ease-in-out infinite;
}
.cup__steam span:nth-child(2) { animation-delay: 0.8s; height: 76px; }
.cup__steam span:nth-child(3) { animation-delay: 1.6s; }
@keyframes steam {
    0%   { opacity: 0; transform: translateY(10px) scaleX(1); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-34px) scaleX(1.6); }
}

/* ---------- Marquee strip ---------- */
.strip {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 22px 0;
    overflow: hidden;
    background: var(--espresso-2);
}
.strip__track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.strip__track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--cream-25);
    display: inline-flex; align-items: center; gap: 56px;
}
.strip__track span::after { content: '✦'; color: var(--caramel); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Menu cards ---------- */
.section { padding: 110px 0; }
.section--alt { background: var(--espresso-2); }

.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.menu__card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 30px 26px 26px;
    transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
    overflow: hidden;
}
.menu__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% -10%, rgba(208,168,120,0.10), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}
.menu__card:hover {
    transform: translateY(-6px);
    border-color: rgba(208, 168, 120, 0.24);
    background: var(--panel-2);
}
.menu__card:hover::before { opacity: 1; }

.menu__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
}
.menu__card-image {
    width: 66px; height: 66px;
    display: grid; place-items: center;
    font-size: 34px;
    border-radius: 18px;
    background: radial-gradient(circle at 35% 30%, #2a1c14, #150e0a);
    border: 1px solid var(--line);
    flex-shrink: 0;
}
.menu__card-tag {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--caramel);
    padding: 5px 11px;
    border-radius: 100px;
    background: rgba(208, 168, 120, 0.1);
}
.menu__card-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 21px;
    color: var(--cream);
    margin-bottom: 5px;
}
.menu__card-desc {
    font-size: 13.5px;
    color: var(--cream-45);
    font-weight: 300;
    min-height: 38px;
}
.menu__card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}
.menu__card-price {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--cream);
}
.menu__card-price span { font-size: 14px; color: var(--cream-45); }

.menu__card-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 4px;
}
.counter-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--cream-70);
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    display: grid; place-items: center;
    transition: background 0.25s, color 0.25s;
}
.counter-btn:hover { background: rgba(208,168,120,0.16); color: var(--caramel); }
.counter-value { min-width: 20px; text-align: center; font-weight: 600; font-size: 14px; }

.menu__card .order-btn { margin-top: 16px; }

/* ---------- Craft / steps ---------- */
.craft__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 8px;
}
.craft__card {
    padding: 34px 28px;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid var(--line-soft);
    transition: transform 0.5s var(--ease), border-color 0.4s;
}
.craft__card:hover { transform: translateY(-6px); border-color: rgba(208,168,120,0.2); }
.craft__num {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--caramel);
    letter-spacing: 2px;
}
.craft__icon { font-size: 40px; margin: 18px 0 16px; }
.craft__card h4 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin-bottom: 8px; }
.craft__card p { font-size: 14px; color: var(--cream-45); font-weight: 300; }

/* ---------- Split feature ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 35% 28%, rgba(208,168,120,0.16), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(138,90,47,0.2), transparent 55%),
        linear-gradient(160deg, #241811, #120c09);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    font-size: 130px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.split__visual .badge-float {
    position: absolute;
    bottom: 24px; left: 24px;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(16,11,9,0.7);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    font-size: 13px; color: var(--cream-70);
}
.split__visual .badge-float b { color: var(--cream); font-family: var(--serif); font-size: 20px; }
.split h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.split p { color: var(--cream-45); font-weight: 300; margin-bottom: 18px; font-size: 16px; }
.split__list { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--cream-70); }
.split__list li::before {
    content: '✦';
    color: var(--caramel);
    font-size: 12px;
    margin-top: 4px;
}

/* ---------- Testimonials ---------- */
.quotes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.quote {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid var(--line-soft);
}
.quote__stars { color: var(--caramel); letter-spacing: 3px; font-size: 13px; margin-bottom: 16px; }
.quote__text { font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.55; color: var(--cream); margin-bottom: 22px; }
.quote__author { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center; font-size: 20px;
    background: radial-gradient(circle at 35% 30%, #2a1c14, #150e0a);
    border: 1px solid var(--line);
}
.quote__name { font-weight: 600; font-size: 14px; }
.quote__role { font-size: 12.5px; color: var(--cream-45); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    margin: 0 auto;
    max-width: calc(var(--container) - 0px);
    border-radius: 32px;
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(80% 140% at 50% -20%, rgba(208,168,120,0.22), transparent 60%),
        linear-gradient(160deg, #241811, #130d09);
    border: 1px solid var(--line);
}
.cta-band h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 48px);
    line-height: 1.06;
    margin-bottom: 16px;
}
.cta-band p { color: var(--cream-45); margin-bottom: 32px; font-weight: 300; }

/* ---------- Footer ---------- */
.footer {
    padding: 72px 0 32px;
    border-top: 1px solid var(--line-soft);
    background: var(--espresso-2);
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line-soft);
}
.footer__logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--serif);
    font-size: 20px; font-weight: 600; letter-spacing: 1px;
    margin-bottom: 14px;
}
.footer__text { color: var(--cream-45); font-size: 14px; font-weight: 300; max-width: 260px; }
.footer__col h5 {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--cream-45); margin-bottom: 16px;
}
.footer__col p, .footer__col a {
    color: var(--cream-70);
    font-size: 14px; font-weight: 300;
    margin-bottom: 9px; text-decoration: none;
    display: block; transition: color 0.3s;
}
.footer__col a:hover { color: var(--caramel); }
.footer__socials { display: flex; gap: 10px; margin-top: 4px; }
.footer__socials a {
    width: 40px; height: 40px; border-radius: 12px;
    display: grid; place-items: center;
    border: 1px solid var(--line); font-size: 16px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.footer__socials a:hover { border-color: var(--caramel); transform: translateY(-3px); background: rgba(208,168,120,0.08); }
.footer__bottom {
    padding-top: 28px;
    text-align: center;
    color: var(--cream-25);
    font-size: 13px;
}

/* ---------- Modal ---------- */
.modal {
    display: none;
    position: fixed; inset: 0;
    background: rgba(8, 5, 4, 0.72);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center; justify-content: center;
    padding: 24px;
}
.modal.active { display: flex; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__content {
    position: relative;
    max-width: 420px; width: 100%;
    padding: 48px 40px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(160deg, #221710, #130d09);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    animation: pop 0.5s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: scale(0.94) translateY(20px); } to { opacity: 1; transform: none; } }
.modal__close {
    position: absolute; top: 18px; right: 20px;
    background: none; border: none;
    color: var(--cream-25); font-size: 20px; cursor: pointer;
    transition: color 0.3s;
}
.modal__close:hover { color: var(--cream); }
.modal__icon {
    width: 72px; height: 72px; margin: 0 auto 18px;
    display: grid; place-items: center; font-size: 34px;
    border-radius: 50%;
    background: rgba(208,168,120,0.14);
    border: 1px solid rgba(208,168,120,0.24);
}
.modal__title { font-family: var(--serif); font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.modal__text { color: var(--cream-45); font-weight: 300; }

/* ---------- Reveal on scroll ---------- */
.fade-up { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .fade-up { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__stage { max-width: 380px; margin: 0 auto; order: -1; }
    .menu__grid, .craft__grid, .quotes__grid { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .split__visual { max-width: 420px; aspect-ratio: 5/4; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .header__cta { display: none; }
    .burger { display: flex; }
    .nav {
        position: fixed; inset: 0 0 0 auto;
        width: min(80vw, 320px);
        transform: translateX(100%);
        background: rgba(16, 11, 9, 0.96);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--line);
        padding: 110px 36px 40px;
        transition: transform 0.5s var(--ease);
    }
    .nav.open { transform: none; }
    .nav__list { flex-direction: column; gap: 26px; }
    .nav__link { font-size: 20px; }
    .section { padding: 80px 0; }
    .menu__grid, .craft__grid, .quotes__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .hero__stats { gap: 28px; }
    .footer__inner { grid-template-columns: 1fr; text-align: left; }
    .cta-band { padding: 48px 24px; }
}

@media (max-width: 420px) {
    .container { padding: 0 18px; }
    .hero__buttons .btn { flex: 1; justify-content: center; }
}
