/* =========================================================
   Sherry's Country Caffè & Bakery — Editorial Café Website
   ========================================================= */

:root {
  /* --- Brand palette, drawn from Sherry's logo --- */
  --coffee: #3c2a1e;       /* deep coffee brown */
  --coffee-soft: #5a4030;
  --cream: #faf3e7;        /* warm ivory / primary background */
  --cream-deep: #f1e6d3;
  --blush: #e5cbbd;        /* refined warm rose / clay */
  --blush-soft: #f4e2d8;
  --caramel: #c28a4a;      /* warm honey gold */
  --caramel-deep: #956039;
  --ink: #2c1d14;
  --paper: #fffaf2;

  --serif: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Caveat", cursive;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
/* The browser default UA stylesheet gives <figure> a 1em/40px margin —
   reset it everywhere so every .photo figure sits exactly where its
   layout (grid/absolute positioning) expects, on every breakpoint. */
figure { margin: 0; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--coffee);
  margin: 0;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.accent-script {
  font-family: var(--script);
  font-weight: 500;
  color: var(--caramel-deep);
  font-size: 1.15em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--caramel-deep);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-primary {
  background: var(--coffee);
  color: var(--paper);
  border-color: var(--coffee);
}
.btn-primary:hover { background: var(--caramel-deep); border-color: var(--caramel-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--coffee);
  border-color: var(--coffee);
}
.btn-outline:hover { background: var(--coffee); color: var(--paper); transform: translateY(-2px); }

.btn-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250,243,231,0.55);
}
.btn-light:hover { background: var(--paper); color: var(--coffee); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--caramel-deep);
  outline-offset: 3px;
}

/* ---------- Placeholder photography ----------
   Real Sherry's photography goes here. Each block keeps the
   correct aspect ratio / shape for its spot so a real photo
   can be dropped in as a straight <img> swap (see data-photo). */
.photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--blush-soft) 0%, var(--cream-deep) 55%, var(--blush) 100%);
  display: flex;
  align-items: flex-end;
  color: var(--coffee-soft);
  isolation: isolate;
}
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(185,123,63,0.16), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(60,42,30,0.12), transparent 50%);
}
.photo .photo-label {
  position: relative;
  z-index: 1;
  padding: 1rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coffee);
  background: rgba(250,243,231,0.72);
  backdrop-filter: blur(2px);
  width: 100%;
}
.photo svg { position: absolute; inset: 0; margin: auto; opacity: 0.5; }

.img-reveal { transition: transform 1.1s var(--ease), opacity 0.9s var(--ease); }

/* organic / editorial masks */
.mask-arch { border-radius: 220px 220px 20px 20px; }
.mask-drop { border-radius: 8% 92% 8% 92% / 92% 8% 92% 8%; }
.mask-round { border-radius: 50%; }
.mask-soft { border-radius: 4px 120px 4px 120px; }
.mask-wide { border-radius: 6px 6px 200px 6px; }

/* line-art icons */
.icon-line {
  width: 34px;
  height: 34px;
  stroke: var(--coffee);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ================= Header / Nav ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,243,231,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60,42,30,0.08);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(44,29,20,0.06); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--coffee);
  font-weight: 600;
}
.brand-mark {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text small {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel-deep);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--coffee-soft);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--caramel-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--coffee); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--coffee-soft);
  min-height: 44px;
  padding: 0.4rem 0;
}
.nav-call svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--coffee);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= Hero ================= */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy .location-label {
  margin-bottom: 1.3rem;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  margin: 0.4rem 0 1.4rem;
}
.hero-copy .lede {
  font-size: 1.08rem;
  color: var(--coffee-soft);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.hero-tags {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--caramel-deep);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  height: clamp(360px, 46vw, 560px);
}
.hero-photo-main {
  position: absolute;
  inset: 0 0 10% 8%;
  border-radius: 4% 45% 4% 45% / 4% 12% 4% 12%;
  box-shadow: 0 30px 60px -20px rgba(44,29,20,0.35);
}
.hero-photo-sub {
  position: absolute;
  left: -6%;
  bottom: -6%;
  width: 46%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 40px -16px rgba(44,29,20,0.4);
}
.hero-scribble {
  position: absolute;
  top: -6%;
  right: -4%;
  width: 90px;
  height: 90px;
  stroke: var(--caramel-deep);
  opacity: 0.6;
}

