/* ==========================================================
   Godric's Café · Goodrich
   Modern photo-led neighbourhood café site
   Type: Instrument Serif + Instrument Sans
   Mobile-first
   v13 — depth, layers, motion
   ========================================================== */

/* ---- Tokens ---------------------------------------------- */
:root {
  /* Cream family */
  --paper:        #FAF6EC;
  --paper-stone:  #F1E9D4;
  --paper-edge:   #E8DEC2;

  /* Ink */
  --ink:          #1F1B18;
  --ink-soft:     #3A322A;
  --foxed:        #6B5C4D;
  --foxed-light:  #948575;

  /* Accents */
  --terracotta:       #C26941;
  --terracotta-deep:  #A35835;
  --terracotta-ink:   #7A3818;   /* eyebrow / link on light bg, AA on cream and stone */
  --terracotta-soft:  #E8B894;
  --sage:             #7A8B5C;
  --sage-deep:        #5C6E40;

  /* Type */
  --serif: 'Instrument Serif', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans:  'Instrument Sans', 'Söhne', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Scale */
  --max-w: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Rules */
  --rule:      rgba(31, 27, 24, 0.14);
  --rule-bold: rgba(31, 27, 24, 0.32);

  /* Shadow */
  --shadow-sm: 0 2px 6px rgba(40, 30, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(40, 30, 20, 0.10);
  --shadow-lg: 0 18px 48px rgba(40, 30, 20, 0.14);
  --shadow-xl: 0 30px 80px rgba(40, 30, 20, 0.18);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  scroll-padding-bottom: 96px;
}
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Page-wide paper grain — subtle texture under everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='6' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0.5 0'/></filter><rect width='240' height='240' filter='url(%23g)' opacity='0.18'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 1000;
  font-family: var(--sans);
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; outline: 2px solid var(--terracotta); }

/* Focus */
*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Type --------------------------------------------- */
.serif    { font-family: var(--serif); font-weight: 400; }
.sans     { font-family: var(--sans); font-weight: 400; }
.italic   { font-style: italic; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 8vw, 80px); }
h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.08; }
h3 { font-size: clamp(22px, 3vw, 32px); line-height: 1.15; }

p { font-family: var(--sans); }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--terracotta-ink);
  display: inline-block;
}
.eyebrow--muted { color: var(--foxed); }
.eyebrow--muted::before { background: var(--foxed); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink);
}

/* ---- Layout primitives -------------------------------- */
.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}
.bay {
  padding-block: clamp(56px, 9vw, 120px);
  position: relative;
}
.bay--tight { padding-block: clamp(40px, 6vw, 80px); }
.bay--stone { background: var(--paper-stone); }

.row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 16px; }

/* ---- Buttons ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.22s var(--ease-out), color 0.22s var(--ease-out), transform 0.22s var(--ease-out), border-color 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(194, 105, 65, 0.32);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  box-shadow: 0 10px 22px rgba(194, 105, 65, 0.38);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  min-height: auto;
}
.btn-ghost:hover { color: var(--terracotta); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.22s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s var(--ease-out);
}
.nav.scrolled { box-shadow: 0 1px 0 var(--rule), 0 8px 24px rgba(40,30,20,0.06); }

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-mark {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 0;
  min-height: 44px;
  align-items: center;
}
.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 12px 4px;
  position: relative;
  transition: color 0.18s var(--ease-out);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 8px;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: none; }
.nav-toggle {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 820px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 60;
  padding: 24px var(--gutter);
  display: none;
  flex-direction: column;
  gap: 16px;
}
.nav-drawer.open { display: flex; }
.nav-drawer-head { display: flex; justify-content: space-between; align-items: center; min-height: 44px; }
.nav-drawer-close { background: transparent; border: none; width: 44px; height: 44px; }
.nav-drawer a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: block;
}
.nav-drawer a:last-of-type { border-bottom: none; }

/* ============================================================
   HERO — layered composition
   ============================================================ */
