:root {
    --ink: #101010;
    --paper: #f7f0e6;
    --cream: #fffaf1;
    --white: #ffffff;
    --orange: #ff6b1a;
    --orange-dark: #e34c00;
    --blue: #57d8e6;
    --blue-dark: #115778;
    --lime: #c7f05b;
    --muted: #736b63;
    --line: rgba(16, 16, 16, 0.16);
    --shadow: 0 24px 70px rgba(18, 13, 8, 0.16);
    --radius: 28px;
    --container: min(1180px, calc(100% - 40px));
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--body);
    line-height: 1.55;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--blue); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 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;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 14px;
    background: var(--white);
    transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

/* Shared type */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 0.98; }
h1, h2 {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 900;
}
h1 { font-size: clamp(4rem, 8vw, 7.6rem); }
h2 { font-size: clamp(3rem, 5.6vw, 5.4rem); }
h3 { font-size: 1.55rem; }
em { color: var(--orange); font-style: normal; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--cream);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 36px; height: 3px; background: var(--orange); }
.eyebrow.dark { color: var(--ink); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    font-weight: 900;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 4px;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 0 rgba(16,16,16,.12); }
.button-hot { color: var(--ink); background: var(--orange); }
.button-hot:hover { background: var(--lime); }
.button-light { color: var(--ink); background: var(--cream); }
.button-outline { color: var(--ink); background: transparent; }
.button-sm { min-height: 42px; padding-inline: 18px; font-size: .88rem; }
.button-block { width: 100%; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
    padding: 8px 0;
    background: rgba(255,250,241,.92);
    box-shadow: 0 10px 40px rgba(16,16,16,.08);
    backdrop-filter: blur(16px);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; border: 3px solid var(--white); }
.brand span { display: grid; }
.brand strong { font-family: var(--display); font-size: 1.35rem; letter-spacing: .04em; }
.brand small { font-size: .62rem; text-transform: uppercase; font-weight: 800; letter-spacing: .14em; color: var(--muted); }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > a:not(.button) { position: relative; font-size: .91rem; font-weight: 800; }
.primary-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.primary-nav > a.active::after,
.primary-nav > a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; background: var(--ink); }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--white); }

