:root {
  --ink: #241b18;
  --muted: #746d68;
  --line: #ebe7e4;
  --soft: #faf9f8;
  --accent: #dca189;
  --white: #ffffff;
  --max: 1420px;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background:#fff; }
body { margin:0; color:var(--ink); background:#fff; font-family:var(--sans); -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
button,input,select { font:inherit; }
button { color:inherit; }

/* Shared header */
.site-header { position:fixed; inset:0 0 auto 0; height:82px; z-index:50; display:flex; align-items:center; border-bottom:1px solid transparent; background:rgba(255,255,255,.92); backdrop-filter:blur(14px); padding:0 4.5vw; opacity:1; transition:opacity .45s ease, border-color .35s ease, transform .45s ease; }
.site-header.home-hidden { opacity:0; transform:translateY(-12px); pointer-events:none; }
.site-header.home-hidden.visible { opacity:1; transform:none; pointer-events:auto; border-color:var(--line); }
.header-inner { width:100%; max-width:1600px; margin:auto; display:flex; align-items:center; justify-content:space-between; gap:32px; }
.mini-brand { display:flex; align-items:center; gap:12px; min-width:max-content; }
.mini-brand .cake { width:36px; height:36px; object-fit:contain; }
.mini-brand .word { width:112px; height:auto; }
.nav { display:flex; align-items:center; gap:34px; font-size:12px; letter-spacing:.17em; text-transform:uppercase; }
.nav a { position:relative; padding:10px 0; }
.nav a::after { content:""; position:absolute; left:0; bottom:5px; width:0; height:1px; background:var(--ink); transition:width .25s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width:100%; }
.menu-button { display:none; background:none; border:0; padding:10px 0 10px 14px; align-items:center; gap:10px; letter-spacing:.16em; text-transform:uppercase; cursor:pointer; }
.menu-lines { width:30px; display:grid; gap:6px; }
.menu-lines i { display:block; height:1px; background:var(--ink); }
.mobile-menu { position:fixed; inset:0; z-index:80; background:#fff; opacity:0; pointer-events:none; transition:opacity .35s ease; display:flex; flex-direction:column; padding:28px 7vw; }
.mobile-menu.open { opacity:1; pointer-events:auto; }
.mobile-menu-top { display:flex; align-items:center; justify-content:space-between; }
.mobile-menu nav { margin:auto 0; display:grid; gap:28px; }
.mobile-menu nav a { font-family:var(--serif); font-size:clamp(34px,9vw,58px); }
.close-menu { border:0; background:none; font-size:14px; letter-spacing:.14em; text-transform:uppercase; padding:10px; cursor:pointer; }

/* Hero / home */
.hero { min-height:100svh; background:#fff; display:grid; place-items:center; position:relative; overflow:hidden; }
.hero-nav { position:absolute; right:4.5vw; top:25px; display:flex; gap:34px; font-size:11px; letter-spacing:.17em; text-transform:uppercase; z-index:4; opacity:0; animation:fadeUp .9s .65s ease forwards; }
.hero-logo { width:min(94vw, 1320px); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:26px; transform:translateY(2vh); }
.hero-logo .cake { width:clamp(82px, 8vw, 120px); opacity:0; transform:translateY(10px); animation:fadeUp 1.4s .25s cubic-bezier(.2,.65,.2,1) forwards; }
.hero-logo .word { width:min(90vw, 1120px); opacity:0; filter:blur(7px); transform:translateY(10px); animation:brandReveal 2.5s .7s cubic-bezier(.2,.65,.2,1) forwards; }
.scroll-cue { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:#aaa19b; opacity:0; animation:fadeUp .8s 2.4s ease forwards; }
@keyframes brandReveal { to { opacity:1; filter:blur(0); transform:none; } }
@keyframes fadeUp { to { opacity:1; transform:none; } }

.home-section { min-height:100svh; padding:140px 5vw 90px; display:flex; flex-direction:column; justify-content:center; background:#fff; }
.section-inner { width:100%; max-width:var(--max); margin:auto; }
.eyebrow { font-size:12px; letter-spacing:.25em; text-transform:uppercase; margin:0 0 22px; }
.display { font-family:var(--serif); font-weight:400; font-size:clamp(54px,6.1vw,94px); line-height:.96; letter-spacing:-.035em; margin:0; }
.lede { max-width:760px; margin:28px 0 0; color:#5c5652; font-size:17px; line-height:1.8; }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .9s cubic-bezier(.2,.65,.2,1), transform .9s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }

.carousel-wrap { margin-top:48px; position:relative; }
.carousel { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(310px, 31.5%); gap:24px; overflow-x:auto; overscroll-behavior-inline:contain; scroll-snap-type:inline mandatory; scrollbar-width:none; padding:4px 1px 16px; }
.carousel::-webkit-scrollbar { display:none; }
.product-card { scroll-snap-align:start; border:1px solid var(--line); border-radius:22px; background:#fff; overflow:hidden; min-height:100%; transition:transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform:translateY(-4px); box-shadow:0 18px 38px rgba(36,27,24,.06); }
.product-card img { width:100%; aspect-ratio:5/3; object-fit:contain; background:#fff; }
.product-card .card-copy { padding:21px 24px 24px; }
.product-card h3 { font-family:var(--serif); font-weight:400; font-size:32px; margin:0 0 8px; }
.product-card p { color:var(--muted); line-height:1.6; margin:0 0 18px; min-height:48px; }
.text-link { display:inline-flex; align-items:center; gap:14px; font-size:13px; letter-spacing:.14em; text-transform:uppercase; border-bottom:1px solid currentColor; padding-bottom:4px; }
.carousel-arrow { position:absolute; top:44%; width:48px; height:48px; border-radius:50%; border:1px solid var(--line); background:rgba(255,255,255,.95); display:grid; place-items:center; font-size:24px; cursor:pointer; z-index:4; box-shadow:0 4px 16px rgba(0,0,0,.04); }
.carousel-arrow.left { left:-22px; }
.carousel-arrow.right { right:-22px; }
.carousel-bottom { display:flex; align-items:center; justify-content:center; gap:28px; margin-top:26px; flex-wrap:wrap; }
.dots { display:flex; gap:9px; }
.dot { width:6px; height:6px; border-radius:50%; background:#d7d2ce; border:0; padding:0; }
.dot.active { background:var(--ink); }

.coming-panel { display:grid; grid-template-columns:.86fr 1.14fr; gap:48px; align-items:center; border:1px solid var(--line); border-radius:28px; overflow:hidden; padding:58px 58px 44px; }
.coming-copy .display { font-size:clamp(52px,5vw,82px); }
.coming-copy p { color:#5f5955; font-size:17px; line-height:1.8; max-width:500px; }
.coming-note { margin-top:26px; color:var(--accent)!important; }
.coming-panel img { width:100%; max-height:600px; object-fit:contain; }
.end-note { text-align:center; padding:48px 20px 10px; color:#8a827d; font-size:13px; letter-spacing:.06em; }

/* Standard pages */
.page-main { padding:132px 5vw 90px; min-height:100vh; background:#fff; }
.page-inner { width:100%; max-width:var(--max); margin:auto; }
.page-title { max-width:980px; }
.page-title .display { font-size:clamp(58px,6vw,92px); }
.page-title .lede { max-width:800px; }

.grid { margin-top:48px; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid .product-card img { aspect-ratio:16/10; }

/* Product detail */
.product-layout { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:start; }
.product-hero-image { position:sticky; top:112px; }
.product-hero-image img { width:100%; border-radius:22px; background:#fff; }
.product-detail h1 { font-family:var(--serif); font-size:clamp(50px,4.4vw,76px); line-height:1; letter-spacing:-.03em; font-weight:400; margin:12px 0 24px; }
.product-detail > p { color:#59534f; line-height:1.8; font-size:16px; }
.detail-block { padding:26px 0; border-top:1px solid var(--line); }
.detail-block:first-of-type { margin-top:28px; }
.detail-block h2 { font-size:12px; letter-spacing:.2em; text-transform:uppercase; margin:0 0 16px; }
.notes { display:grid; gap:12px; color:#4d4844; }
.note { display:flex; gap:12px; align-items:flex-start; line-height:1.6; }
.note .glyph { width:22px; height:22px; border:1px solid #bdb6b0; border-radius:50%; display:grid; place-items:center; flex:none; font-size:10px; margin-top:1px; }
.allergen-box { background:var(--soft); border-radius:16px; padding:18px 20px; line-height:1.7; }
.allergen-box strong { font-weight:600; }
.draft-note { color:#7a716b; font-size:13px; margin-top:8px; }

.order-box { margin-top:28px; border:1px solid var(--line); border-radius:20px; padding:24px; }
.order-box h2 { font-size:12px; letter-spacing:.2em; text-transform:uppercase; margin:0 0 7px; }
.order-box > p { color:var(--muted); font-size:14px; margin:0 0 20px; }
.form-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.field { display:grid; gap:7px; }
.field label { font-size:12px; letter-spacing:.1em; text-transform:uppercase; }
.field input, .field select { width:100%; height:52px; border:1px solid #ded9d5; border-radius:11px; padding:0 14px; background:#fff; color:var(--ink); outline:none; }
.field input:focus, .field select:focus { border-color:#a89d96; box-shadow:0 0 0 3px rgba(220,161,137,.12); }
.availability-slot { margin-top:14px; min-height:58px; display:grid; place-items:center; border:1px dashed #d8d2ce; border-radius:12px; color:#8c837d; font-size:13px; text-align:center; padding:12px; }
.availability-slot.ready { border-style:solid; padding:0; }
.availability-btn { width:100%; min-height:56px; border:0; border-radius:11px; background:var(--ink); color:white; display:flex; align-items:center; justify-content:center; gap:11px; cursor:pointer; font-size:14px; letter-spacing:.04em; }
.whatsapp-icon { width:20px; height:20px; }

/* Order page */
.order-step { margin-top:42px; }
.flavour-picker { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.flavour-option { position:relative; border:1px solid var(--line); border-radius:18px; overflow:hidden; cursor:pointer; transition:.25s ease; background:#fff; }
.flavour-option input { position:absolute; opacity:0; pointer-events:none; }
.flavour-option img { width:100%; aspect-ratio:16/10; object-fit:contain; }
.flavour-option .label { padding:16px 18px 18px; font-family:var(--serif); font-size:26px; }
.flavour-option:has(input:checked) { border-color:var(--ink); box-shadow:0 0 0 1px var(--ink); }
.order-details-panel { max-width:960px; margin:34px auto 0; border:1px solid var(--line); border-radius:20px; padding:28px; }
.order-details-panel .form-grid { grid-template-columns:repeat(3,1fr); }

/* Info pages */
.content-prose { max-width:900px; font-family:var(--serif); font-size:22px; line-height:1.7; color:#423b37; }
.steps { margin-top:46px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.step { border-top:1px solid var(--ink); padding-top:18px; }
.step .num { color:var(--accent); font-size:12px; letter-spacing:.16em; }
.step h3 { font-family:var(--serif); font-weight:400; font-size:30px; margin:14px 0 10px; }
.step p { color:var(--muted); line-height:1.7; margin:0; }
.contact-grid { margin-top:44px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.contact-card { border:1px solid var(--line); border-radius:18px; padding:28px; min-height:190px; display:flex; flex-direction:column; justify-content:space-between; }
.contact-card h3 { font-family:var(--serif); font-size:34px; font-weight:400; margin:0 0 10px; }
.contact-card p { color:var(--muted); line-height:1.65; }
.contact-card .actions { display:flex; gap:18px; flex-wrap:wrap; }
.delivery-list { margin-top:30px; display:flex; flex-wrap:wrap; gap:10px; }
.delivery-list span { border:1px solid var(--line); border-radius:999px; padding:10px 15px; }

/* Footer */
.footer { border-top:1px solid var(--line); padding:38px 5vw 46px; background:#fff; }
.footer-inner { max-width:var(--max); margin:auto; display:flex; justify-content:space-between; gap:28px; align-items:flex-start; }
.footer-brand { display:flex; align-items:center; gap:10px; }
.footer-brand img:first-child { width:30px; }
.footer-brand img:last-child { width:95px; }
.footer-links { display:flex; gap:22px; flex-wrap:wrap; font-size:12px; color:#6e6762; }
.footer-copy { font-size:11px; color:#9a918b; margin-top:12px; }

/* Toast */
.toast { position:fixed; left:50%; bottom:28px; transform:translate(-50%,20px); z-index:120; background:var(--ink); color:#fff; border-radius:999px; padding:12px 18px; font-size:13px; opacity:0; pointer-events:none; transition:.3s ease; }
.toast.show { opacity:1; transform:translate(-50%,0); }

@media (max-width: 980px) {
  .site-header { height:72px; padding:0 6vw; }
  .nav { display:none; }
  .menu-button { display:flex; }
  .hero-nav { display:none; }
  .hero-logo { width:100%; gap:24px; }
  .hero-logo .cake { width:clamp(82px,23vw,112px); }
  .hero-logo .word { width:90vw; }
  .scroll-cue { display:none; }
  .home-section { min-height:auto; padding:120px 6vw 80px; }
  .carousel { grid-auto-columns:minmax(78vw,78vw); }
  .carousel-arrow { display:none; }
  .coming-panel { grid-template-columns:1fr; padding:42px 28px; }
  .coming-panel img { order:2; }
  .grid { grid-template-columns:1fr 1fr; }
  .product-layout { grid-template-columns:1fr; gap:30px; }
  .product-hero-image { position:static; }
  .form-grid { grid-template-columns:1fr 1fr; }
  .form-grid .field:last-child { grid-column:1/-1; }
  .flavour-picker { grid-template-columns:1fr 1fr; }
  .steps { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width: 620px) {
  .site-header { padding:0 7vw; }
  .mini-brand .cake { width:31px; height:31px; }
  .mini-brand .word { width:90px; }
  .hero { min-height:100svh; }
  .hero-logo { transform:translateY(1vh); gap:22px; }
  .hero-logo .cake { width:24vw; max-width:108px; }
  .hero-logo .word { width:91vw; }
  .home-section { padding:106px 7vw 70px; }
  .display { font-size:clamp(48px,14.6vw,72px); }
  .lede { font-size:15px; line-height:1.7; }
  .carousel-wrap { margin-top:34px; }
  .carousel { grid-auto-columns:84vw; gap:15px; margin-right:-7vw; }
  .product-card h3 { font-size:29px; }
  .coming-panel { padding:34px 20px 26px; border-radius:22px; }
  .coming-copy p { font-size:15px; }
  .page-main { padding:108px 7vw 70px; }
  .page-title .display { font-size:clamp(48px,14.4vw,68px); }
  .grid { grid-template-columns:1fr; gap:17px; }
  .product-detail h1 { font-size:clamp(43px,12vw,58px); }
  .form-grid, .order-details-panel .form-grid { grid-template-columns:1fr; }
  .form-grid .field:last-child { grid-column:auto; }
  .order-box { padding:20px 16px; }
  .flavour-picker { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr; gap:28px; }
  .content-prose { font-size:19px; }
  .footer-inner { flex-direction:column; }
  .footer-links { gap:14px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto!important; animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
  .reveal, .hero-logo .cake, .hero-logo .word, .hero-nav { opacity:1; transform:none; filter:none; }
}

/* --------------------------------------------------------------------------
   JUNE v2 refinements: sharper branding + multi-flavour ordering
   -------------------------------------------------------------------------- */
.hero-logo .cake {
  width:clamp(74px,6.5vw,98px);
  height:auto;
  object-fit:contain;
  flex:none;
}
.hero-logo .word {
  width:min(92vw,1120px);
  height:auto;
  object-fit:contain;
  image-rendering:auto;
}
.mini-brand .cake,
.mini-brand .word,
.footer-brand img { image-rendering:auto; }

[hidden] { display:none !important; }

.postcode-status {
  min-height:18px;
  margin-top:1px;
  font-size:12px;
  line-height:1.4;
  color:#8c837d;
}
.postcode-status.valid { color:#48684f; }
.postcode-status.invalid { color:#9b443c; }
.postcode-status.checking { color:#746d68; }
.field input.is-valid { border-color:#8cab93; box-shadow:0 0 0 3px rgba(88,129,96,.08); }
.field input.is-invalid { border-color:#c88f88; box-shadow:0 0 0 3px rgba(155,68,60,.06); }

/* Range cards now expose both details and ordering routes. */
.product-card .card-main { display:block; }
.product-card .card-actions {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0 24px 24px;
}
.product-card .card-actions .text-link { font-size:11px; }
.product-card .order-link { color:#7b6358; }

/* Multi-flavour order page */
.order-products {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.order-product {
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.order-product.has-quantity {
  border-color:#a89890;
  box-shadow:0 12px 28px rgba(36,27,24,.06);
  transform:translateY(-2px);
}
.order-product img {
  width:100%;
  aspect-ratio:16/10;
  object-fit:contain;
  background:#fff;
}
.order-product-copy { padding:18px 20px 20px; }
.order-product h3 {
  font-family:var(--serif);
  font-weight:400;
  font-size:30px;
  margin:0 0 6px;
}
.order-product p {
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
  margin:0 0 17px;
  min-height:43px;
}
.qty-stepper {
  display:grid;
  grid-template-columns:44px 1fr 44px;
  align-items:center;
  border:1px solid #ddd7d2;
  border-radius:999px;
  overflow:hidden;
  height:46px;
}
.qty-stepper button {
  border:0;
  background:#fff;
  height:100%;
  cursor:pointer;
  font-size:22px;
  line-height:1;
}
.qty-stepper button:hover { background:#faf8f7; }
.qty-stepper input {
  border:0;
  width:100%;
  text-align:center;
  outline:none;
  appearance:textfield;
  -moz-appearance:textfield;
  background:#fff;
  color:var(--ink);
}
.qty-stepper input::-webkit-inner-spin-button,
.qty-stepper input::-webkit-outer-spin-button { -webkit-appearance:none; margin:0; }

.order-selection-bar {
  margin:30px 0 0;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:#fff;
  position:sticky;
  bottom:14px;
  z-index:12;
  box-shadow:0 16px 34px rgba(36,27,24,.08);
}
.order-selection-copy strong { display:block; font-size:15px; margin-bottom:3px; }
.order-selection-copy span { color:var(--muted); font-size:13px; }
.primary-action {
  min-height:50px;
  padding:0 24px;
  border:0;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.primary-action:disabled { opacity:.35; cursor:not-allowed; }

/* Native dialog used as the delivery-details confirmation step. */
.order-dialog {
  width:min(680px,calc(100vw - 32px));
  max-height:min(86vh,780px);
  border:0;
  border-radius:24px;
  padding:0;
  color:var(--ink);
  background:#fff;
  box-shadow:0 30px 90px rgba(36,27,24,.18);
}
.order-dialog::backdrop { background:rgba(35,27,24,.28); backdrop-filter:blur(4px); }
.order-dialog-inner { padding:30px; }
.dialog-top { display:flex; align-items:flex-start; justify-content:space-between; gap:22px; }
.dialog-top h2 { font-family:var(--serif); font-weight:400; font-size:44px; line-height:1; margin:4px 0 10px; }
.dialog-close {
  border:0;
  background:none;
  width:40px;
  height:40px;
  border-radius:50%;
  cursor:pointer;
  font-size:24px;
  color:#6f6761;
}
.dialog-close:hover { background:#f7f5f4; }
.order-summary-list {
  margin:20px 0 24px;
  padding:16px 18px;
  border-radius:14px;
  background:var(--soft);
  display:grid;
  gap:8px;
}
.order-summary-row { display:flex; justify-content:space-between; gap:20px; font-size:14px; }
.order-summary-row span:last-child { font-weight:600; }
.dialog-fields { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.dialog-fields .postcode-field { grid-column:1/-1; }
.dialog-note { margin:16px 0 0; color:var(--muted); font-size:12px; line-height:1.55; }
.dialog-availability { margin-top:18px; }
.dialog-availability .availability-btn { min-height:58px; }

/* A compact product-detail ordering hand-off keeps all orders in one flow. */
.order-handoff {
  margin-top:28px;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
}
.order-handoff h2 { font-size:12px; letter-spacing:.2em; text-transform:uppercase; margin:0 0 8px; }
.order-handoff p { color:var(--muted); font-size:14px; line-height:1.65; margin:0 0 18px; }
.order-handoff .primary-action { min-height:48px; }

@media (max-width:980px) {
  .hero-logo .cake { width:clamp(72px,18vw,94px); }
  .hero-logo .word { width:92vw; }
  .order-products { grid-template-columns:1fr 1fr; }
}
@media (max-width:620px) {
  .hero-logo { gap:18px; }
  .hero-logo .cake { width:20vw; min-width:70px; max-width:88px; }
  .hero-logo .word { width:92vw; }
  .order-products { grid-template-columns:1fr; gap:14px; }
  .order-product { display:grid; grid-template-columns:42% 58%; align-items:center; }
  .order-product img { aspect-ratio:1/1; }
  .order-product-copy { padding:15px 16px; }
  .order-product h3 { font-size:26px; }
  .order-product p { display:none; }
  .order-selection-bar { bottom:10px; padding:14px 15px; }
  .order-selection-copy span { display:none; }
  .primary-action { padding:0 18px; }
  .order-dialog { width:calc(100vw - 20px); max-height:92vh; border-radius:20px; }
  .order-dialog-inner { padding:22px 18px 20px; }
  .dialog-top h2 { font-size:38px; }
  .dialog-fields { grid-template-columns:1fr; }
  .dialog-fields .postcode-field { grid-column:auto; }
  .product-card .card-actions { padding:0 18px 20px; }
}
/* Keep the wordmark optically sharp throughout the fade-in (no blur effect). */
.hero-logo .word { filter:none; }


/* --------------------------------------------------------------------------
   JUNE v3 refinements: sharper landing logo, better hero scaling, cleaner footer
   -------------------------------------------------------------------------- */
.hero-logo {
  width:min(96vw, 1380px);
  gap:22px;
  transform:none;
}
.hero-logo .cake {
  width:clamp(98px, 8vw, 138px) !important;
  height:auto;
  opacity:0;
  transform:none !important;
  animation:fadeOnly 1.05s .15s ease forwards !important;
}
.hero-logo .word {
  width:min(90vw, 1260px) !important;
  height:auto;
  opacity:0;
  filter:none !important;
  transform:none !important;
  animation:fadeOnly 1.45s .45s ease forwards !important;
  image-rendering:-webkit-optimize-contrast;
  backface-visibility:hidden;
}
@keyframes fadeOnly { from { opacity:0; } to { opacity:1; } }

.footer-copy { display:none !important; }

@media (max-width: 980px) {
  .hero-logo { width:100%; gap:20px; }
  .hero-logo .cake { width:clamp(98px, 22vw, 128px) !important; }
  .hero-logo .word { width:93vw !important; }
}

@media (max-width: 620px) {
  .hero-logo { gap:18px; }
  .hero-logo .cake { width:clamp(96px, 24vw, 122px) !important; }
  .hero-logo .word { width:94vw !important; }
  .footer { padding:32px 7vw 38px; }
}


/* --------------------------------------------------------------------------
   JUNE v4 refinement: vector wordmark for maximum sharpness
   -------------------------------------------------------------------------- */
.hero-logo .word,
.mini-brand .word,
.footer-brand img.wordmark-svg {
  image-rendering:auto;
}
.hero-logo .word {
  max-width:1260px;
}
.mini-brand .word {
  width:118px;
}
@media (max-width:620px){
  .mini-brand .word { width:96px; }
}