.hero {
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: 0;
  position: relative;
  z-index: 5;
}
.hero-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
  padding-block: clamp(20px, 3vw, 56px) clamp(40px, 6vw, 80px);
  align-self: center;
  position: relative;
  z-index: 3;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--foxed-light);
  flex-shrink: 0;
  position: relative;
}
.hero-status .dot.open { background: var(--sage); }
.hero-status .dot.open::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.4;
  animation: gentle-pulse 2.6s var(--ease-in-out) infinite;
}
.hero-status .dot.closed { background: var(--terracotta); }
.hero-status .open-text { color: var(--ink); font-weight: 600; }

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(2); opacity: 0; }
}

.hero-mark {
  font-family: var(--serif);
  font-size: clamp(56px, 13vw, 152px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--ink);
  position: relative;
}
.hero-mark .second {
  font-style: italic;
  display: inline-block;
  color: var(--terracotta-deep);
  position: relative;
}
/* The italic Café drop-letter that hangs over the photo */
.hero-mark .second::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.06em;
  height: 0.08em;
  background: var(--terracotta);
  opacity: 0.18;
  border-radius: 999px;
}

.hero-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
  border-radius: 14px;
  background: var(--paper-stone);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
  transform-origin: center;
  will-change: transform;
}
/* Warm color wash gradient at the photo's left edge fading into cream */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,246,236,0.0) 0%, rgba(250,246,236,0.0) 100%);
  pointer-events: none;
  z-index: 1;
}
/* A subtle terracotta vignette */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 70% 50%, transparent 60%, rgba(122, 56, 24, 0.18));
  pointer-events: none;
  z-index: 1;
}

/* (hero sticker removed — was decorative, not earning its place) */

@media (min-width: 720px) {
  .hero { padding-bottom: 0; }
  .hero-grid {
    grid-template-columns: 1fr minmax(360px, 50vw);
    gap: clamp(36px, 5vw, 80px);
    align-items: stretch;
  }
  .hero-text {
    padding-block: clamp(24px, 4vw, 64px) clamp(48px, 7vw, 100px);
    z-index: 3;
    overflow: visible;
  }
  .hero-mark { position: relative; z-index: 4; pointer-events: none; }
  .hero-mark > * { pointer-events: auto; }
  /* Italic Café physically overlaps the photo's left edge at desktop */
  .hero-mark .second {
    display: inline-block;
    margin-left: clamp(40px, 7vw, 100px);
    transform: translateX(clamp(40px, 8vw, 140px));
    position: relative;
    z-index: 4;
  }
  .hero-photo {
    aspect-ratio: auto;
    min-height: 540px;
    height: 100%;
    border-radius: 0;
    margin-right: calc(50% - 50vw);
    overflow: visible; /* allow sticker to escape, img is masked separately */
  }
  .hero-photo img {
    object-position: 50% 60%;
    border-radius: 0;
  }
  .hero-photo::before,
  .hero-photo::after { display: none; }
  .hero-sticker {
    left: -56px;
    bottom: 56px;
    font-size: 18px;
    max-width: 220px;
    padding: 14px 20px;
  }
}
@media (min-width: 1100px) {
  .hero-photo { min-height: 660px; }
  .hero-mark .second {
    margin-left: 120px;
    transform: translateX(60px);
  }
  .hero-sticker {
    left: -64px;
    bottom: 80px;
    font-size: 19px;
    max-width: 260px;
  }
}

/* Mask the hero img with a clip so it doesn't bleed visually outside its slot,
   while leaving the sticker free to overflow */
