/* ==================================================================
   Crossley & Sons — Demo V2
   Designed by Intellium Inc.
   Palette extracted from official logo. SA-first.
   Playbook: references/playbooks/cafe-bakery-top1pct-2026.md
   ================================================================== */

:root {
  /* Brand — extracted from logo */
  --navy: #012942;
  --navy-deep: #001A2D;
  --navy-rgb: 1, 41, 66;
  --copper: #C1946A;
  --copper-light: #DFB07C;
  --copper-deep: #A8805C;
  --cream: #F7F3EC;       /* warm tint — never pure white */
  --cream-alt: #FAF5EC;
  --cream-warm: #EFE7D6;
  --ink: #0A1A28;
  --ink-2: #2A3441;
  --muted: #6E7B89;
  --border: #E8DCC4;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Type */
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; /* Lenis handles smoothness */ }
html, body { background: var(--cream); }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv01";
}

/* Paper grain — sitewide, very subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 1080px; }

/* ── LOADING VEIL ─────────────────────────────────────── */

.veil {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}
.veil__seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  animation: sealIn 0.7s var(--ease-out) forwards;
  box-shadow: 0 12px 40px -16px rgba(1, 41, 66, 0.45);
}
.veil__seal img { width: 78%; height: 78%; object-fit: contain; }
.veil.is-out { opacity: 0; visibility: hidden; }
@keyframes sealIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ── HEADER (sticky) ──────────────────────────────────── */

.hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hd.is-stuck {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(1, 41, 66, 0.06), 0 6px 28px -12px rgba(1, 41, 66, 0.12);
}
.hd__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hd__seal {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.hd__seal-disc {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 18px -6px rgba(1, 41, 66, 0.35);
  transition: transform 0.4s var(--ease);
}
.hd__seal:hover .hd__seal-disc { transform: rotate(-8deg); }
.hd__seal-disc img { width: 80%; height: 80%; object-fit: contain; }
.hd__wordmark {
  display: none;
}

.hd__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hd__nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.hd.is-stuck .hd__nav a {
  color: var(--ink);
  text-shadow: none;
}
.hd__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease-out);
}
.hd__nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

.hd__hours {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: none;
}
.hd__hours strong { color: var(--ink); font-weight: 600; }
.hd.is-stuck .hd__hours { display: inline-block; }
.hd__hours-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bb673;
  margin-right: 6px;
  vertical-align: middle;
  animation: openPulse 2s var(--ease) infinite;
}
@keyframes openPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(43, 182, 115, 0); }
}

.hd__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--navy);
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--navy);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.hd__cta:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--navy-deep);
}
.hd__cta svg { width: 11px; height: 11px; }

@media (max-width: 900px) {
  .hd__nav { display: none; }
  .hd__hours { display: none !important; }
}

/* ── BUTTONS ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.btn--copper {
  background: var(--copper);
  color: var(--navy-deep);
  border-color: var(--copper);
}
.btn--copper:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
}
.btn--small { padding: 11px 20px; font-size: 12px; }
.btn svg { width: 14px; height: 14px; }

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(1, 41, 66, 0.18) 0%, rgba(1, 41, 66, 0.55) 65%, rgba(1, 41, 66, 0.82) 100%),
    url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 70% 30%, rgba(193, 148, 106, 0.18) 0%, transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--copper);
}
.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 7.6vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 22px;
  max-width: 1100px;
}
.hero__h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero__h1 .word span {
  display: inline-block;
  transform: translateY(105%);
  will-change: transform;
}
.hero__h1 em {
  font-style: italic;
  color: var(--copper-light);
  font-family: var(--serif);
  font-weight: 400;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
  max-width: 760px;
}
.hero__hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
}
.hero__hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2bb673;
  box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5);
  animation: openPulse 2s var(--ease) infinite;
}
.hero__address {
  font-size: 14px;
  color: rgba(247, 243, 236, 0.8);
  letter-spacing: 0.02em;
}
.hero__address::before {
  content: "·";
  margin-right: 14px;
  color: var(--copper);
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__ctas .btn--primary {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--navy-deep);
}
.hero__ctas .btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--navy-deep);
}
.hero__ctas .btn--ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.hero__ctas .btn--ghost:hover {
  background: var(--cream);
  color: var(--navy-deep);
}
.hero__cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.6);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent 0%, var(--copper-light) 50%, transparent 100%);
  animation: cueLine 2.4s var(--ease) infinite;
}
@keyframes cueLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1; transform-origin: top; }
}

@media (max-width: 720px) {
  .hero { padding: 120px 0 110px; }
}

/* ── SECTION CHROME ───────────────────────────────────── */

