:root {
    --ink: #29383b;
    --muted: #6c7777;
    --paper: #fffaf7;
    --white: #ffffff;
    --cream: #f8eee8;
    --cream-deep: #f2e2db;
    --coral: #d77f7c;
    --coral-dark: #bd6666;
    --rose: #efb8b1;
    --teal: #4da5ad;
    --teal-dark: #347f87;
    --line: rgba(41, 56, 59, .13);
    --shadow: 0 24px 60px rgba(61, 39, 36, .13);
    --radius: 8px;
    --container: 1180px;
    --sans: "Segoe UI", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body.menu-open .site-header { backdrop-filter: none; box-shadow: none; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.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; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.eyebrow {
    margin: 0 0 18px;
    color: var(--teal-dark);
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .2em;
    line-height: 1.4;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 26px; font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(3.3rem, 6.4vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 4.4vw, 4.5rem); }
h1 em, h2 em { color: var(--coral); font-weight: 400; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 27px;
    border: 1px solid var(--coral);
    border-radius: 999px;
    color: white;
    background: var(--coral);
    box-shadow: 0 10px 28px rgba(190, 103, 102, .2);
    font-size: .91rem;
    font-weight: 750;
    letter-spacing: .035em;
    transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

.button:hover, .button:focus-visible { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(190, 103, 102, .28); }
.button--light { border-color: white; color: var(--ink); background: white; }
.button--light:hover, .button--light:focus-visible { border-color: var(--cream); background: var(--cream); }

.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--ink); font-weight: 700; }
.text-link span { color: var(--coral); font-size: 1.35rem; line-height: 1; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 88px;
    border-bottom: 1px solid transparent;
    transition: height .25s, background .25s, box-shadow .25s, border-color .25s;
}

.site-header.is-scrolled { height: 72px; border-color: var(--line); background: rgba(255, 250, 247, .94); box-shadow: 0 8px 30px rgba(41, 56, 59, .06); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.brand-mark { display: block; flex: 0 0 auto; width: 32px; height: 32px; object-fit: contain; }
.brand-name { color: var(--teal); font-family: "Segoe Print", "Bradley Hand", cursive; font-size: 1.56rem; font-weight: 600; letter-spacing: -.07em; white-space: nowrap; }
.brand-name i { color: var(--coral); font-style: normal; }
.brand-name span { color: var(--coral); }
.main-nav { display: flex; align-items: center; gap: 37px; font-size: .91rem; font-weight: 650; }
.main-nav > a:not(.nav-phone) { position: relative; padding: 10px 0; }
.main-nav > a:not(.nav-phone)::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav > a:hover::after, .main-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-phone { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--teal-dark); }
.nav-phone:hover { border-color: var(--teal); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1.5px; margin: 6px auto; background: var(--ink); transition: transform .25s, opacity .2s; }

.hero { position: relative; min-height: 820px; overflow: hidden; padding: 148px 0 80px; background: linear-gradient(110deg, #fffaf7 0%, #fff8f5 60%, #f7e7e1 100%); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; left: -300px; top: 200px; border: 1px solid rgba(215,127,124,.18); border-radius: 50%; }
.hero-backdrop { position: absolute; right: -10vw; bottom: -38%; width: 52vw; height: 52vw; min-width: 600px; min-height: 600px; border: 1px solid rgba(77, 165, 173, .13); border-radius: 50%; }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(45px, 7vw, 100px); }
.hero-copy { padding-top: 15px; }
.hero-copy h1 { max-width: 680px; }
.hero-lead { max-width: 540px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.23rem); }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-note { display: flex; align-items: center; gap: 13px; max-width: 390px; margin-top: 49px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; line-height: 1.4; }
.hero-note strong { display: block; color: var(--ink); }
.hero-note-icon { display: grid; flex: 0 0 auto; width: 37px; height: 37px; place-items: center; border-radius: 50%; color: var(--coral); background: #fbe3df; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 570px); }
.hero-image-wrap { position: relative; aspect-ratio: .78; overflow: hidden; border-radius: 47% 47% 8px 8px; box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,34,32,.11), transparent 45%); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.hero-badge { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; right: -35px; bottom: 62px; width: 150px; height: 150px; padding: 20px; border: 8px solid rgba(255,255,255,.7); border-radius: 50%; color: white; background: var(--teal); box-shadow: 0 18px 36px rgba(52,127,135,.25); text-align: center; transform: rotate(-7deg); }
.hero-badge strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: .95; }
.hero-badge span { display: block; font-size: .72rem; font-weight: 700; line-height: 1.18; letter-spacing: .05em; text-transform: uppercase; }