@media (min-width: 720px) {
  .hero-photo {
    position: relative;
  }
  .hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ============================================================
   PAGE LOAD STAGGER
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.in,
body.loaded .fade-up[data-enter="now"] {
  opacity: 1;
  transform: translateY(0);
}

body.loaded .hero-status     { animation: fadeUp 0.8s var(--ease-out) 0.10s both; }
body.loaded .hero-mark       { animation: fadeUp 0.8s var(--ease-out) 0.20s both; }
body.loaded .hero-intro      { animation: fadeUp 0.8s var(--ease-out) 0.34s both; }
body.loaded .hero-actions    { animation: fadeUp 0.8s var(--ease-out) 0.46s both; }
body.loaded .hero-photo      { animation: zoomFade 1.2s var(--ease-out) 0.20s both; }
body.loaded .hero-sticker    { animation: stickerIn 0.8s var(--ease-out) 0.85s both; }
body.loaded .nav             { animation: navIn 0.6s var(--ease-out) 0.05s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zoomFade {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes stickerIn {
  from { opacity: 0; transform: rotate(0deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(-6deg) scale(1); }
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TODAY (terracotta band, decorated)
   ============================================================ */
.today {
  padding-block: clamp(32px, 4vw, 52px);
  background: var(--terracotta-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.today::before {
  /* Diagonal hatch texture, very subtle */
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.today-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--paper);
  position: relative;
  z-index: 1;
}
.today-label-row {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.today-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 6px;
}
.today-label::after {
  /* hand-drawn squiggle */
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 5px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 5' preserveAspectRatio='none'><path d='M0 3 Q 10 -1 20 2 T 40 3 T 60 2 T 80 3' stroke='%23FAF6EC' stroke-width='1.4' fill='none' opacity='0.55'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.today-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--paper);
  line-height: 1.3;
}
.today-list .sep {
  color: rgba(250, 246, 236, 0.7);
  font-style: normal;
}

@media (min-width: 820px) {
  .today-inner {
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: clamp(16px, 3vw, 36px);
  }
  .today-stamp {
    justify-self: end;
  }
}

/* (today-stamp removed — terracotta band carries the moment without ornament) */
.today-list .gf-df {
  font-style: normal;
  font-family: var(--sans);
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--paper);
  align-self: center;
  border-left: 1px solid rgba(250, 246, 236, 0.4);
  padding-left: 14px;
  margin-left: 4px;
}

/* ============================================================
   BREAKFAST — £8 stamp overlap, photo depth
   ============================================================ */
.breakfast-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
.breakfast-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.breakfast-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.breakfast-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.breakfast-photo:hover img { transform: scale(1.02); }

/* (£8 stamp removed — replaced with typographic price line) */
.breakfast-price-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin-top: 4px;
}
.breakfast-price-line .num {
  color: var(--terracotta-deep);
  font-style: normal;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: -0.01em;
}

.breakfast-text { display: flex; flex-direction: column; gap: 18px; max-width: 540px; position: relative; }
.breakfast-text h2 {
  letter-spacing: -0.025em;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
}
.breakfast-text h2 .accent {
  font-style: italic;
  color: var(--terracotta-deep);
  position: relative;
}
.breakfast-text h2 .accent::before {
  /* small leaf accent */
  content: '';
  position: absolute;
  left: -22px; top: 0.4em;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M2 12 C 2 6, 7 2, 12 2 C 12 7, 8 12, 2 12 Z M 5 9 L 11 4' stroke='%237A8B5C' stroke-width='1.2' fill='%237A8B5C' fill-opacity='0.18' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
}
.breakfast-incl {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.breakfast-note {
  font-size: 15px;
  color: var(--foxed);
}

@media (min-width: 720px) {
  .breakfast-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
  }
}
@media (min-width: 1100px) {
  .breakfast-grid { grid-template-columns: 1.4fr 1fr; }
  .breakfast-photo { aspect-ratio: 5/6; }
}

/* ============================================================
   MENU (cake & coffee)
   ============================================================ */
.menu-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 600px;
  position: relative;
}
.menu-head h2 .accent { font-style: italic; color: var(--terracotta-deep); }

.menu-grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
.menu-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}
.menu-card-photo {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  position: relative;
}
.menu-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .menu-card-photo {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card:hover .menu-card-photo img {
  transform: scale(1.04);
}

.menu-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 26px);
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--terracotta-ink);
  border-top: 1px solid var(--rule-bold);
  padding-top: 14px;
  line-height: 1.1;
}
.menu-card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: padding-left 0.3s var(--ease-out);
}
.menu-card-list li:last-child { border-bottom: none; }
.menu-card-list li:hover { padding-left: 8px; }
.menu-card-list li:hover .price { color: var(--terracotta-ink); font-weight: 600; }
.menu-card-list .price {
  color: var(--foxed);
  font-variant-numeric: tabular-nums;
  transition: color 0.18s var(--ease-out);
}
.menu-card-foot {
  font-size: 14px;
  color: var(--foxed);
  margin-top: 6px;
}

/* ============================================================
   WELCOME — practical row
   ============================================================ */
.welcome-bay { background: var(--paper-stone); }
.welcome-grid {
  display: grid;
  gap: 18px 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .welcome-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .welcome-grid { grid-template-columns: repeat(3, 1fr); } }
.welcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px;
  margin: -8px;
  border-radius: 10px;
  transition: background 0.25s var(--ease-out);
}
.welcome-item:hover {
  background: var(--paper);
}
.welcome-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  background: var(--paper);
  border-radius: 50%;
  margin-top: 2px;
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.welcome-item:hover .welcome-icon {
  color: var(--paper);
  background: var(--terracotta);
  transform: scale(1.06) rotate(-4deg);
}
.welcome-icon svg { width: 22px; height: 22px; }
.welcome-item h3 {
  font-family: var(--sans);
  font-style: normal;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.welcome-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.welcome-head {
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 600px;
}

/* ============================================================
   BUILDING — asymmetric, color words, archival stamp
   ============================================================ */
.building-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
}
.building-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: box-shadow 0.4s var(--ease-out);
}
.building-photo:hover { box-shadow: var(--shadow-lg); }
.building-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(1.05) sepia(0.06);
  transition: filter 0.6s var(--ease-out), transform 0.8s var(--ease-out);
}
.building-photo:hover img {
  filter: contrast(1.06) brightness(1.05) sepia(0);
  transform: scale(1.02);
}
/* (1830 stamp removed — historical fact lives in the prose) */

.building-text {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-block: clamp(20px, 3vw, 40px);
  align-self: center;
}
.building-text h2 {
  letter-spacing: -0.022em;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
}
.building-text h2 .older {
  font-style: italic;
  color: var(--terracotta-ink);
}
.building-text h2 .younger {
  font-style: italic;
  color: var(--sage-deep);
}
.building-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (min-width: 820px) {
  .building-grid {
    grid-template-columns: minmax(360px, 45vw) 1fr;
    gap: clamp(40px, 6vw, 80px);
  }
  .building-photo {
    aspect-ratio: auto;
    height: 100%;
    min-height: 540px;
    border-radius: 0;
    margin-left: calc(50% - 50vw);
  }
  .building-photo img { object-position: 50% 35%; }
}
@media (min-width: 1100px) {
  .building-grid { grid-template-columns: minmax(420px, 48vw) 1fr; }
  .building-photo { min-height: 640px; }
}

/* ============================================================
   GARDEN — collage with subtle rotation
   ============================================================ */
.garden-head { margin-bottom: clamp(24px, 4vw, 40px); max-width: 580px; }
.garden-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.garden-photo {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), z-index 0s 0.5s;
  position: relative;
}
.garden-photo:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), z-index 0s;
}
.garden-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.garden-photo:hover img { transform: scale(1.04); }

.garden-photo-1 { aspect-ratio: 4 / 3; }
.garden-photo-2 { aspect-ratio: 4 / 3; }
.garden-photo-3 { aspect-ratio: 4 / 3; }

@media (min-width: 720px) {
  .garden-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
  }
  .garden-photo-1 { grid-row: span 2; aspect-ratio: 1 / 1.1; }
  .garden-photo-2 { aspect-ratio: 5 / 4; }
  .garden-photo-3 { aspect-ratio: 5 / 4; }
}

/* ============================================================
   B&B teaser
   ============================================================ */