.section { padding: 140px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--cream-alt { background: var(--cream-alt); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}
.section__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
.section--navy .section__kicker,
.section--ink .section__kicker { color: var(--copper-light); }
.section__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 900px;
}
.section--navy .section__h2,
.section--ink .section__h2 { color: var(--cream); }
.section__h2 em {
  font-style: italic;
  color: var(--copper-deep);
  font-family: var(--serif);
}
.section--navy .section__h2 em,
.section--ink .section__h2 em { color: var(--copper-light); }
.section__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
}
.section--navy .section__lead,
.section--ink .section__lead { color: rgba(247, 243, 236, 0.72); }

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
}

/* ── COUNTER (signature scroll-pin moment) ────────────── */

.counter { background: var(--cream-alt); position: relative; }
.counter__track {
  display: grid;
  grid-template-columns: repeat(6, minmax(280px, 1fr));
  gap: 22px;
  padding: 0 28px;
  will-change: transform;
}
.bake {
  display: flex;
  flex-direction: column;
}
.bake__photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-warm);
  margin-bottom: 22px;
  position: relative;
}
.bake__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.bake:hover .bake__photo img { transform: scale(1.04); }
.bake__no {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  background: rgba(1, 41, 66, 0.7);
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.bake__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bake__note {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.55;
}
.bake__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-top: auto;
  padding: 6px 0;
  border-bottom: 1px solid var(--copper);
  width: fit-content;
  transition: gap 0.4s var(--ease);
}
.bake__link:hover { gap: 14px; color: var(--navy); border-color: var(--navy); }

.counter__pinwrap { /* scroll-pin parent — JS handles transforms */
  position: relative;
}

@media (max-width: 900px) {
  .counter__track {
    grid-template-columns: repeat(6, 78vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .bake { scroll-snap-align: start; }
}

/* ── MENU TABS ─────────────────────────────────────────── */

.menu { background: var(--cream); }
.menu__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.menu__tab {
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.menu__tab:hover { color: var(--ink); border-color: var(--ink); }
.menu__tab.is-active { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.menu__panel { display: none; }
.menu__panel.is-active { display: block; }
.menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 80px;
  max-width: 1080px;
  margin: 0 auto;
}
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px dashed var(--border);
}
.menu__item-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.menu__item-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.menu__item-price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--copper-deep);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .menu__list { grid-template-columns: 1fr; gap: 4px; }
}

/* ── CAKES (3-tier) ────────────────────────────────────── */

.cakes { background: var(--navy); color: var(--cream); }
.cakes .section__h2 { color: var(--cream); }
.cakes .section__lead { color: rgba(247, 243, 236, 0.72); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tier {
  background: rgba(247, 243, 236, 0.04);
  border: 1px solid rgba(223, 176, 124, 0.18);
  border-radius: 6px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.tier::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper-light), var(--copper-deep));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.tier:hover {
  background: rgba(223, 176, 124, 0.06);
  border-color: var(--copper);
  transform: translateY(-4px);
}
.tier:hover::before { opacity: 1; }
.tier__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 26px;
  font-weight: 400;
}
.tier__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.tier__h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.tier__notice {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--copper-light);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(223, 176, 124, 0.18);
}
.tier__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.72);
  margin-bottom: 32px;
  flex: 1;
}
.tier__cta { width: 100%; }

@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; }
}

/* ── VISIT (single SA store, primary) ──────────────────── */

.visit { background: var(--cream-alt); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.visit__photo {
  aspect-ratio: 5 / 6;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(1, 41, 66, 0.4);
}
.visit__photo img { width: 100%; height: 100%; object-fit: cover; }
.visit__kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 22px;
}
.visit__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 30px;
}
.visit__h2 em { font-style: italic; color: var(--copper-deep); }
.visit__address {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 36px;
  padding-left: 22px;
  border-left: 1px solid var(--copper);
}
.visit__address strong { font-weight: 500; }
.visit__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 30px;
  margin-bottom: 36px;
  font-size: 15px;
}
.visit__hours dt {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.visit__hours dd { color: var(--muted); }
.visit__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; gap: 40px; }
  .visit__photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4 / 3; }
}

/* ── FAMILY STORY ──────────────────────────────────────── */

.family { background: var(--cream); }
.family__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.family__copy { max-width: 580px; }
.family__kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 22px;
}
.family__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 36px;
}
.family__h2 em { font-style: italic; color: var(--copper-deep); }
.family__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.family__body p:last-child { margin-bottom: 0; }
.family__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--copper-deep);
  margin: 36px 0 0;
  padding: 24px 0 24px 30px;
  border-left: 1px solid var(--copper);
  max-width: 540px;
}
.family__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(1, 41, 66, 0.4);
}
.family__photo img { width: 100%; height: 100%; object-fit: cover; }
.family__seal {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px -10px rgba(1, 41, 66, 0.5);
  transform: rotate(-8deg);
  animation: sealSpin 24s linear infinite;
}
.family__seal img { width: 78%; height: 78%; object-fit: contain; }
@keyframes sealSpin { to { transform: rotate(352deg); } }