.offer-preview { background: var(--white); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 58px; }
.section-heading h2 { margin: 0; }
.section-link { margin-bottom: 10px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 25px; }
.category-card a { display: block; }
.category-image { position: relative; aspect-ratio: 4 / 4.7; overflow: hidden; background: var(--cream); }
.category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.category-card:nth-child(2) .category-image img { object-position: 54% center; }
.category-card:hover .category-image img { transform: scale(1.045); }
.card-arrow { position: absolute; display: grid; right: 18px; bottom: 18px; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.92); font-size: 1.2rem; transform: translateY(8px); opacity: 0; transition: opacity .25s, transform .25s; }
.category-card:hover .card-arrow { opacity: 1; transform: translateY(0); }
.category-copy { display: grid; grid-template-columns: 33px 1fr; gap: 14px; padding-top: 22px; }
.category-number { padding-top: 5px; color: var(--coral); font-family: var(--serif); font-size: .82rem; }
.category-copy h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.category-copy p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.55; }

.craft-section { overflow: hidden; background: var(--cream); }
.craft-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.craft-images { position: relative; min-height: 670px; }
.craft-image-main { width: 79%; height: 600px; object-fit: cover; object-position: center; }
.craft-image-small { position: absolute; right: 0; bottom: 0; width: 47%; height: 285px; border: 12px solid var(--cream); object-fit: cover; }
.craft-script { position: absolute; right: -15px; top: 50px; color: var(--coral); font-family: "Segoe Print", cursive; font-size: 1.2rem; line-height: 1.3; transform: rotate(-8deg); }
.large-copy { margin-bottom: 39px; color: var(--muted); font-size: 1.08rem; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list > div { display: grid; grid-template-columns: 43px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--teal); font-family: var(--serif); }
.feature-list p { margin: 0; color: var(--muted); font-size: .91rem; }
.feature-list strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 1rem; }

