/* Friends & Family Bake — Method 2 (premium-template-structure-inspired) */

:root {
  --ink: #241812;
  --ink-soft: #5a4a40;
  --cream: #f2e9ed;
  --paper: #f6f1f4;
  --gold: #c8862b;
  --gold-deep: #8a5217;
  --ube: #6b3f7d;
  --line: rgba(36, 24, 18, 0.12);
  --dark: #1c1410;
  --dark-2: #2a1e16;
  --radius: 4px;
  --ff-display: "Newsreader", Georgia, serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 253, 249, 0.97);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--ink);
  color: var(--cream);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.brand-text {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-deep); color: #fff; }
.btn-gold:hover { background: #6e400f; }
.btn-ghost { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-outline-light { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 19px; }
.nav-toggle::after { top: 24px; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.mobile-menu a[aria-current="page"] { color: var(--gold-deep); font-weight: 700; }
.mobile-menu .mobile-call {
  border-bottom: none;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20,13,9,0.88) 0%, rgba(20,13,9,0.55) 45%, rgba(20,13,9,0.25) 75%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 96px;
  max-width: 760px;
}
.ticket {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.ticket-row { font-size: 0.85rem; }
.ticket-row strong { font-family: var(--ff-display); font-size: 1rem; }
.ticket-sub { opacity: 0.85; }
.hero-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.06;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.08rem;
  max-width: 560px;
  opacity: 0.92;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--dark);
  color: var(--cream);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--gold);
}
.trust-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* ---------- Story ---------- */
.story { padding: 108px 0; background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-photos {
  position: relative;
  display: flex;
}
.story-photos img:first-child {
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(36,24,18,0.35);
}
.story-photo-small {
  position: absolute;
  width: 44%;
  right: -8%;
  bottom: -14%;
  border: 6px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -20px rgba(36,24,18,0.4);
}
.story-copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.15;
}
.story-copy p { color: var(--ink-soft); margin: 0 0 16px; font-size: 1.02rem; }
.story-quote {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink);
  margin-top: 28px;
  font-size: 1.15rem;
  line-height: 1.5;
  position: relative;
}
.story-quote::before {
  content: "\201C";
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

/* ---------- Menu ---------- */
.menu { background: var(--dark-2); color: var(--cream); padding: 108px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.15;
}
.menu .section-head p, .gallery .section-head p { color: rgba(250,243,232,0.8); margin: 0; }
.gallery .section-head { color: var(--ink); }
.gallery .section-head p { color: var(--ink-soft); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.menu-card {
  background: rgba(250,243,232,0.04);
  border: 1px solid rgba(250,243,232,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.menu-card:hover { transform: translateY(-6px); border-color: rgba(200,134,43,0.5); }
.menu-card img { width: 100%; height: 190px; object-fit: cover; }
.menu-card-body { padding: 20px; }
.menu-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.menu-card-body .price { color: var(--gold); white-space: nowrap; }
.menu-card-body p { font-size: 0.9rem; color: rgba(250,243,232,0.8); margin: 0; }

.text-link {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.text-link:hover { border-color: var(--gold-deep); }
.text-link-on-dark { color: var(--gold); }
.text-link-on-dark:hover { border-color: var(--gold); }

/* ---------- Statement ---------- */
.statement {
  padding: 130px 0;
  background: var(--cream);
  text-align: center;
}
.statement-text {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.32;
  margin: 0;
  color: var(--ink);
}
.statement-text .hl { color: var(--ube); font-style: italic; }

/* ---------- Gallery ---------- */
.gallery { padding: 108px 0 96px; background: var(--paper); }
.gallery-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 24px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-rail img {
  scroll-snap-align: start;
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

/* ---------- Reviews ---------- */
.reviews { padding: 0 0 112px; background: var(--paper); }
.reviews .section-head { text-align: center; margin: 0 auto 48px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  margin: 0;
}
.review-card p {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 16px;
}
.review-card cite {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.reviews .text-link { display: block; text-align: center; }

/* ---------- Visit ---------- */
.visit { background: var(--dark); color: var(--cream); padding: 108px 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 28px;
}
.hours { width: 100%; border-collapse: collapse; }
.hours td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(250,243,232,0.12);
  font-size: 0.98rem;
}
.hours td:first-child { color: rgba(250,243,232,0.78); }
.hours td:last-child { text-align: right; font-weight: 600; }

.visit-card {
  background: rgba(250,243,232,0.05);
  border: 1px solid rgba(250,243,232,0.14);
  border-radius: var(--radius);
  padding: 36px;
}
.addr { font-size: 1.1rem; margin-bottom: 18px; }
.phone, .email {
  display: block;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.email { color: var(--cream); font-weight: 500; font-size: 0.95rem; margin-bottom: 24px; }
.cta-row { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.verify-links { display: flex; gap: 18px; flex-wrap: wrap; }
.verify-links a { color: rgba(250,243,232,0.78); text-decoration: none; font-size: 0.86rem; }
.verify-links a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-2);
  color: rgba(250,243,232,0.72);
  padding: 32px 0;
  font-size: 0.85rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  display: block;
  font-family: var(--ff-display);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 2px; }

/* ---------- Reveal / motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-28px); }
.reveal-left.is-visible { transform: translateX(0); }
.reveal-right { transform: translateX(28px); }
.reveal-right.is-visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* no-JS fallback: content is visible by default via <noscript> override below */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; }
  .nav .btn-gold { display: none; }
  .story-grid, .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .story-photo-small { right: 4%; bottom: -10%; width: 52%; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .hero-inner { padding-top: 120px; padding-bottom: 64px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-rail img { width: 240px; height: 300px; }
  .cta-row .btn { flex: 1; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Interior pages — same anatomy as the home page, adapted per page type
   ========================================================================== */

/* ---------- Compact page header (stands in for the hero on inner pages) --- */
.page-head {
  position: relative;
  background: var(--dark);
  color: var(--cream);
  padding: 168px 0 84px;
  overflow: hidden;
}
.page-head-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-head-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.32;
}
.page-head-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,13,9,0.95) 0%, rgba(20,13,9,0.68) 60%, rgba(20,13,9,0.72) 100%);
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  max-width: 16ch;
}
.page-head .lede {
  margin: 0;
  max-width: 56ch;
  font-size: 1.05rem;
  color: rgba(250,243,232,0.84);
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 22px;
  color: rgba(250,243,232,0.6);
}
.crumbs a { color: rgba(250,243,232,0.78); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

/* ---------- Generic light/dark content bands ---------- */
.band { padding: 96px 0; background: var(--paper); }
.band-cream { background: var(--cream); }
.band-dark { background: var(--dark-2); color: var(--cream); }
.band-dark .section-head h2 { color: var(--cream); }
.band-dark .section-head p { color: rgba(250,243,232,0.8); }
.band-tight { padding: 72px 0; }

.prose { max-width: 62ch; }
.prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 18px;
}
.prose h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 36px 0 12px;
}
.prose p { color: var(--ink-soft); font-size: 1.04rem; margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }
.band-dark .prose p { color: rgba(250,243,232,0.82); }

/* ---------- Bakes (menu) page ---------- */
.bakes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.bake-row {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.bake-row img {
  width: 190px;
  height: 128px;
  object-fit: cover;
  border-radius: var(--radius);
}
.bake-row h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.bake-row p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; max-width: 54ch; }
.bake-serve {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.bake-price {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}
.bake-price small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.also-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.also-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(250,243,232,0.14);
  font-size: 1rem;
}
.also-note { margin-top: 28px; font-size: 0.92rem; color: rgba(250,243,232,0.66); max-width: 62ch; }

/* ---------- About page ---------- */
.about-figure { margin: 0; }
.about-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(36,24,18,0.35);
}
.about-figure figcaption {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-wide { grid-template-columns: 1.15fr 1fr; }

.fact-list { margin: 0; padding: 0; list-style: none; }
.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,243,232,0.14);
  font-size: 0.98rem;
}
.fact-list li span:first-child { color: rgba(250,243,232,0.74); }
.fact-list li span:last-child { font-weight: 600; text-align: right; }

/* ---------- Blog listing ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px -28px rgba(36,24,18,0.5);
}
.post-card img { width: 100%; height: 210px; object-fit: cover; }
.post-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.post-card p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }
.post-date {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.post-more {
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.post-lead {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: stretch;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 40px;
}
.post-lead img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.post-lead-body { padding: 44px 44px 44px 0; align-self: center; }
.post-lead h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 10px 0 14px;
}
.post-lead p { margin: 0 0 16px; color: var(--ink-soft); }

/* ---------- Article (single post) ---------- */
.article { padding: 72px 0 96px; background: var(--paper); }
.article-body { max-width: 64ch; margin: 0 auto; }
.article-body p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.article-body h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 14px;
}
.article-body ul { margin: 0 0 22px; padding-left: 20px; color: var(--ink-soft); }
.article-body li { margin-bottom: 8px; font-size: 1.02rem; }
.article-figure { margin: 36px 0; }
.article-figure img { width: 100%; border-radius: var(--radius); }
.article-figure figcaption { margin-top: 10px; font-size: 0.85rem; color: var(--ink-soft); }
.pull {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 40px 0;
}
.pull::before {
  content: "\201C";
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}
.source-note {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.source-note a { color: var(--gold-deep); }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(250,243,232,0.7);
  margin-top: 20px;
}
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px 20px;
  flex-wrap: wrap;
  max-width: 64ch;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-nav a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  flex: 1 1 240px;
}
.article-nav a + a { text-align: right; }
.article-nav a:hover { text-decoration: underline; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-block { margin-bottom: 34px; }
.contact-block h2 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.contact-block p { margin: 0 0 10px; color: var(--ink-soft); }
.contact-block a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }
.contact-lines { font-style: normal; font-size: 1.05rem; line-height: 1.7; color: var(--ink); }
.hours-light { width: 100%; border-collapse: collapse; }
.hours-light td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.hours-light td:first-child { color: var(--ink-soft); }
.hours-light td:last-child { text-align: right; font-weight: 600; }
.hours-light tr.is-closed td:last-child { color: var(--ink-soft); font-weight: 500; }

