:root {
    --cream: #ffffff;
    --paper: #f5f1ef;
    --white: #ffffff;
    --espresso: #171515;
    --brown: #423d39;
    --muted: #6f6863;
    --coral: #ff7f91;
    --coral-dark: #ed637d;
    --line: rgba(23, 21, 21, .14);
    --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    --container: min(1240px, calc(100vw - 64px));
    --section: clamp(76px, 8vw, 120px);
    --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--espresso); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--coral); color: var(--espresso); }
.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: 1000; left: 16px; top: -80px; padding: 12px 18px; background: var(--espresso); color: white; transition: top .2s; }
.skip-link:focus { top: 16px; }

.announcement { min-height: 32px; padding: 7px 24px; text-align: center; background: var(--coral); color: var(--espresso); font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.announcement-demo { background: var(--espresso); color: var(--white); }
.announcement a { margin-left: 8px; text-underline-offset: 3px; }
.site-header { position: sticky; z-index: 50; top: 0; height: 82px; padding: 0 max(24px, calc((100vw - 1360px) / 2)); display: grid; grid-template-columns: 150px 1fr 190px; align-items: center; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(23,21,21,.97); color: var(--white); backdrop-filter: blur(12px); transition: box-shadow .2s; }
.site-header.is-sticky { box-shadow: 0 10px 30px rgba(23,21,21,.18); }
.brand { width: 62px; justify-self: start; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 2.2vw, 34px); }
.site-nav a { position: relative; color: var(--white); text-decoration: none; font-size: .78rem; font-weight: 650; letter-spacing: .025em; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--coral-dark); transition: right .2s; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.header-cta { justify-self: end; min-height: 42px; padding: 10px 15px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--coral); border-radius: 8px; background: var(--coral); color: var(--espresso); line-height: 1; text-decoration: none; white-space: nowrap; font-size: .78rem; font-weight: 750; }
.header-cta span { margin: 0; color: var(--espresso); line-height: 1; transform: none; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 620; line-height: 1.04; letter-spacing: -.035em; }
h1 em, h2 em { color: inherit; font-style: normal; font-weight: inherit; }
.section { width: var(--container); margin-inline: auto; padding-block: var(--section); }
.section-tight { padding-top: 0; }
.eyebrow { display: inline-block; margin-bottom: 18px; color: var(--coral-dark); font-size: .75rem; font-weight: 750; letter-spacing: .16em; }
.eyebrow-light { color: #ffa5b5; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 20px; border: 1px solid transparent; border-radius: 8px; font-size: .82rem; font-weight: 700; letter-spacing: .01em; text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.button span { margin-left: 9px; }
.button-coral { background: var(--coral-dark); color: var(--white); }
.button-coral:hover { background: #c74762; }
.button-dark { background: var(--espresso); color: var(--white); }
.button-dark:hover { background: var(--brown); }
.button-outline { border-color: var(--espresso); background: transparent; }
.button-outline:hover { background: var(--espresso); color: var(--white); }
.button-cream { background: var(--white); color: var(--espresso); }
.text-link { display: inline-flex; gap: 9px; align-items: center; padding-bottom: 3px; border-bottom: 1px solid currentColor; text-decoration: none; font-size: .84rem; font-weight: 700; }
.text-link-light { align-self: flex-start; margin-top: 14px; color: var(--white); }

.home-hero { min-height: min(680px, calc(100vh - 114px)); display: grid; grid-template-columns: minmax(440px,.88fr) minmax(0,1.12fr); overflow: hidden; border-bottom: 1px solid var(--line); background: var(--white); }
.hero-image-wrap { grid-column: 2; grid-row: 1; min-height: 580px; position: relative; overflow: hidden; background: var(--paper); }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 58%; }
.hero-copy { grid-column: 1; grid-row: 1; align-self: center; padding: clamp(48px, 6vw, 96px) clamp(36px, 6vw, 96px) clamp(48px, 6vw, 96px) max(32px, calc((100vw - 1360px) / 2)); }
.hero-copy h1 { max-width: 620px; margin-bottom: 24px; font-size: clamp(3.2rem, 5.2vw, 6.2rem); }
.hero-copy p { max-width: 560px; color: var(--brown); font-size: clamp(1rem, 1.15vw, 1.14rem); }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.trust-bar { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); }
.trust-bar div { min-height: 118px; padding: 26px 28px; display: grid; align-content: center; border-right: 1px solid var(--line); }
.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { font-size: 1.1rem; font-weight: 700; }
.trust-bar span { margin-top: 2px; color: var(--muted); font-size: .78rem; }