.process-section { background: var(--paper); }
.section-heading--center { display: block; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; }
.process-step { position: relative; padding: 0 32px; text-align: center; }
.process-step + .process-step { border-left: 1px solid var(--line); }
.process-step span { display: grid; width: 48px; height: 48px; margin: 0 auto 25px; place-items: center; border: 1px solid var(--rose); border-radius: 50%; color: var(--coral); font-family: var(--serif); }
.process-step h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.testimonials-section { background: var(--teal); color: white; }
.testimonial-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 90px; min-height: 430px; }
.testimonial-intro .eyebrow { color: rgba(255,255,255,.7); }
.testimonial-intro h2 { margin-bottom: 45px; }
.testimonial-intro h2 em { color: #ffd6cf; }
.testimonial-controls { display: flex; align-items: center; gap: 18px; }
.testimonial-controls button { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; background: transparent; cursor: pointer; }
.testimonial-controls button:hover { background: rgba(255,255,255,.12); }
.testimonial-controls span { color: rgba(255,255,255,.75); font-size: .82rem; }
.testimonial-controls i { color: white; font-style: normal; }
.testimonial-slider { position: relative; min-height: 300px; overflow: hidden; }
.testimonial { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; margin: 0; opacity: 0; transform: translateX(25px); pointer-events: none; transition: opacity .4s, transform .4s; }
.testimonial.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.quote-mark { color: #ffd6cf; font-family: var(--serif); font-size: 5rem; line-height: .6; }
.testimonial p { max-width: 740px; margin: 25px 0 28px; font-family: var(--serif); font-size: clamp(1.55rem, 2.8vw, 2.25rem); line-height: 1.36; }
.testimonial footer { font-size: .87rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.cta-section { position: relative; overflow: hidden; padding: 110px 0; color: white; background: var(--coral); text-align: center; }
.cta-section::before, .cta-section::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.cta-section::before { left: -170px; top: -150px; }.cta-section::after { right: -170px; bottom: -220px; }
.cta-inner { position: relative; z-index: 1; }
.cta-section .eyebrow { color: rgba(255,255,255,.72); }
.cta-section h2 { margin-bottom: 35px; }
.cta-section h2 em { color: white; }
.cta-section .button { margin-bottom: 20px; }
.cta-section p:last-child { margin: 0; font-size: .88rem; }
.cta-section p:last-child a { border-bottom: 1px solid currentColor; font-weight: 700; }

.site-footer { padding: 72px 0 25px; color: rgba(255,255,255,.74); background: #263638; font-size: .88rem; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr .8fr .7fr; gap: 60px; padding-bottom: 55px; }
.site-footer a, .site-footer span { display: block; margin: 8px 0; }
.site-footer a:hover { color: white; }
.brand--footer { margin-bottom: 20px; }
.brand--footer .brand-name { color: #a8dce0; }
.brand--footer .brand-name > span { display: inline; margin: 0; }
.footer-brand p { max-width: 300px; }
.footer-title { margin-bottom: 16px; color: white; font-size: .74rem; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; }
.footer-bottom span { margin: 0; }

.page-hero { display: flex; min-height: 580px; align-items: flex-end; padding: 160px 0 85px; background-color: var(--cream); }
.page-hero--offer { background: linear-gradient(110deg, rgba(255,250,247,.97), rgba(247,230,224,.9)), url('../images/dezerty.jpg') center/cover; }
.page-hero--contact { background: linear-gradient(110deg, rgba(255,250,247,.98), rgba(247,230,224,.88)), url('../images/makronky.jpg') center/cover; }
.page-hero--simple { min-height: 410px; }
.page-hero-inner { width: min(calc(100% - 48px), 940px); }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero-inner > p:last-child { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }

.gallery-section { background: var(--white); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px; }
.filters a { padding: 9px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .84rem; font-weight: 650; transition: .2s; }
.filters a:hover, .filters a.is-active { border-color: var(--teal); color: white; background: var(--teal); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px 24px; }
.gallery-item { margin: 0; }
.gallery-open { position: relative; display: block; width: 100%; aspect-ratio: 4 / 4.8; overflow: hidden; padding: 0; border: 0; background: var(--cream); cursor: zoom-in; }
.gallery-open img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.gallery-open:hover img { transform: scale(1.04); }
.gallery-plus { position: absolute; display: grid; right: 17px; bottom: 17px; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); font-size: 1.35rem; opacity: 0; transform: translateY(7px); transition: .25s; }
.gallery-open:hover .gallery-plus { opacity: 1; transform: translateY(0); }
.gallery-item figcaption { padding-top: 17px; }
.gallery-item figcaption span { display: block; margin-bottom: 3px; color: var(--coral); font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.gallery-item figcaption strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.gallery-item[hidden] { display: none; }
.empty-state { padding: 60px; background: var(--cream); text-align: center; }
.lightbox { position: fixed; width: min(94vw, 1100px); max-height: 94vh; padding: 0; border: 0; color: white; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(22,27,28,.9); backdrop-filter: blur(5px); }
.lightbox-inner { position: relative; display: grid; place-items: center; min-height: 120px; }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; user-select: none; }
.lightbox-meta { display: flex; justify-content: center; gap: 16px; min-height: 31px; padding-top: 10px; text-align: center; }
.lightbox-meta p { margin: 0; }
.lightbox-meta span { color: rgba(255,255,255,.68); font-size: .82rem; white-space: nowrap; }
.lightbox-close { position: fixed; z-index: 2; top: 24px; right: 28px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; background: rgba(0,0,0,.15); font-size: 1.7rem; cursor: pointer; }
.lightbox-nav { position: absolute; z-index: 2; top: 50%; display: grid; width: 50px; height: 50px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; background: rgba(22,27,28,.6); font-size: 1.35rem; cursor: pointer; transform: translateY(-50%); transition: background .2s, transform .2s; }
.lightbox-nav:hover, .lightbox-nav:focus-visible { background: rgba(22,27,28,.92); transform: translateY(-50%) scale(1.05); }
.lightbox-nav--prev { left: 16px; }
.lightbox-nav--next { right: 16px; }
.lightbox-nav:disabled { display: none; }

.flavours-section { padding: 115px 0; background: var(--cream); }
.flavours-heading { text-align: center; }
.flavours-heading h2 { margin-bottom: 0; }
.cream-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 58px; }
.cream-card { margin: 0; text-align: center; }
.cream-card:nth-child(even) { transform: translateY(18px); }
.cream-image { aspect-ratio: 1; overflow: hidden; border: 8px solid rgba(255,255,255,.72); border-radius: 50%; background: var(--cream-deep); box-shadow: 0 15px 35px rgba(68,45,42,.1); }
.cream-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cream-card:hover .cream-image img { transform: scale(1.06); }
.cream-card figcaption { margin-top: 17px; font-family: var(--serif); font-size: 1.25rem; }
.flavour-note { max-width: 670px; margin: 58px auto 0; color: var(--muted); font-size: .9rem; text-align: center; }
.mini-cta { padding: 75px 0; background: var(--paper); }
.mini-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.mini-cta .eyebrow { margin-bottom: 9px; }
.mini-cta h2 { margin: 0; font-size: clamp(2rem, 3vw, 3.1rem); }

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 8vw, 120px); align-items: start; }
.contact-info { position: sticky; top: 120px; }
.contact-info h2 { font-size: clamp(2.5rem, 4vw, 3.7rem); }
.contact-list { margin: 42px 0; border-top: 1px solid var(--line); }
.contact-list > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list span { display: block; margin-bottom: 5px; color: var(--coral); font-size: .69rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.contact-list a, .contact-list p { display: block; margin: 2px 0; font-family: var(--serif); font-size: 1.16rem; }
.contact-list a:hover { color: var(--teal-dark); }
.contact-tip { padding: 19px 20px; border-left: 3px solid var(--teal); color: var(--muted); background: #f0f8f8; font-size: .86rem; }
.contact-form-wrap { padding: 48px; background: var(--cream); }
.contact-form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-size: .78rem; font-weight: 700; letter-spacing: .035em; }
.contact-form input:not([type=checkbox]), .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #c8bbb5; border-radius: 0; outline: 0; color: var(--ink); background: transparent; font-size: 1rem; font-weight: 400; transition: border-color .2s, background .2s; }
.contact-form input:not([type=checkbox]), .contact-form select { height: 48px; }
.contact-form textarea { min-height: 130px; padding: 12px 0; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); background: rgba(255,255,255,.35); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9a918c; }
.checkbox-label { grid-template-columns: 20px 1fr !important; gap: 10px !important; color: var(--muted) !important; font-size: .76rem !important; font-weight: 400 !important; letter-spacing: 0 !important; line-height: 1.5; }
.checkbox-label input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--teal); }
.checkbox-label a { color: var(--teal-dark); text-decoration: underline; }
.form-submit { justify-self: start; cursor: pointer; }
.form-submit span { margin-left: 20px; font-size: 1.15rem; }
.required-note { margin: -10px 0 0; color: var(--muted); font-size: .72rem; }
.honeypot { position: absolute; left: -9999px; }
.form-errors, .form-success { display: flex; gap: 14px; margin-bottom: 24px; padding: 18px 20px; border: 1px solid #e2b1ae; color: #8d4948; background: #fff4f2; font-size: .86rem; }
.form-errors { display: block; }
.form-errors ul { margin: 8px 0 0; padding-left: 18px; }
.form-success { border-color: #94c3b9; color: #2f7065; background: #effaf7; }
.form-success > span { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; background: #4e9b8d; }
.form-success p { margin: 2px 0 0; }

.legal-copy { max-width: 820px; }
.legal-copy h2 { margin: 42px 0 14px; font-size: 2rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: var(--muted); }
.legal-copy a { color: var(--teal-dark); text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal--delay { --delay: 130ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .section { padding: 90px 0; }
    .main-nav { gap: 22px; }
    .nav-phone { display: none; }
    .hero { min-height: auto; padding-top: 135px; }
    .hero-layout { grid-template-columns: 1fr 1fr; gap: 42px; }
    .hero-badge { right: -10px; width: 124px; height: 124px; padding: 14px; }
    .category-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .craft-layout { gap: 55px; }
    .craft-images { min-height: 560px; }
    .craft-image-main { height: 510px; }
    .craft-image-small { height: 230px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 0; }
    .process-step:nth-child(3) { border-left: 0; }
    .testimonial-layout { gap: 55px; }
    .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-main > div:last-child { display: none; }
    .contact-layout { grid-template-columns: .85fr 1.15fr; gap: 50px; }
    .contact-form-wrap { padding: 35px; }
    .cream-grid { grid-template-columns: repeat(3, 1fr); gap: 34px 28px; }
    .cream-card:nth-child(even) { transform: none; }
}

@media (max-width: 720px) {
    .container, .page-hero-inner { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 72px 0; }
    .site-header { height: 72px; background: rgba(255,250,247,.94); }
    .site-header .brand { position: relative; z-index: 2; }
    .menu-toggle { position: fixed; z-index: 3; top: 14px; right: 16px; display: block; }
    .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
    .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
    .main-nav { position: fixed; z-index: 1; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 20px; min-height: 100dvh; color: var(--ink); background: var(--paper); font-family: var(--serif); font-size: 2rem; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav > a:not(.nav-phone)::after { bottom: 0; }
    .nav-phone { display: block; margin-top: 10px; font-family: var(--sans); font-size: .88rem; }
    .hero { padding: 118px 0 63px; }
    .hero::before, .hero-backdrop { display: none; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-copy { padding: 0; }
    h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { flex-wrap: wrap; gap: 22px; }
    .hero-note { margin-top: 36px; }
    .hero-visual { justify-self: stretch; width: 100%; }
    .hero-image-wrap { aspect-ratio: .9; border-radius: 44% 44% 5px 5px; }
    .hero-image-wrap img { object-position: 50% 28%; }
    .hero-badge { right: 8px; bottom: 28px; width: 116px; height: 116px; padding: 12px; border-width: 6px; }
    .hero-badge strong { font-size: 1.3rem; }
    .section-heading { display: block; margin-bottom: 38px; }
    .section-link { margin-top: 18px; }
    .category-grid, .gallery-grid { grid-template-columns: 1fr; gap: 42px; }
    .category-image, .gallery-open { aspect-ratio: 4 / 4.2; }
    .craft-layout { grid-template-columns: 1fr; gap: 55px; }
    .craft-images { min-height: 510px; }
    .craft-image-main { width: 83%; height: 450px; }
    .craft-image-small { width: 47%; height: 200px; border-width: 8px; }
    .craft-script { display: none; }
    .process-grid { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
    .process-step { padding: 28px 8px; border-bottom: 1px solid var(--line); }
    .process-step + .process-step { border-left: 0; }
    .testimonial-layout { grid-template-columns: 1fr; gap: 10px; min-height: 610px; }
    .testimonial-intro h2 { margin-bottom: 24px; }
    .testimonial-slider { min-height: 320px; }
    .testimonial p { font-size: 1.45rem; }
    .cta-section { padding: 80px 0; }
    .footer-main { grid-template-columns: 1fr; gap: 35px; }
    .footer-main > div:last-child { display: block; }
    .footer-bottom { display: block; }
    .footer-bottom span + span { margin-top: 5px; }
    .page-hero { min-height: 500px; padding: 135px 0 65px; }
    .page-hero--simple { min-height: 340px; }
    .filters { flex-wrap: nowrap; overflow-x: auto; margin-right: -16px; margin-left: -16px; padding: 0 16px 8px; scrollbar-width: none; }
    .filters a { flex: 0 0 auto; }
    .cream-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; margin-top: 40px; }
    .cream-image { border-width: 6px; }
    .flavour-note { margin-top: 42px; }
    .mini-cta-inner { display: block; }
    .mini-cta .button { margin-top: 28px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info { position: static; }
    .contact-form-wrap { margin-right: -16px; margin-left: -16px; padding: 30px 16px; }
    .form-row { grid-template-columns: 1fr; }
    .lightbox { width: 100vw; max-width: 100vw; }
    .lightbox img { max-height: 76vh; }
    .lightbox-close { top: 13px; right: 13px; width: 44px; height: 44px; background: rgba(22,27,28,.7); }
    .lightbox-nav { width: 45px; height: 45px; }
    .lightbox-nav--prev { left: 8px; }
    .lightbox-nav--next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