.bnb-bay { background: var(--paper-stone); position: relative; }
.bnb-grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
.bnb-text { max-width: 540px; display: flex; flex-direction: column; gap: 18px; position: relative; }
.bnb-text h2 {
  letter-spacing: -0.022em;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
}
.bnb-text h2 .accent { font-style: italic; color: var(--terracotta-deep); }
.bnb-text p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; }
.bnb-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  flex-direction: column;
}
.bnb-form-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bnb-form input {
  flex: 1;
  min-width: 220px;
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 18px;
  min-height: 48px;
  background: var(--paper);
  border: 1px solid var(--rule-bold);
  border-radius: 999px;
  color: var(--ink);
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.bnb-form input:focus {
  border-color: var(--terracotta);
  outline: none;
  box-shadow: 0 0 0 3px rgba(194, 105, 65, 0.18);
}
.bnb-form button { flex-shrink: 0; }
.bnb-form-msg {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  margin-top: 4px;
  min-height: 1.3em;
}

.bnb-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  background: var(--paper-edge);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.bnb-photo:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bnb-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.bnb-photo:hover img { transform: scale(1.03); }

/* (June 2026 stamp removed — eyebrow + accent headline now carry it) */

@media (min-width: 820px) {
  .bnb-grid { grid-template-columns: 1.1fr 1fr; }
  .bnb-form { flex-direction: row; }
  .bnb-form-row { flex: 1; flex-direction: row; }
}

/* ============================================================
   FIND US
   ============================================================ */
.find-head {
  text-align: left;
  max-width: 600px;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.find-top {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: 1fr;
}
.find-block {
  background: var(--paper-stone);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.find-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta-soft);
}
.find-block .label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-ink);
}
.find-block .val {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.find-block .sub {
  font-size: 14px;
  color: var(--foxed);
}
.find-block-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.find-block-actions a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(122, 56, 24, 0.45);
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: text-decoration-color 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.find-block-actions a:hover { text-decoration-color: var(--terracotta-ink); color: var(--terracotta-deep); }

@media (min-width: 600px) {
  .find-top { grid-template-columns: repeat(3, 1fr); }
}

.find-bottom {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
  margin-top: clamp(28px, 4vw, 48px);
  align-items: start;
}
.find-map {
  background: var(--paper);
  border-radius: 14px;
  padding: clamp(16px, 2vw, 28px);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  position: relative;
}
/* (paper-tape strips removed — were ornament not content) */
.find-map img { width: 100%; height: auto; display: block; border-radius: 6px; }
.find-map-cap {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--foxed);
  text-align: center;
  max-width: 38ch;
  margin-inline: auto;
}

.find-routes h3 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  color: var(--ink);
}
.find-routes .route {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.3s var(--ease-out);
}
.find-routes .route:hover { padding-left: 8px; }
.find-routes .route:last-child { border-bottom: none; }
.find-routes .route p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 6px;
}
.find-routes .route .distance {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  background: var(--paper-stone);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-block;
}

@media (min-width: 900px) {
  .find-bottom { grid-template-columns: 1.1fr 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(48px, 6vw, 72px);
  padding-bottom: calc(clamp(48px, 6vw, 72px) + env(safe-area-inset-bottom, 0));
  position: relative;
  z-index: 5;
}
.foot-grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: 1fr;
}
.foot-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--paper);
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}
.foot-mark::after {
  content: '';
  display: block;
  width: 64px;
  height: 6px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 6' preserveAspectRatio='none'><path d='M0 4 Q 8 0 16 3 T 32 4 T 48 3 T 64 4' stroke='%23E8B894' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.foot-blurb {
  font-size: 15px;
  color: rgba(250, 246, 236, 0.72);
  line-height: 1.6;
  max-width: 38ch;
}
.foot h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 14px;
  font-style: normal;
}
.foot a {
  color: var(--paper);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  min-height: 44px;
  transition: color 0.18s var(--ease-out);
}
.foot a:hover { color: var(--terracotta-soft); }
.foot ul { display: flex; flex-direction: column; }
.foot-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.12);
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(250, 246, 236, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(250, 246, 236, 0.96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(110%);
  transition: transform 0.32s var(--ease-out);
}
.sticky-actions.visible { transform: translateY(0); }
.sticky-actions .btn {
  font-size: 15px;
  padding: 12px 14px;
  min-height: 48px;
}
@media (min-width: 820px) {
  .sticky-actions { display: none; }
}

/* ============================================================
   REVEAL ON SCROLL
   Elements are visible by default. JS adds .reveal-armed at load
   for elements still below the fold, which pre-hides them and
   sets up the transition. .in then animates them in.
   This avoids hiding content if JS fails or for static captures.
   ============================================================ */
.reveal-armed {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-armed.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children-armed > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-children-armed.in > * { opacity: 1; transform: translateY(0); }
.reveal-children-armed.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-children-armed.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-children-armed.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-children-armed.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-children-armed.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-children-armed.in > *:nth-child(6) { transition-delay: 0.4s; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-armed, .reveal-children-armed > * { opacity: 1 !important; transform: none !important; }
  body.loaded * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .garden-photo-1, .garden-photo-2, .garden-photo-3 { transform: none; }
  html { scroll-behavior: auto; }
}