.story-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(420px,1.08fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.story-copy h2, .section-heading h2, .editorial-title h2, .form-intro h2 { margin-bottom: 26px; font-size: clamp(2.7rem, 4.4vw, 5rem); }
.story-copy > p { max-width: 610px; color: var(--brown); font-size: 1.03rem; }
.check-list { margin: 28px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: 13px 0 13px 24px; border-bottom: 1px solid var(--line); font-size: .88rem; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--coral-dark); }
.story-photo { margin: 0; }
.story-photo img { aspect-ratio: 1.16; object-fit: cover; border-radius: var(--radius); }
.story-photo figcaption { padding-top: 10px; color: var(--muted); font-size: .76rem; text-align: right; }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; padding-bottom: 34px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.section-heading h2 { max-width: 820px; margin: 0; }
.section-heading > p { width: min(390px,100%); margin: 0; color: var(--muted); }

.discover-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.discover-grid a { min-height: 290px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.discover-grid a:hover { border-color: rgba(23,21,21,.35); box-shadow: 0 16px 40px rgba(23,21,21,.08); }
.discover-grid span, .guide-cards span { color: var(--coral-dark); font-size: .75rem; font-weight: 750; letter-spacing: .13em; }
.discover-grid h3 { margin: auto 0 16px; font-size: clamp(1.8rem, 2.6vw, 3rem); }
.discover-grid p { max-width: 340px; color: var(--muted); font-size: .88rem; }
.discover-grid b { margin-top: 10px; font-size: .75rem; font-weight: 700; }

.flavour-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px 16px; }
.flavour-card { min-width: 0; }
.flavour-media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--paper); }
.flavour-media img { aspect-ratio: 1.18; object-fit: cover; transition: transform .35s ease; }
.flavour-card:hover img { transform: scale(1.02); }
.flavour-media span { position: absolute; left: 12px; top: 12px; min-width: 34px; height: 30px; padding-inline: 9px; display: grid; place-items: center; border-radius: 7px; background: rgba(255,255,255,.92); font-size: .75rem; font-weight: 700; }
.flavour-meta { padding: 16px 2px 0; }
.flavour-meta small { color: var(--coral-dark); font-size: .75rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.flavour-meta h3 { margin: 7px 0 9px; font-size: clamp(1.45rem, 2vw, 2.2rem); }
.flavour-meta p { max-width: 360px; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.manifesto { min-height: 620px; display: grid; grid-template-columns: 1.08fr .92fr; background: var(--espresso); color: var(--white); }
.manifesto-image { min-height: 540px; overflow: hidden; }
.manifesto-image img { height: 100%; object-fit: cover; }
.manifesto-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 105px); }
.manifesto-copy h2 { max-width: 620px; margin: 0 0 24px; font-size: clamp(2.4rem, 3.8vw, 4.4rem); }
.manifesto-copy p { max-width: 550px; margin-bottom: 14px; color: #cfc9c5; font-size: 1rem; }
.branch-strip { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 24px 16px; }
.branch-mini { grid-column: span 2; min-width: 0; text-decoration: none; overflow: hidden; }
.branch-mini:nth-last-child(-n+2) { grid-column: span 3; }
.branch-mini img { height: 260px; object-fit: cover; object-position: center 55%; border-radius: 12px; filter: saturate(.92); transition: filter .25s, transform .25s; }
.branch-mini:hover img { filter: saturate(1.04); }
.branch-mini div { padding: 15px 3px 4px; }
.branch-mini small { display: block; color: var(--muted); font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.branch-mini h3 { margin: 7px 0 12px; font-size: clamp(1.25rem, 1.7vw, 1.8rem); }
.branch-mini span { font-size: .8rem; font-weight: 700; }
.franchise-band { min-height: 320px; padding: clamp(54px, 7vw, 96px) max(32px, calc((100vw - 1240px) / 2)); display: flex; justify-content: space-between; align-items: center; gap: 48px; background: var(--coral-dark); color: var(--white); }
.franchise-band h2 { max-width: 900px; margin: 0; font-size: clamp(2.6rem, 4.5vw, 5.2rem); }

.page-hero { min-height: 520px; position: relative; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--espresso); }
.page-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,15,15,.82) 0%, rgba(17,15,15,.48) 52%, rgba(17,15,15,.18) 100%), linear-gradient(0deg, rgba(17,15,15,.38), transparent 45%); }
.page-hero-copy { position: relative; z-index: 1; width: var(--container); margin-inline: auto; padding-bottom: clamp(52px, 7vw, 84px); }
.page-hero h1 { max-width: 920px; margin-bottom: 22px; font-size: clamp(3.1rem, 5.8vw, 6.7rem); }
.page-hero p { max-width: 660px; margin: 0; color: #e7e3e0; font-size: 1.05rem; }
.editorial-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(52px, 9vw, 130px); }
.editorial-title h2 { margin: 0; }
.editorial-copy { padding-top: 36px; color: var(--brown); }
.editorial-copy .lead { color: var(--espresso); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.35; font-weight: 560; }
.editorial-copy blockquote { margin: 36px 0 0; padding: 20px 0; border-block: 1px solid var(--line); color: var(--coral-dark); font-size: 1.2rem; }
.values-grid, .process { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.values-grid article, .process article { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.values-grid span, .process span { color: var(--coral-dark); font-size: .75rem; font-weight: 750; letter-spacing: .12em; }
.values-grid h3, .process h3 { margin: 62px 0 15px; font-size: 1.9rem; }
.values-grid p, .process p { color: var(--muted); font-size: .88rem; }
.image-duo { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.image-duo img { height: min(560px,52vw); object-fit: cover; border-radius: var(--radius); }
.soft-cta { padding: clamp(64px, 8vw, 110px) 32px; text-align: center; background: var(--paper); }
.soft-cta > span { color: var(--coral-dark); font-size: .75rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.soft-cta h2 { max-width: 790px; margin: 16px auto 30px; font-size: clamp(2.35rem, 4.2vw, 4.5rem); }

.branch-list { padding-top: 80px; }
.branch-row { display: grid; grid-template-columns: 38px 170px 1.35fr .9fr .55fr; gap: 26px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.branch-row:first-of-type { border-top: 1px solid var(--line); }
.branch-number { color: var(--coral-dark); font-size: .75rem; font-weight: 750; }
.branch-row img { width: 170px; height: 132px; object-fit: cover; border-radius: 10px; }
.branch-row-main small { color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.branch-row-main h2 { margin: 7px 0; font-size: clamp(1.8rem, 2.7vw, 3.1rem); }
.branch-row-main p { margin: 0; color: var(--muted); font-size: .8rem; }
.branch-row-info { display: grid; gap: 11px; color: var(--brown); font-size: .82rem; }
.branch-row-actions { display: grid; justify-items: end; gap: 11px; font-size: .75rem; font-weight: 700; }
.branch-row-actions a { text-underline-offset: 5px; }
.branch-detail-hero { min-height: 560px; display: grid; grid-template-columns: 1fr minmax(380px,46%); overflow: hidden; background: var(--espresso); color: var(--white); }
.branch-detail-hero > img { grid-column: 2; grid-row: 1; height: 560px; object-fit: cover; }
.branch-detail-title { grid-column: 1; grid-row: 1; align-self: center; width: min(620px, calc(100% - 64px)); margin-left: max(32px, calc((100vw - 1240px) / 2)); }
.branch-detail-title span { font-size: .75rem; letter-spacing: .15em; }
.branch-detail-title h1 { margin: 14px 0 10px; font-size: clamp(3.5rem, 6vw, 7rem); }
.branch-detail-title p { color: #d6d0cc; }
.branch-contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: start; }
.branch-contact h2 { font-size: clamp(2.8rem, 4.8vw, 5.4rem); }
.branch-contact > div > p { max-width: 600px; color: var(--muted); }
.branch-contact dl { margin: 0; border-top: 1px solid var(--line); }
.branch-contact dl div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.branch-contact dt { color: var(--coral-dark); font-size: .75rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.branch-contact dd { margin: 0; }
.branch-contact > .button { grid-column: 2; justify-self: start; margin-top: -48px; }
.gallery-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 14px; }
.gallery-grid img { height: 400px; object-fit: cover; border-radius: 10px; }
.guide-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.guide-cards article { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.guide-cards h3 { margin: 58px 0 16px; font-size: clamp(1.75rem, 2.6vw, 2.8rem); }
.guide-cards p { margin: 0; color: var(--muted); font-size: .88rem; }
.content-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.content-gallery figure { margin: 0; }
.content-gallery img { aspect-ratio: 1.12; object-fit: cover; border-radius: 10px; }
.content-gallery figcaption { padding: 11px 2px 0; color: var(--muted); font-size: .78rem; }
.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 120px); }
.faq-section h2 { font-size: clamp(2.4rem, 3.7vw, 4rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 21px 45px 21px 0; cursor: pointer; list-style: none; font-size: 1.12rem; line-height: 1.35; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--coral-dark); font-size: 1.3rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 40px 22px 0; margin: 0; color: var(--muted); }
.faq-list details p a { color: var(--espresso); text-underline-offset: 4px; }
.process { grid-template-columns: repeat(4,1fr); }
.process article { min-height: 245px; }
.process h3 { margin-top: 50px; font-size: 1.7rem; }
.form-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 8vw, 120px); border-top: 1px solid var(--line); }
.form-intro { position: sticky; top: 110px; align-self: start; }
.form-intro p { max-width: 430px; color: var(--muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; outline: none; background: var(--white); color: var(--espresso); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { border-color: var(--coral-dark); box-shadow: 0 0 0 3px rgba(217,85,112,.12); }
.field textarea { resize: vertical; }
.form-foot { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-top: 10px; }
.form-foot p { max-width: 430px; margin: 0; color: var(--muted); font-size: .75rem; }
.honey { position: absolute !important; left: -10000px !important; }
.alert { margin-bottom: 26px; padding: 16px 18px; border: 1px solid; border-radius: 8px; font-size: .88rem; }
.alert.success { border-color: #4d7253; background: #edf6ed; color: #294b30; }
.alert.error { border-color: #a45b5b; background: #fff0f0; color: #743838; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding-top: 80px; }
.contact-cards a { min-height: 210px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.contact-cards a:hover { border-color: rgba(23,21,21,.35); box-shadow: 0 14px 36px rgba(23,21,21,.07); }
.contact-cards small { color: var(--coral-dark); font-size: .75rem; font-weight: 750; letter-spacing: .12em; }
.contact-cards strong { margin: auto 0; font-size: clamp(1.25rem, 1.8vw, 1.8rem); font-weight: 650; }
.contact-cards span { font-size: .75rem; text-decoration: underline; text-underline-offset: 4px; }
.not-found { min-height: 65vh; display: grid; align-content: center; justify-items: start; }
.not-found h1 { margin-bottom: 18px; font-size: clamp(3.5rem, 7vw, 7.5rem); }
.not-found p { color: var(--muted); }

.site-footer { display: grid; grid-template-columns: 1.35fr .55fr .65fr .8fr; gap: 50px; padding: 72px max(32px, calc((100vw - 1240px) / 2)) 26px; background: var(--espresso); color: var(--white); }
.footer-mark img { width: 96px; height: 96px; object-fit: contain; }
.footer-mark p { max-width: 380px; margin-top: 22px; color: #bdb6b1; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col span { margin-bottom: 10px; color: #ffa5b5; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { width: fit-content; color: #ece8e5; text-decoration: none; font-size: .84rem; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { grid-column: 1 / -1; margin-top: 44px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); color: #aaa29d; font-size: .75rem; letter-spacing: .03em; }

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    :root { --container: min(100% - 40px, 1040px); }
    .site-header { grid-template-columns: 90px 1fr 180px; padding-inline: 22px; }
    .site-nav { gap: 12px; }
    .site-nav a { font-size: .75rem; }
    .home-hero { grid-template-columns: minmax(380px,.9fr) 1.1fr; }
    .hero-copy { padding: 48px 42px; }
    .branch-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .branch-mini, .branch-mini:nth-last-child(-n+2) { grid-column: auto; }
    .branch-mini:last-child { grid-column: 1 / -1; }
    .branch-row { grid-template-columns: 34px 145px 1fr .8fr; }
    .branch-row img { width: 145px; height: 124px; }
    .branch-row-actions { grid-column: 3 / -1; grid-row: 2; display: flex; justify-self: start; }
}

@media (max-width: 920px) {
    :root { --container: calc(100% - 32px); --section: 72px; }
    .announcement { font-size: .75rem; letter-spacing: .05em; }
    .site-header, .site-header.is-sticky { height: 72px; grid-template-columns: 1fr auto; padding-inline: 16px; backdrop-filter: none; }
    .brand { position: relative; z-index: 3; }
    .brand img { width: 54px; height: 54px; }
    .menu-toggle { display: grid; gap: 5px; z-index: 3; }
    .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: var(--white); transition: transform .2s, opacity .2s; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .site-nav { position: fixed; z-index: 2; inset: 0; min-height: 100vh; min-height: 100dvh; padding: 122px 28px 40px; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 19px; background: var(--espresso); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: .2s; }
    .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .site-nav a { font-size: 1.8rem; line-height: 1.15; font-weight: 620; }
    .site-nav a::after { bottom: -3px; }
    .header-cta { display: none; }
    .home-hero { min-height: 0; display: flex; flex-direction: column; }
    .hero-image-wrap { min-height: 0; height: clamp(300px, 62vw, 440px); order: 1; }
    .hero-copy { order: 2; padding: 48px 20px 58px; }
    .hero-copy h1 { font-size: clamp(2.8rem, 12vw, 4.8rem); }
    .trust-bar { grid-template-columns: 1fr; }
    .trust-bar div { min-height: 88px; padding: 20px 6px; border-right: 0; border-bottom: 1px solid var(--line); }
    .story-grid, .manifesto, .editorial-split, .form-section, .branch-contact { grid-template-columns: 1fr; }
    .story-grid { gap: 55px; }
    .flavour-grid { grid-template-columns: 1fr 1fr; }
    .discover-grid, .guide-cards { grid-template-columns: 1fr; }
    .discover-grid a { min-height: 240px; }
    .guide-cards article { min-height: 230px; }
    .guide-cards h3 { margin-top: 40px; }
    .content-gallery { grid-template-columns: 1fr 1fr; }
    .content-gallery figure:first-child { grid-column: 1 / -1; }
    .faq-section { grid-template-columns: 1fr; gap: 26px; }
    .manifesto-image { min-height: 430px; }
    .manifesto-copy { padding: 60px 24px; }
    .branch-strip { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); overflow: visible; }
    .branch-mini, .branch-mini:nth-last-child(-n+2) { grid-column: auto; min-width: 0; }
    .branch-mini:last-child { grid-column: 1 / -1; }
    .branch-mini img { height: 230px; }
    .branch-mini:last-child img { height: 300px; }
    .franchise-band { align-items: flex-start; flex-direction: column; }
    .page-hero { min-height: 470px; }
    .page-hero h1 { font-size: clamp(3rem, 12vw, 5.2rem); }
    .editorial-copy { padding-top: 0; }
    .values-grid, .process { grid-template-columns: 1fr 1fr; }
    .image-duo { grid-template-columns: 1fr; }
    .image-duo img { height: 410px; }
    .branch-row { grid-template-columns: 30px 105px 1fr; gap: 15px; }
    .branch-row img { width: 105px; height: 116px; }
    .branch-row-info, .branch-row-actions { grid-column: 3; }
    .branch-detail-hero { min-height: 0; display: flex; flex-direction: column; }
    .branch-detail-hero > img { order: 1; width: 100%; height: 52vh; }
    .branch-detail-title { order: 2; width: auto; margin: 0; padding: 50px 20px 56px; }
    .branch-contact > .button { grid-column: 1; margin-top: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid img:first-child { grid-column: 1 / -1; }
    .form-intro { position: static; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-cards a { min-height: 170px; }
    .site-footer { grid-template-columns: 1fr 1fr; gap: 46px 28px; }
    .footer-mark { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    :root { --container: calc(100% - 28px); }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
    .story-copy h2, .section-heading h2, .editorial-title h2, .form-intro h2 { font-size: clamp(2.25rem, 10.5vw, 3.4rem); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .flavour-grid { grid-template-columns: 1fr; }
    .flavour-media img { aspect-ratio: 1.25; }
    .branch-strip { grid-template-columns: 1fr; gap: 26px; }
    .branch-mini:last-child { grid-column: auto; }
    .branch-mini img, .branch-mini:last-child img { height: auto; aspect-ratio: 16 / 10; }
    .values-grid, .process { grid-template-columns: 1fr; }
    .values-grid article, .process article { min-height: 210px; }
    .values-grid h3, .process h3 { margin-top: 38px; }
    .branch-row { grid-template-columns: 28px 1fr; }
    .branch-row img { grid-column: 2; width: 100%; height: 220px; }
    .branch-row-main, .branch-row-info, .branch-row-actions { grid-column: 2; }
    .branch-contact dl div { grid-template-columns: 1fr; gap: 5px; }
    .gallery-grid, .content-gallery { grid-template-columns: 1fr; }
    .gallery-grid img, .gallery-grid img:first-child, .content-gallery figure:first-child { grid-column: 1; height: 310px; }
    .contact-form { grid-template-columns: 1fr; }
    .field-wide { grid-column: 1; }
    .form-foot { align-items: stretch; flex-direction: column; }
    .form-foot .button { width: 100%; }
    .site-footer { grid-template-columns: 1fr; }
    .footer-mark { grid-column: 1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