/* ================= Section basics ================= */
section { position: relative; }
.section-pad { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush-soft); }
.bg-coffee { background: var(--coffee); color: var(--cream); }
.bg-coffee h2, .bg-coffee h3 { color: var(--cream); }
.bg-paper { background: var(--paper); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-top: 0.6rem; }
.section-head p { margin-top: 1.1rem; color: var(--coffee-soft); font-size: 1.02rem; max-width: 56ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Intro ---------- */
.intro { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro-visual { position: relative; height: clamp(320px, 34vw, 460px); }
.intro-photo-a { position: absolute; inset: 0 12% 14% 0; border-radius: 6px 140px 6px 140px; }
.intro-photo-b {
  position: absolute;
  left: 0; bottom: -8%;
  width: 52%;
  aspect-ratio: 4/3;
  border-radius: 130px 6px 130px 6px;
  border: 6px solid var(--cream);
  box-shadow: 0 18px 34px -14px rgba(44,29,20,0.3);
}
.intro-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin: 0.6rem 0 1.3rem; }
.intro-copy p { color: var(--coffee-soft); margin-bottom: 1rem; max-width: 52ch; }

/* ---------- Moments ---------- */
.moments-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.moment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.moment .photo { aspect-ratio: 1 / 1; border-radius: 12px; }

.moment-title { display: flex; align-items: center; gap: 0.7rem; }
.moment-title h3 { font-size: 1.15rem; }
.moment p.desc { color: var(--coffee-soft); font-size: 0.95rem; max-width: 40ch; }

/* ---------- Feature strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250,243,231,0.18);
}
.feature-item {
  padding: 2.6rem 1.8rem;
  border-right: 1px solid rgba(250,243,231,0.18);
}
.feature-item:last-child { border-right: none; }
.feature-item svg { stroke: var(--caramel); width: 32px; height: 32px; margin-bottom: 1.2rem; }
.feature-item h3 { color: var(--cream); font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-item p { color: rgba(250,243,231,0.72); font-size: 0.9rem; }

/* ---------- Big food sections (breakfast/lunch) ---------- */
.food-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.food-split.reverse .food-copy { order: 2; }
.food-split.reverse .food-visual { order: 1; }
.food-visual { position: relative; height: clamp(340px, 38vw, 500px); }
.food-photo-main { position: absolute; inset: 0 10% 8% 0; border-radius: 8px 8px 160px 8px; }
.food-photo-sub {
  position: absolute;
  left: -4%; bottom: -10%;
  width: 48%;
  aspect-ratio: 5/4;
  border-radius: 160px 8px 8px 8px;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 36px -16px rgba(44,29,20,0.32);
}
.food-split.reverse .food-photo-main { inset: 0 0 8% 10%; border-radius: 8px 160px 8px 8px; }
.food-split.reverse .food-photo-sub { left: auto; right: -4%; border-radius: 8px 8px 8px 160px; }

/* Lunch section: two plain equal squares, no overlap/organic mask. */
.food-visual-square {
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.food-visual-square .photo { aspect-ratio: 1 / 1; border-radius: 10px; }

.food-copy h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0.6rem 0 1.2rem; }
.food-copy p { color: var(--coffee-soft); max-width: 46ch; margin-bottom: 1.7rem; }

/* ---------- Menu preview ---------- */
.menu-block { max-width: 760px; }
.menu-block + .menu-block { margin-top: 3rem; }
.menu-cat-label { font-family: var(--serif); font-size: 1.2rem; color: var(--caramel-deep); margin-bottom: 1.1rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(60,42,30,0.18);
}
.menu-list li:last-child { border-bottom: none; }
.menu-item-name { font-family: var(--serif); font-size: 1.08rem; color: var(--coffee); white-space: nowrap; }
.menu-fill { flex: 1; border-bottom: 1px dotted rgba(60,42,30,0.28); transform: translateY(-4px); }
.menu-item-price { font-weight: 600; color: var(--caramel-deep); font-family: var(--sans); font-size: 0.95rem; white-space: nowrap; }
.menu-note { margin-top: 1rem; font-size: 0.85rem; color: var(--coffee-soft); font-style: italic; }

.menu-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }

/* ---------- Bakery collage ---------- */
.bakery-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.bakery-collage .photo { aspect-ratio: 1 / 1; border-radius: 10px; }

.bagel-feature {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--blush-soft);
  border-radius: 4px 90px 4px 90px;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.bagel-feature .photo { aspect-ratio: 4/3; border-radius: 4px 70px 4px 70px; }
.bagel-feature h3 { font-size: 1.6rem; margin: 0.4rem 0 0.9rem; }
.bagel-feature p { color: var(--coffee-soft); margin-bottom: 0.6rem; }
.bagel-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.bagel-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--coffee);
  background: var(--paper);
  padding: 0.45em 0.9em;
  border-radius: 2px;
  border: 1px solid rgba(60,42,30,0.15);
}

/* ---------- Custom cakes ---------- */
.cakes-section { background: var(--blush-soft); }
.cakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cakes-visual { position: relative; height: clamp(340px, 36vw, 480px); }
.cakes-photo { position: absolute; inset: 0 8% 6% 8%; border-radius: 200px 200px 20px 20px; box-shadow: 0 24px 46px -18px rgba(44,29,20,0.3); }
.cakes-copy h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0.6rem 0 1.2rem; }
.cakes-copy p { color: var(--coffee-soft); max-width: 48ch; margin-bottom: 1rem; }
.cakes-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }

/* ---------- Custom event contact panel ---------- */
.event-contact-panel {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--paper);
  border-radius: 8px 60px 8px 8px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid rgba(60,42,30,0.1);
  max-width: 720px;
}
.event-contact-panel h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 0.9rem; }
.event-contact-panel > p.lead { color: var(--coffee-soft); margin-bottom: 1.8rem; max-width: 60ch; }
.event-contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.event-contact-actions .btn { min-height: 44px; }

/* Stacked full-width on phones; side by side from tablet up. */
@media (max-width: 599px) {
  .event-contact-actions { flex-direction: column; flex-wrap: nowrap; }
  .event-contact-actions .btn { width: 100%; justify-content: center; min-height: 50px; }
}