@media (max-width: 900px) {
  .family__grid { grid-template-columns: 1fr; gap: 50px; }
  .family__photo { max-width: 460px; margin: 0 auto; aspect-ratio: 4 / 3; }
  .family__seal { width: 90px; height: 90px; bottom: -20px; right: -20px; }
}

/* ── REGULARS ──────────────────────────────────────────── */

.regulars { background: var(--ink); color: var(--cream); }
.regulars .section__h2 { color: var(--cream); }
.regulars .section__lead { color: rgba(247, 243, 236, 0.72); }
.regulars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.quote {
  padding: 38px 32px;
  background: rgba(247, 243, 236, 0.03);
  border: 1px solid rgba(223, 176, 124, 0.14);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
}
.quote:hover {
  background: rgba(223, 176, 124, 0.06);
  border-color: var(--copper);
}
.quote__mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.5;
  color: var(--copper);
  margin-bottom: 26px;
  font-weight: 400;
  height: 28px;
}
.quote__body {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 28px;
  flex: 1;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.quote__by {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  padding-top: 20px;
  border-top: 1px solid rgba(223, 176, 124, 0.18);
}
.quote__by strong { color: var(--cream); }

.cyprus-line {
  margin-top: 80px;
  padding: 28px 36px;
  background: rgba(223, 176, 124, 0.05);
  border: 1px solid rgba(223, 176, 124, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cyprus-line__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.5;
}
.cyprus-line__text strong { font-style: normal; color: var(--copper-light); font-weight: 500; }
.cyprus-line__link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .regulars__grid { grid-template-columns: 1fr; }
}

/* ── BAKE LIST ─────────────────────────────────────────── */

.bakelist { background: var(--cream-warm); padding: 110px 0; }
.bakelist__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.bakelist__kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 18px;
}
.bakelist__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}
.bakelist__h2 em { font-style: italic; color: var(--copper-deep); }
.bakelist__lead {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 36px;
  line-height: 1.6;
}
.bakelist__form {
  display: flex;
  gap: 8px;
  background: var(--cream);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px -10px rgba(1, 41, 66, 0.15);
}
.bakelist__input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.bakelist__input::placeholder { color: var(--muted); }
.bakelist__btn {
  padding: 14px 30px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.bakelist__btn:hover { background: var(--copper); color: var(--navy-deep); }
.bakelist__small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}

@media (max-width: 540px) {
  .bakelist__form { flex-direction: column; padding: 10px; border-radius: 24px; }
  .bakelist__input { padding: 16px 22px; }
}

/* ── FOOTER ────────────────────────────────────────────── */

.ft {
  background: var(--navy-deep);
  color: rgba(247, 243, 236, 0.7);
  padding: 90px 0 36px;
  font-size: 14px;
}
.ft__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.ft__seal {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.ft__seal-disc {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
}
.ft__seal-disc img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  /* Invert the colours so the copper-gold seal shows on cream */
  filter: brightness(0.92);
}
.ft__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.ft__brand em { font-style: italic; color: var(--copper-light); }
.ft__brand .amp {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  color: var(--copper-light);
  font-size: 1.18em;
  letter-spacing: 0;
  margin: 0 0.04em;
  /* subtle stamp/distress feel — soft drop + faint inner shadow */
  text-shadow:
    0.5px 0 0 rgba(223, 176, 124, 0.4),
    0 0.5px 0 rgba(0, 0, 0, 0.25);
}
.ft__about {
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 360px;
  color: rgba(247, 243, 236, 0.72);
}
.ft__socials { display: flex; gap: 10px; }
.ft__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 236, 0.2);
  color: var(--cream);
  transition: all 0.3s var(--ease);
}
.ft__socials a:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--navy-deep);
}
.ft__socials svg { width: 14px; height: 14px; }

.ft__col h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 18px;
}
.ft__col a, .ft__col p {
  display: block;
  margin-bottom: 6px;
  color: rgba(247, 243, 236, 0.72);
  line-height: 1.7;
  transition: color 0.25s var(--ease);
}
.ft__col a:hover { color: var(--copper-light); }
.ft__col strong { color: var(--cream); font-weight: 500; }

.ft__bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(247, 243, 236, 0.5);
}
.ft__credit {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(247, 243, 236, 0.6);
}
.ft__credit a { color: var(--copper-light); }
.ft__credit a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .ft__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .ft__top { grid-template-columns: 1fr; }
  .ft__bottom { flex-direction: column; }
}

/* ── REVEAL ────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.5s; }