/* Hero */
.hero {
    position: relative;
    min-height: 850px;
    padding: 145px 0 0;
    color: var(--cream);
    background: var(--ink);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -220px;
    top: 130px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: url('../images/wood-texture.webp');
    background-size: cover;
    mix-blend-mode: screen;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 40px;
    min-height: 650px;
}
.hero-copy { padding-bottom: 68px; }
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy p { max-width: 640px; color: rgba(255,250,241,.75); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { font-size: 1.35rem; }
.hero-proof span { color: rgba(255,255,255,.55); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-art {
    position: relative;
    min-height: 600px;
    border-radius: 44px 44px 0 0;
    background: var(--blue);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-art::before {
    content: "";
    position: absolute;
    inset: 26px;
    border: 2px solid var(--ink);
    border-radius: 28px 28px 0 0;
}
.hero-logo-card {
    position: absolute;
    top: 48px;
    left: 48px;
    z-index: 3;
    width: 142px;
    height: 142px;
    padding: 10px;
    background: var(--white);
    border: 3px solid var(--ink);
    border-radius: 50%;
    transform: rotate(-6deg);
}
.hero-logo-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-word {
    position: absolute;
    left: 42px;
    top: 208px;
    z-index: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
    font-family: var(--display);
    font-size: clamp(5.8rem, 10vw, 9rem);
    letter-spacing: -.03em;
    transform: rotate(-4deg);
}
.hero-coffee { position: absolute; width: 410px; right: -62px; bottom: -18px; z-index: 3; filter: drop-shadow(0 30px 25px rgba(0,0,0,.25)); transform: rotate(-10deg); }
.hero-donut { position: absolute; width: 190px; left: 60px; bottom: 64px; z-index: 4; filter: drop-shadow(0 20px 18px rgba(0,0,0,.2)); transform: rotate(12deg); }
.hero-cookie { position: absolute; width: 130px; right: 35px; top: 85px; z-index: 4; filter: drop-shadow(0 18px 14px rgba(0,0,0,.18)); transform: rotate(18deg); }
.hero-stamp {
    position: absolute;
    right: 42px;
    top: 42px;
    z-index: 5;
    padding: 14px 16px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    font-family: var(--display);
    text-align: center;
    line-height: 1;
    transform: rotate(8deg);
}
.hero-note {
    position: absolute;
    left: 225px;
    bottom: 80px;
    z-index: 5;
    padding: 10px 14px;
    color: var(--cream);
    background: var(--ink);
    font-family: var(--display);
    line-height: 1;
    transform: rotate(-7deg);
}
.ticker {
    position: relative;
    z-index: 5;
    overflow: hidden;
    padding: 18px 0;
    color: var(--ink);
    background: var(--orange);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    white-space: nowrap;
}
.ticker div { width: max-content; font-family: var(--display); font-size: 1.4rem; letter-spacing: .08em; animation: ticker 24s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Section headings */
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 480px; color: var(--muted); }
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

/* Intro */
.intro-section { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 110px 1.25fr .75fr; gap: 50px; align-items: start; }
.section-kicker { display: flex; flex-direction: column; align-items: center; gap: 20px; color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .14em; writing-mode: vertical-rl; }
.vertical-line { width: 1px; height: 180px; background: var(--line); }
.intro-heading h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 5.2rem); }
.intro-copy { padding-top: 4px; }
.intro-copy p { color: var(--muted); font-size: 1.03rem; }

/* Menu preview */
.menu-preview { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-stack { border-top: 2px solid var(--ink); }
.menu-row {
    display: grid;
    grid-template-columns: 70px 1fr 1.2fr 42px;
    align-items: center;
    gap: 24px;
    min-height: 126px;
    border-bottom: 1px solid var(--line);
    transition: padding .25s ease, background .25s ease;
}
.menu-row:hover { padding-inline: 18px; background: var(--lime); }
.menu-number { color: var(--muted); font-weight: 900; }
.menu-title h3 { margin-bottom: 0; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.5rem); text-transform: uppercase; }
.menu-row p { margin-bottom: 0; color: var(--muted); }
.menu-arrow { font-size: 2rem; transition: transform .2s ease; }
.menu-row:hover .menu-arrow { transform: rotate(45deg); }

/* Franchise teaser */
.franchise-teaser { color: var(--cream); background: var(--ink); }
.franchise-teaser-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.franchise-poster { position: relative; min-height: 620px; overflow: hidden; color: var(--ink); background: var(--orange); border-radius: 36px; border: 3px solid var(--cream); }
.poster-top { padding: 22px 28px; font-weight: 900; letter-spacing: .13em; border-bottom: 3px solid var(--ink); }
.poster-big { position: relative; z-index: 2; padding: 42px 35px; font-family: var(--display); font-size: clamp(5rem, 9vw, 8.4rem); line-height: .83; }
.poster-circle { position: absolute; top: 84px; right: 28px; z-index: 3; display: grid; place-items: center; width: 130px; height: 130px; border: 3px solid var(--ink); border-radius: 50%; font-family: var(--display); font-size: 1.5rem; line-height: .95; text-align: center; transform: rotate(8deg); background: var(--blue); }
.franchise-poster img { position: absolute; right: -60px; bottom: -55px; width: 300px; filter: drop-shadow(0 25px 22px rgba(0,0,0,.25)); transform: rotate(-16deg); }
.franchise-copy h2 { margin-bottom: 26px; }
.franchise-copy > p { max-width: 650px; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.feature-list { display: grid; gap: 15px; margin: 32px 0; }
.feature-list.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-list div { display: flex; gap: 12px; color: rgba(255,255,255,.84); font-weight: 700; }
.feature-list span { display: grid; place-items: center; flex: 0 0 24px; width: 24px; height: 24px; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: .78rem; }
.investment-callout { display: grid; gap: 4px; margin: 36px 0; padding: 28px; color: var(--ink); background: var(--blue); border: 2px solid var(--cream); border-radius: 22px; }
.investment-callout span { font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.investment-callout strong { font-family: var(--display); font-size: clamp(3rem, 5vw, 5rem); line-height: 1; }
.investment-callout small { color: rgba(16,16,16,.68); }

/* Support cards */
.support-strip { background: var(--cream); }
.support-cards { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); border-radius: 30px; overflow: hidden; }
.support-card { min-height: 300px; padding: 30px; border-right: 1px solid var(--ink); background: var(--white); transition: background .22s ease; }
.support-card:last-child { border-right: 0; }
.support-card:hover { background: var(--blue); }
.support-card > span { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: 50%; font-weight: 900; }
.support-card h3 { margin: 72px 0 12px; font-family: var(--display); font-size: 2.7rem; text-transform: uppercase; }
.support-card p { color: var(--muted); }

/* Enquiry */
.enquiry-section { background: var(--paper); }
.enquiry-card { display: grid; grid-template-columns: .82fr 1.18fr; gap: 55px; padding: 58px; color: var(--cream); background: var(--ink); border-radius: 38px; box-shadow: var(--shadow); }
.enquiry-copy h2 { margin-bottom: 24px; }
.enquiry-copy > p { color: rgba(255,255,255,.68); }
.direct-call { display: grid; gap: 4px; margin-top: 40px; }
.direct-call span { color: rgba(255,255,255,.55); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.direct-call a { color: var(--blue); font-family: var(--display); font-size: 2.1rem; }
.enquiry-form { padding: 30px; color: var(--ink); background: var(--cream); border-radius: 25px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span { font-size: .78rem; font-weight: 900; }
.form-wide { grid-column: 1 / -1; }
input, select, textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(16,16,16,.25);
    border-radius: 12px;
    outline: none;
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,26,.14); }
.enquiry-form .button { margin-top: 20px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Page heroes */
.page-hero { position: relative; min-height: 680px; padding: 160px 0 100px; color: var(--cream); background: var(--ink); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: auto -10% -55% auto; width: 650px; height: 650px; border-radius: 50%; background: var(--orange); opacity: .95; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { max-width: 620px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.menu-page-hero { background: var(--blue-dark); }
.menu-page-hero::after { background: var(--lime); }
.menu-hero-art { position: relative; min-height: 480px; z-index: 3; }
.menu-hero-art::before { content: ""; position: absolute; inset: 50px 30px; background: var(--orange); border: 3px solid var(--ink); border-radius: 44% 56% 43% 57% / 53% 39% 61% 47%; transform: rotate(-8deg); }
.menu-hero-coffee { position: absolute; right: 0; bottom: 5px; width: 400px; z-index: 4; filter: drop-shadow(0 28px 20px rgba(0,0,0,.28)); }
.menu-hero-donut { position: absolute; left: 18px; bottom: 45px; width: 190px; z-index: 5; transform: rotate(-12deg); filter: drop-shadow(0 22px 18px rgba(0,0,0,.25)); }
.scribble { position: absolute; top: 5px; left: 40px; z-index: 6; font-family: cursive; font-size: 3.5rem; transform: rotate(-12deg); }
.scribble.second { top: auto; left: auto; right: 0; bottom: 30px; color: var(--ink); }

/* Menu catalogue */
.menu-catalogue { background: var(--cream); }
.category-panel { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 45px; align-items: center; min-height: 310px; padding: 48px 0; border-top: 2px solid var(--ink); }
.category-panel:last-of-type { border-bottom: 2px solid var(--ink); }
.category-number { display: grid; place-items: center; width: 82px; height: 82px; border: 2px solid var(--ink); border-radius: 50%; font-family: var(--display); font-size: 2.3rem; }
.category-main h2 { margin: 0 0 18px; }
.category-main p { max-width: 540px; color: var(--muted); }
.category-items { display: grid; border-top: 1px solid var(--line); }
.category-items div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 800; }
.category-items span { color: var(--orange-dark); font-size: .72rem; }
.menu-disclaimer { margin: 28px 0 0; color: var(--muted); font-size: .86rem; }
.menu-disclaimer code { color: var(--ink); background: var(--paper); padding: 3px 7px; border-radius: 6px; }
.menu-cta { background: var(--orange); }
.split-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.split-cta span { font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.split-cta h2 { max-width: 820px; margin: 8px 0 0; font-size: clamp(3rem, 5vw, 5.2rem); }

/* Franchise page */
.franchise-page-hero { background: var(--blue-dark); }
.franchise-page-hero::after { background: var(--orange); }
.franchise-hero-card { position: relative; z-index: 3; min-height: 420px; padding: 48px; color: var(--ink); background: var(--cream); border: 3px solid var(--ink); border-radius: 34px; transform: rotate(2deg); box-shadow: 18px 18px 0 var(--orange); }
.franchise-hero-card > span { font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.franchise-hero-card > strong { display: block; margin: 42px 0 20px; font-family: var(--display); font-size: clamp(4rem, 7vw, 7rem); line-height: .9; }
.franchise-hero-card p { color: var(--muted); }
.franchise-badge { position: absolute; right: 28px; bottom: 28px; display: grid; place-items: center; width: 120px; height: 120px; color: var(--ink); background: var(--blue); border: 3px solid var(--ink); border-radius: 50%; font-family: var(--display); font-size: 1.45rem; line-height: .95; text-align: center; transform: rotate(-8deg); }
.support-detail { background: var(--cream); }
.support-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 2px solid var(--ink); }
.support-detail-card { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 20px; min-height: 120px; padding: 20px; border-bottom: 1px solid var(--line); }
.support-detail-card:nth-child(odd) { border-right: 1px solid var(--line); }
.support-detail-card span { color: var(--orange-dark); font-weight: 900; }
.support-detail-card h3 { margin: 0; line-height: 1.2; }
.investment-section { color: var(--cream); background: var(--ink); }
.investment-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.investment-intro { position: sticky; top: 110px; }
.investment-intro h2 { margin-bottom: 24px; }
.investment-intro > p { color: rgba(255,255,255,.65); }
.total-box { display: grid; gap: 3px; margin-top: 36px; padding: 28px; color: var(--ink); background: var(--orange); border-radius: 22px; }
.total-box span, .total-box small { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.total-box strong { font-family: var(--display); font-size: 4.3rem; line-height: 1; }
.investment-list { border-top: 2px solid rgba(255,255,255,.8); }
.investment-row { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; min-height: 90px; border-bottom: 1px solid rgba(255,255,255,.18); }
.investment-row span { color: var(--blue); font-size: .78rem; font-weight: 900; }
.investment-row strong { font-size: 1.1rem; }
.investment-row b { color: var(--lime); font-family: var(--display); font-size: 2rem; }
.training-section { background: var(--paper); }
.training-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.training-art { min-height: 500px; padding: 40px; display: flex; flex-direction: column; justify-content: center; color: var(--ink); background: var(--orange); border: 3px solid var(--ink); border-radius: 38px; box-shadow: 20px 20px 0 var(--blue); transform: rotate(-2deg); }
.training-art span { font-family: var(--display); font-size: 11rem; line-height: .7; }
.training-art strong { font-family: var(--display); font-size: 5rem; line-height: .9; }
.training-art em { margin-top: 18px; color: var(--ink); font-weight: 900; text-transform: uppercase; }
.training-copy h2 { margin-bottom: 24px; }
.training-copy > p { color: var(--muted); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-grid span { padding: 10px 16px; border: 2px solid var(--ink); border-radius: 999px; font-weight: 900; background: var(--white); }
.launch-process { background: var(--cream); }
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid var(--ink); }
.process-line article { position: relative; padding: 34px 28px 0 0; }
.process-line article::before { content: ""; position: absolute; top: -10px; left: 0; width: 18px; height: 18px; background: var(--orange); border: 3px solid var(--ink); border-radius: 50%; }
.process-line b { color: var(--orange-dark); }
.process-line h3 { margin: 45px 0 10px; font-family: var(--display); font-size: 2.6rem; text-transform: uppercase; }
.process-line p { color: var(--muted); }
.faq-section { color: var(--cream); background: var(--blue-dark); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro p { color: rgba(255,255,255,.68); }
.faq-item { border-top: 1px solid rgba(255,255,255,.3); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.3); }
.faq-item button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 24px 0; color: var(--cream); background: transparent; border: 0; text-align: left; font-weight: 900; cursor: pointer; }
.faq-item button b { font-size: 1.7rem; transition: transform .25s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: rgba(255,255,255,.68); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 26px; }
.faq-item.open button b { transform: rotate(45deg); }

/* Contact */
.contact-page-hero { background: var(--orange); color: var(--ink); }
.contact-page-hero::after { background: var(--blue); }
.contact-page-hero .eyebrow { color: var(--ink); }
.contact-page-hero .eyebrow::before { background: var(--ink); }
.contact-page-hero p { color: rgba(16,16,16,.68); }
.contact-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.contact-logo { position: relative; z-index: 3; justify-self: center; width: 330px; height: 330px; padding: 18px; background: var(--white); border: 5px solid var(--ink); border-radius: 50%; box-shadow: 24px 24px 0 var(--blue-dark); transform: rotate(6deg); }
.contact-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card { min-height: 230px; padding: 26px; display: flex; flex-direction: column; border: 2px solid var(--ink); border-radius: 22px; background: var(--white); transition: transform .2s ease, background .2s ease; }
.contact-card:hover { transform: translateY(-6px) rotate(-1deg); background: var(--lime); }
.contact-card.social { background: var(--blue); }
.contact-card > span { color: var(--orange-dark); font-weight: 900; }
.contact-card small { margin-top: auto; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.contact-card strong { margin: 7px 0 18px; font-size: 1.2rem; }
.contact-card b { font-size: .82rem; }
.address-panel { padding: 44px; background: var(--paper); border-radius: 30px; }
.address-panel h2 { margin-bottom: 24px; font-size: clamp(2.8rem, 4.8vw, 4.8rem); }
.address-panel p { color: var(--muted); }

/* Status */
.status-banner { position: fixed; top: 94px; left: 50%; z-index: 1200; width: min(760px, calc(100% - 30px)); padding: 14px 20px; border: 2px solid var(--ink); border-radius: 12px; transform: translateX(-50%); font-weight: 800; text-align: center; box-shadow: var(--shadow); }
.status-banner.success { background: var(--lime); }
.status-banner.error { color: var(--white); background: #b92828; }

/* Footer */
.site-footer { padding: 70px 0 28px; color: var(--cream); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { border-radius: 50%; border: 3px solid var(--white); }
.footer-brand h2 { margin: 0; font-size: 2.4rem; }
.footer-brand p { margin: 2px 0 0; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.site-footer h3 { margin-bottom: 18px; color: var(--orange); font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer p { color: rgba(255,255,255,.62); }
.site-footer a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.5); font-size: .78rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 999; display: grid; place-items: center; width: 58px; height: 58px; color: var(--white); background: #20bd5a; border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 12px 36px rgba(0,0,0,.25); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.08) rotate(-5deg); }
.whatsapp-float svg { width: 29px; fill: currentColor; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1050px) {
    .primary-nav { gap: 18px; }
    .hero-grid { grid-template-columns: 1fr; padding-bottom: 0; }
    .hero { padding-top: 130px; }
    .hero-copy { padding-bottom: 15px; }
    .hero-art { min-height: 560px; }
    .intro-grid { grid-template-columns: 80px 1fr; }
    .intro-copy { grid-column: 2; }
    .franchise-teaser-grid,
    .investment-grid,
    .training-grid,
    .faq-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .investment-intro,
    .faq-intro { position: static; }
    .support-cards { grid-template-columns: repeat(2, 1fr); }
    .support-card:nth-child(2) { border-right: 0; }
    .support-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
    .page-hero-grid { grid-template-columns: 1fr; }
    .page-hero { padding-bottom: 70px; }
    .franchise-hero-card { max-width: 720px; }
    .category-panel { grid-template-columns: 80px 1fr; }
    .category-items { grid-column: 2; }
    .enquiry-card { grid-template-columns: 1fr; }
    .contact-grid { gap: 35px; }
}

@media (max-width: 820px) {
    :root { --container: min(100% - 28px, 1180px); }
    .section { padding: 80px 0; }
    .site-header { background: rgba(255,250,241,.94); backdrop-filter: blur(14px); }
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 82px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 0;
        padding: 18px;
        background: var(--cream);
        border: 2px solid var(--ink);
        border-radius: 22px;
        box-shadow: var(--shadow);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
    }
    .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .primary-nav > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
    .primary-nav .button { margin-top: 12px; }
    .brand img { width: 50px; height: 50px; }
    .hero { min-height: auto; }
    .hero-art { min-height: 500px; }
    .hero-coffee { width: 340px; }
    .hero-donut { width: 150px; }
    .hero-cookie { width: 110px; }
    .hero-word { font-size: 6rem; }
    .intro-grid { grid-template-columns: 1fr; gap: 28px; }
    .section-kicker { display: none; }
    .intro-copy { grid-column: auto; }
    .section-heading { align-items: start; flex-direction: column; }
    .menu-row { grid-template-columns: 48px 1fr 34px; gap: 15px; padding: 25px 0; }
    .menu-row p { grid-column: 2; }
    .menu-arrow { grid-column: 3; grid-row: 1; }
    .feature-list.compact { grid-template-columns: 1fr; }
    .support-detail-grid { grid-template-columns: 1fr; }
    .support-detail-card:nth-child(odd) { border-right: 0; }
    .process-line { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-logo { width: 260px; height: 260px; justify-self: start; }
    .split-cta { align-items: start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
    h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
    .hero { padding-top: 118px; }
    .hero-copy p { font-size: .98rem; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .hero-art { min-height: 430px; border-radius: 30px 30px 0 0; }
    .hero-art::before { inset: 16px; }
    .hero-logo-card { top: 32px; left: 30px; width: 100px; height: 100px; }
    .hero-word { left: 24px; top: 160px; font-size: 4.5rem; }
    .hero-coffee { width: 275px; right: -70px; }
    .hero-donut { width: 115px; left: 24px; bottom: 44px; }
    .hero-cookie { width: 82px; right: 26px; top: 54px; }
    .hero-stamp { right: 24px; top: 22px; font-size: .72rem; }
    .hero-note { left: 120px; bottom: 50px; font-size: .72rem; }
    .menu-row { grid-template-columns: 38px 1fr 28px; }
    .franchise-poster { min-height: 500px; }
    .poster-circle { width: 100px; height: 100px; font-size: 1.1rem; }
    .franchise-poster img { width: 220px; }
    .support-cards { grid-template-columns: 1fr; }
    .support-card { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--ink); }
    .support-card:last-child { border-bottom: 0; }
    .support-card h3 { margin-top: 42px; }
    .enquiry-card { padding: 26px; border-radius: 26px; }
    .enquiry-form { padding: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .page-hero { min-height: auto; padding-top: 130px; }
    .menu-hero-art { min-height: 380px; }
    .menu-hero-coffee { width: 290px; right: -50px; }
    .menu-hero-donut { width: 135px; }
    .category-panel { grid-template-columns: 1fr; gap: 18px; padding: 38px 0; }
    .category-items { grid-column: auto; }
    .franchise-hero-card { min-height: 360px; padding: 30px; box-shadow: 10px 10px 0 var(--orange); }
    .franchise-badge { width: 90px; height: 90px; font-size: 1.05rem; }
    .support-detail-card { grid-template-columns: 40px 1fr; padding-inline: 0; }
    .investment-row { grid-template-columns: 34px 1fr; padding: 12px 0; }
    .investment-row b { grid-column: 2; }
    .training-art { min-height: 390px; }
    .training-art span { font-size: 8rem; }
    .training-art strong { font-size: 4rem; }
    .process-line { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-logo { width: 220px; height: 220px; }
    .address-panel { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

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

@media print {
    .site-header { position: absolute; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .whatsapp-float { display: none; }
}

/* Floating navigation capsule keeps the menu readable over dark hero sections. */
.nav-shell {
    padding: 7px 10px 7px 13px;
    background: rgba(255, 250, 241, .94);
    border: 1px solid rgba(16, 16, 16, .12);
    border-radius: 999px;
    box-shadow: 0 12px 38px rgba(0, 0, 0, .12);
    backdrop-filter: blur(16px);
}
.site-header.scrolled {
    background: transparent;
    box-shadow: none;
}
.site-header.scrolled .nav-shell {
    box-shadow: 0 12px 44px rgba(0, 0, 0, .16);
}

@media (max-width: 820px) {
    .site-header { background: transparent; backdrop-filter: none; }
    .nav-shell { border-radius: 24px; }
}