/* ---------- Reviews ---------- */
.reviews-feature { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.reviews-feature .stars { display: flex; justify-content: center; gap: 0.3rem; margin-bottom: 1.6rem; color: var(--caramel); }
.reviews-feature .stars svg { width: 20px; height: 20px; fill: var(--caramel); stroke: none; }
.reviews-feature blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  color: var(--coffee);
  margin: 0;
  line-height: 1.2;
}
.reviews-feature cite { display: block; margin-top: 1.4rem; font-style: normal; color: var(--caramel-deep); font-weight: 600; font-size: 0.9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(60,42,30,0.12);
  border: 1px solid rgba(60,42,30,0.12);
}
.review-card { background: var(--cream); padding: 2.2rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.review-card .stars { display: flex; gap: 0.25rem; color: var(--caramel); }
.review-card .stars svg { width: 15px; height: 15px; fill: var(--caramel); stroke: none; }
.review-card p { font-size: 0.98rem; color: var(--coffee-soft); }
.review-card .reviewer { font-weight: 600; color: var(--coffee); font-size: 0.88rem; }

/* ---------- Community/interior ---------- */
.community-section { position: relative; }
.community-photo { height: clamp(420px, 62vw, 640px); border-radius: 0; }
.community-overlay {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(1.5rem, 5vw, 3.5rem);
  max-width: 560px;
  background: rgba(250,243,231,0.94);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 4px 60px 4px 4px;
}
.community-overlay h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 0.9rem; }
.community-overlay p { color: var(--coffee-soft); }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 4 260px;
  column-gap: 1.3rem;
  margin-top: 3rem;
}
.gallery-grid .photo {
  break-inside: avoid;
  margin-bottom: 1.3rem;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-grid .photo:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-grid .photo:nth-child(3n+2) { aspect-ratio: 1/1; }
.gallery-grid .photo:nth-child(3n) { aspect-ratio: 5/4; }
.gallery-grid .photo img, .gallery-grid .photo { transition: transform 0.6s var(--ease); }
.gallery-grid .photo:hover { transform: translateY(-3px); }

/* ---------- Our Story ---------- */
.story-wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.story-wrap h2 { font-size: clamp(2rem, 4vw, 3rem); }
.story-wrap p { margin-top: 1.5rem; font-size: 1.08rem; color: var(--coffee-soft); }
.story-divider { width: 60px; height: 1px; background: var(--caramel); margin: 2.4rem auto; }

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.visit-copy h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0.6rem 0 1.6rem; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 2rem; margin-bottom: 2rem; }
.visit-detail h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel-deep); margin-bottom: 0.6rem; }
.visit-detail p { color: var(--coffee-soft); font-size: 0.98rem; }
.visit-hours { list-style: none; margin: 0; padding: 0; font-size: 0.95rem; color: var(--coffee-soft); }
.visit-hours li { display: flex; justify-content: space-between; padding: 0.35rem 0; border-bottom: 1px dashed rgba(60,42,30,0.15); max-width: 320px; }
.visit-hours li:last-child { border-bottom: none; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.map-frame { width: 100%; height: 100%; min-height: 380px; border: 0; border-radius: 4px 60px 4px 4px; filter: sepia(8%) saturate(85%); }

/* ---------- Footer ---------- */
.site-footer { background: var(--coffee); color: rgba(250,243,231,0.85); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand span { font-family: var(--serif); font-size: 1.25rem; color: var(--cream); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col p { font-size: 0.92rem; color: rgba(250,243,231,0.78); }
.footer-col a:hover { color: var(--cream); }
.footer-tagline { font-family: var(--script); font-size: 1.4rem; color: var(--caramel); margin-top: 1.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(250,243,231,0.14);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(250,243,231,0.55);
}

.footer-credit {
  padding: 0 0 1.6rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(250,243,231,0.4);
}
.footer-credit .credit-link {
  color: inherit;
  transition: color 0.3s var(--ease);
}
.footer-credit .credit-link:hover,
.footer-credit .credit-link:focus-visible {
  color: rgba(250,243,231,0.75);
}
.footer-credit .credit-mark {
  letter-spacing: 0.14em;
  color: var(--caramel);
  font-weight: 600;
}

/* ---------- Sticky mobile call CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--coffee);
  color: var(--cream);
  padding: 0.85rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.15);
}
.mobile-cta svg { width: 18px; height: 18px; stroke: var(--cream); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-call span.call-text { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; height: clamp(300px, 70vw, 420px); }

  .intro-grid, .food-split, .food-split.reverse, .cakes-grid, .visit-grid { grid-template-columns: 1fr; }
  .food-split.reverse .food-copy, .food-split.reverse .food-visual { order: 0; }
  .food-visual, .intro-visual, .cakes-visual { height: clamp(300px, 80vw, 420px); margin-bottom: 1rem; }
  .food-visual-square { height: auto; }

  .moments-layout { grid-template-columns: repeat(2, 1fr); }

  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-bottom: 1px solid rgba(250,243,231,0.18); }

  .reviews-grid { grid-template-columns: 1fr; }
  .menu-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .bakery-collage { grid-template-columns: repeat(2, 1fr); }
  .bagel-feature { grid-template-columns: 1fr; }

  .visit-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand-col { grid-column: 1 / -1; }

  .gallery-grid { columns: 2 200px; }

  body { padding-bottom: 56px; }
  .mobile-cta { display: flex; }
}

@media (max-width: 560px) {
  .feature-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .community-overlay { position: static; max-width: none; border-radius: 0; }
}

/* =========================================================
   2026 photography-led refresh
   ========================================================= */
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo:has(img)::before { display: none; }

.hero {
  min-height: min(840px, calc(100vh - 76px));
  min-height: min(840px, calc(100svh - 76px));
  height: clamp(650px, 82vh, 840px);
  height: clamp(650px, 82svh, 840px);
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--coffee);
}
.hero-slides,
.hero-slide,
.hero-shade { position: absolute; inset: 0; }
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1.10); }
.hero-shade {
  z-index: 1;
  background: rgba(31, 20, 14, .64);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  color: var(--paper);
  padding: clamp(2rem, 6vw, 5rem) 0;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fffaf2;
  border-bottom: 1px solid rgba(255,250,242,.42);
  padding-bottom: .28rem;
  transition: color .25s ease, border-color .25s ease;
}
.hero-location svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; flex: 0 0 auto; }
.hero-location:hover { color: #f1c88e; border-color: #f1c88e; }
.hero-content h1 {
  color: #fffaf2;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  max-width: 10ch;
  text-shadow: 0 4px 28px rgba(0,0,0,.32);
}
.hero-content h1 span { color: #e9b778; font-family: var(--script); font-weight: 500; }
.hero-content .lede {
  max-width: 54ch;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin: 1.4rem 0 1.7rem;
  color: rgba(255,250,242,.9);
}
.hero-actions { margin: 0 0 1.35rem; }
.btn-hero-primary { background: #fffaf2; color: var(--coffee); border-color: #fffaf2; }
.btn-hero-primary:hover { background: #e9b778; border-color: #e9b778; transform: translateY(-2px); }
.btn-hero-outline { color: #fffaf2; border-color: rgba(255,250,242,.7); background: rgba(255,255,255,.06); }
.btn-hero-outline:hover { background: #fffaf2; color: var(--coffee); }
.hero-content .hero-tags { color: rgba(255,250,242,.8); }
.hero-dots {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  gap: .55rem;
}
.hero-dot {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.hero-dot.active { width: 42px; background: #fff; }

.recognition {
  background: linear-gradient(120deg, #7d4932 0%, #a9633f 52%, #b97b4b 100%);
  color: #fff8ed;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.18);
}
.recognition-inner { padding-top: clamp(2.5rem, 5vw, 4.25rem); padding-bottom: clamp(2.5rem, 5vw, 4.25rem); }
.recognition-kicker { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; }
.recognition h2 { color: #fff8ed; font-size: clamp(1.9rem, 3.5vw, 3.1rem); margin: .5rem 0 .75rem; }
.recognition p:last-child { max-width: 78ch; margin: 0 auto; color: rgba(255,248,237,.86); }

.bread-feature {
  margin-top: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: #ead5bc;
  border-radius: 8px 80px 8px 80px;
  overflow: hidden;
}
.bread-feature > div { padding: clamp(2rem, 5vw, 4rem); padding-right: 0; }
.bread-feature h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: .45rem 0 1rem; }
.bread-feature .photo { min-height: 360px; align-self: stretch; }

.lunch-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.lunch-gallery .photo { aspect-ratio: 3/4; border-radius: 6px 36px 6px 36px; }
.coffee-feature { background: var(--coffee); color: #fff8ed; padding: clamp(3rem, 7vw, 6rem) 0; }
.coffee-feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.coffee-feature .photo { aspect-ratio: 4/5; max-height: 580px; border-radius: 8px 120px 8px 120px; }
.coffee-feature h2 { color: #fff8ed; font-size: clamp(2.2rem, 4vw, 3.7rem); margin: .55rem 0 1rem; }
.coffee-feature p:not(.eyebrow) { max-width: 48ch; color: rgba(255,248,237,.8); margin-bottom: 1.6rem; }
.coffee-feature .eyebrow { color: #e9b778; }
.coffee-feature .eyebrow::before { background: #e9b778; }

.event-dessert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: clamp(3rem, 6vw, 5rem) 0; }
.event-dessert-grid .photo { aspect-ratio: 4/5; border-radius: 6px 50px 6px 50px; }
.event-dessert-copy { grid-column: 1 / -1; background: rgba(255,250,242,.72); padding: clamp(1.7rem, 4vw, 3rem); border-radius: 8px; text-align: center; }
.event-dessert-copy .eyebrow { justify-content: center; }
.event-dessert-copy h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: .45rem 0 .8rem; }
.event-dessert-copy p:not(.eyebrow) { max-width: 65ch; margin: 0 auto 1.4rem; color: var(--coffee-soft); }

@media (max-width: 780px) {
  .hero { min-height: 690px; height: 86vh; height: 86svh; }
  .hero-shade { background: rgba(31, 20, 14, .68); }
  .hero-content { align-self: end; padding-bottom: 6.2rem; }
  .hero-content h1 { font-size: clamp(2.85rem, 13vw, 4.5rem); max-width: 9ch; }
  .brand-mark { width: 62px; height: 62px; }
  .hero-content .lede { font-size: .98rem; max-width: 37ch; }
  .hero-content .hero-tags { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: min(100%, 310px); justify-content: center; }
  .hero-dots { left: var(--gutter); right: auto; bottom: 2rem; }
  .bread-feature, .coffee-feature-grid { grid-template-columns: 1fr; }
  .bread-feature { border-radius: 8px 50px 8px 50px; }
  .bread-feature > div { padding: 2rem; }
  .bread-feature .photo { min-height: 280px; }
  .lunch-gallery { grid-template-columns: repeat(2, 1fr); }
  .event-dessert-grid { grid-template-columns: 1fr; }
  .event-dessert-grid .photo { aspect-ratio: 4/4.5; }
  .event-dessert-copy { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero { min-height: 650px; }
  .hero-dot { width: 17px; }
  .hero-dot.active { width: 30px; }
  .recognition p:last-child { font-size: .9rem; }
  .lunch-gallery { gap: .5rem; }
}

/* Mobile-first finishing pass */
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { overflow-x: clip; }
img { max-width: 100%; }
a, button, input, select, textarea { touch-action: manipulation; }

@media (max-width: 780px) {
  :root { --gutter: clamp(1rem, 5vw, 1.4rem); }
  .section-pad { padding-top: 3.75rem; padding-bottom: 3.75rem; }
  .site-header, .nav { min-height: 72px; height: 72px; }
  .nav { padding-inline: .85rem; }
  .brand-mark { width: 58px; height: 58px; object-fit: contain; }
  .nav-actions { gap: .35rem; }
  .nav-actions > .btn { display: none; }
  .nav-call, .nav-toggle { min-width: 44px; min-height: 44px; display: grid; place-items: center; }
  .nav-links.nav-open { max-height: calc(100vh - 72px); max-height: calc(100dvh - 72px); overflow-y: auto; border-top: 1px solid rgba(60,42,30,.1); }
  .nav-links.nav-open a { display: block; padding: .55rem 0; font-size: 1rem; }
  .hero { height: auto; min-height: calc(100vh - 72px); min-height: calc(100svh - 72px); max-height: none; place-items: end start; }
  .hero-slide { display: none; transform: none !important; transition: none; object-fit: cover; }
  .hero-slide:first-child { display: block; opacity: 1; object-position: 54% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(31,20,14,.28), rgba(31,20,14,.48) 38%, rgba(31,20,14,.86)); }
  .hero-content { width: calc(100% - 2 * var(--gutter)); padding: 7.5rem 0 5.2rem; align-self: end; }
  .hero-location { font-size: .68rem; letter-spacing: .13em; margin-bottom: .8rem; }
  .hero-content h1 { max-width: 11ch; font-size: clamp(2.55rem, 12vw, 4rem); line-height: .98; }
  .hero-content .lede { max-width: 32rem; font-size: .98rem; line-height: 1.55; margin: 1rem 0 1.25rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; width: 100%; }
  .hero-actions .btn { width: 100%; min-height: 48px; padding: .8rem .7rem; font-size: .82rem; }
  .hero-dots { display: none; }
  .intro-grid, .food-split, .food-split.reverse, .cakes-grid, .visit-grid, .bagel-feature, .bread-feature, .coffee-feature-grid { gap: 2rem; }
  .intro-visual, .food-visual, .cakes-visual { height: auto; margin: 0; display: grid; grid-template-columns: 1fr 38%; gap: .7rem; }
  .intro-photo-a, .intro-photo-b, .food-photo-main, .food-photo-sub, .food-split.reverse .food-photo-main, .food-split.reverse .food-photo-sub, .cakes-photo { position: relative; inset: auto; left: auto; right: auto; bottom: auto; width: 100%; border: 0; box-shadow: none; }
  .intro-photo-a, .food-photo-main, .cakes-photo { aspect-ratio: 4/3; border-radius: 8px 46px 8px 46px; }
  .intro-photo-b, .food-photo-sub { aspect-ratio: 3/4; align-self: end; border-radius: 36px 8px 36px 8px; }
  .cakes-visual { display: block; }
  .cakes-photo { aspect-ratio: 4/4.5; max-height: 540px; }
  .food-visual-square { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .food-visual-square .photo { aspect-ratio: 1 / 1; border-radius: 8px; }
  .moments-layout { grid-template-columns: 1fr 1fr; gap: 1.5rem .8rem; margin-top: 2rem; }
  .moment .photo { aspect-ratio: 1 / 1; margin: 0; border-radius: 10px; }
  .moment-title { align-items: flex-start; gap: .4rem; }
  .moment-title .icon-line { width: 22px; min-width: 22px; }
  .moment-title h3 { font-size: 1rem; }
  .moment p.desc { font-size: .88rem; }
  .menu-item-name { white-space: normal; font-size: 1rem; }
  .menu-fill { display: none; }
  .menu-list li { min-height: 44px; align-items: center; }
  .bakery-collage { gap: .65rem; }
  .bakery-collage .photo { border-radius: 8px; }
  .bagel-feature, .bread-feature { padding: 1.15rem; border-radius: 8px 40px 8px 40px; }
  .bread-feature > div { padding: .7rem .55rem 0; }
  .bread-feature .photo { min-height: 0; aspect-ratio: 4/3; }
  .lunch-gallery { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .lunch-gallery .photo { aspect-ratio: 4/5; border-radius: 7px 25px 7px 25px; }
  .coffee-feature .photo { aspect-ratio: 4/5; max-height: 520px; border-radius: 8px 55px 8px 55px; }
  .event-dessert-grid { gap: .75rem; }
  .event-dessert-grid .photo { aspect-ratio: 4/5; max-height: 520px; }
  .event-contact-panel { padding: 1.25rem; border-radius: 8px 40px 8px 8px; }
  .reviews-grid { gap: .75rem; background: transparent; border: 0; }
  .review-card { padding: 1.5rem 1.25rem; border: 1px solid rgba(60,42,30,.1); }
  .community-photo { height: auto; aspect-ratio: 4/3; }
  .community-overlay { padding: 1.5rem var(--gutter); }
  .gallery-grid { columns: 2; column-gap: .65rem; margin-top: 2rem; }
  .gallery-grid .photo { margin-bottom: .65rem; }
  .map-frame { min-height: 320px; border-radius: 8px 35px 8px 8px; }
  .visit-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
  .visit-actions .btn { width: 100%; justify-content: center; padding-inline: .65rem; }
  .footer-grid { gap: 2rem; }
}

@media (max-width: 390px) {
  .hero-content { padding-bottom: 4.7rem; }
  .hero-content h1 { font-size: clamp(2.35rem, 11.5vw, 3.2rem); }
  .hero-actions, .visit-actions { grid-template-columns: 1fr; }
  .hero-actions .btn { min-height: 46px; }
  .moments-layout { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .hero-content h1 { font-size: clamp(3.8rem, 7vw, 5.5rem); }
  .lunch-gallery { grid-template-columns: repeat(2, 1fr); }
}

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