/* ---------- Footer (site-wide) ---------- */
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(250,243,232,0.12);
  margin-bottom: 22px;
}
.footer-cols .footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250,243,232,0.55);
  margin: 0 0 14px;
}
.footer-cols a { color: rgba(250,243,232,0.82); text-decoration: none; display: block; padding: 4px 0; }
.footer-cols a:hover { color: var(--gold); }
.footer-cols p { margin: 0 0 8px; }
.footer-note { color: rgba(250,243,232,0.6); }

/* ---------- Responsive (interior pages) ---------- */
@media (max-width: 980px) {
  .page-head { padding: 130px 0 64px; }
  .split, .split-wide, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-lead { grid-template-columns: 1fr; }
  .post-lead img { min-height: 240px; }
  .post-lead-body { padding: 32px 28px 36px; }
  .also-list { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .bake-row { grid-template-columns: 150px 1fr; gap: 22px; row-gap: 10px; }
  .bake-row img { width: 150px; height: 110px; }
  .bake-price { grid-column: 2; text-align: left; }
}

@media (max-width: 560px) {
  .page-head { padding: 112px 0 52px; }
  .page-head h1 { max-width: none; }
  .band { padding: 68px 0; }
  .post-grid { grid-template-columns: 1fr; }
  .also-list { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .bake-row { grid-template-columns: 1fr; }
  .bake-row img { width: 100%; height: 190px; }
  .bake-price { grid-column: 1; }
  .article-nav { flex-direction: column; gap: 12px; }
}
