/* =================================================================
   Patisserie Lane — sage cottage patisserie
   ================================================================= */

:root {
  /* ink palette */
  --paper:      #f4ecda;   /* warm cream */
  --paper-2:    #ebe1c9;   /* deeper cream */
  --paper-3:    #ddd1b3;   /* even deeper, for dividers */
  --sage:       #7a8b6f;
  --sage-deep:  #4f5d47;
  --sage-mist:  #c2cdb8;
  --ink:        #2b2620;
  --ink-2:      #4a3d33;
  --jam:        #b46b62;   /* raspberry accent */
  --gold:       #b8924c;

  /* fonts */
  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body:    "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --script:  "Caveat", "Brush Script MT", cursive;

  /* layout */
  --shell-max: 1320px;
  --gutter:    clamp(20px, 4vw, 56px);
  --radius:    14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(at 18% 8%,  rgba(122,139,111,0.13) 0, transparent 45%),
    radial-gradient(at 85% 92%, rgba(180,107,98,0.10) 0, transparent 50%),
    radial-gradient(at 90% 18%, rgba(184,146,76,0.08) 0, transparent 40%);
  overflow-x: hidden;
}

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

::selection { background: var(--sage); color: var(--paper); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* paper grain on whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.14  0 0 0 0 0.10  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
}

/* =================================================================
   Nav
   ================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--gutter);
  background: rgba(244,236,218, 0.78);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled {
  border-bottom-color: rgba(43,38,32,0.12);
  background: rgba(244,236,218, 0.92);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark { width: 36px; height: 36px; color: var(--sage-deep); }
.brand-word {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color .2s;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s cubic-bezier(.7,.1,.2,1);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  letter-spacing: 0.08em;
  transition: background .25s, color .25s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
@media (max-width: 820px) {
  .nav-links { gap: 18px; font-size: 0.78rem; }
  .nav-links a:not(.nav-cta):nth-child(1),
  .nav-links a:not(.nav-cta):nth-child(3) { display: none; }
}
@media (max-width: 560px) {
  .nav-links a:not(.nav-cta):nth-child(2),
  .nav-links a:not(.nav-cta):nth-child(4) { display: none; }
  .brand-word { display: none; }
}

/* =================================================================
   Hero
   ================================================================= */
.hero {
  position: relative;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) var(--gutter) clamp(72px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .55;
  pointer-events: none;
}
.hero-shape-1 {
  width: 480px; height: 480px;
  left: -120px; top: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(122,139,111,0.55), transparent 70%);
}
.hero-shape-2 {
  width: 360px; height: 360px;
  right: 8%; bottom: 6%;
  background: radial-gradient(circle at 60% 60%, rgba(180,107,98,0.45), transparent 70%);
}
.hero-grain { display: none; }

.kicker {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--sage-deep);
  margin: 0 0 28px;
  font-weight: 600;
}
.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3.6rem, 9.5vw, 8.2rem);
  line-height: 0.95;
  letter-spacing: -0.012em;
  margin: 0 0 32px;
  color: var(--ink);
}
.display span { display: block; }
.display-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
  padding-left: clamp(28px, 6vw, 80px);
}
.lede {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .2s ease, background .25s, color .25s, border-color .25s;
  cursor: pointer;
  font-family: var(--body);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-on-dark.btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-on-dark.btn-primary:hover { background: var(--sage-mist); border-color: var(--sage-mist); }
.btn-on-dark.btn-ghost {
  color: var(--paper);
  border-color: rgba(244,236,218,0.65);
}
.btn-on-dark.btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-arrow span { transition: transform .25s ease; display: inline-block; }
.btn-arrow:hover span { transform: translateX(4px); }

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  margin: 0;
}
.availability .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(122,139,111,0.22);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(122,139,111,0.22); }
  50%     { box-shadow: 0 0 0 9px rgba(122,139,111,0); }
}

.hero-tile {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 30px 60px -28px rgba(43,38,32,0.55),
    0 12px 24px -12px rgba(43,38,32,0.30);
  transform: rotate(1.2deg);
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-tile figcaption {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: var(--paper);
  padding: 14px 22px;
  border-radius: 10px;
  transform: rotate(-2.2deg);
  box-shadow: 0 8px 22px -10px rgba(43,38,32,0.4);
  display: grid;
  gap: 2px;
  max-width: 70%;
}
.hero-tile .caveat {
  font-family: var(--script);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--jam);
}
.cap-sub {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-tile { max-width: 480px; margin-inline: auto; }
}

/* =================================================================
   Marquee
   ================================================================= */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(244,236,218,0.08);
  border-bottom: 1px solid rgba(244,236,218,0.08);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scroll-left 45s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  letter-spacing: 0.02em;
}
.marquee-track .dot-sep {
  color: var(--sage-mist);
  font-style: normal;
  font-size: 0.9em;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================================================================
   Stats
   ================================================================= */
.stats {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(60px, 7vw, 100px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-bottom: 1px solid var(--paper-3);
}
.stat { display: flex; flex-direction: column; gap: 12px; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stat-num.caveat {
  font-family: var(--script);
  font-style: normal;
  color: var(--jam);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 0.9;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* =================================================================
   Shared section type
   ================================================================= */
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  color: var(--sage-deep);
  font-weight: 600;
  margin: 0 0 24px;
}
.eyebrow-light { color: var(--sage-mist); }
.h-display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
}
.h-display-light { color: var(--paper); }
.h-display-light em { color: var(--sage-mist); }

/* =================================================================
   Story
   ================================================================= */
.story {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 140px) var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.story p { max-width: 56ch; line-height: 1.75; color: var(--ink-2); }
.story-meta {
  margin-top: 36px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--paper-3);
  padding-top: 28px;
}
.story-meta li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  font-size: 0.95rem;
}
.story-meta strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--sage-deep);
  font-style: italic;
}
.story-meta span { color: var(--ink-2); }

.story-portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 50px -22px rgba(43,38,32,0.45);
}
.story-portrait img { width: 100%; height: 100%; object-fit: cover; }
.story-tag {
  position: absolute;
  top: -16px; right: -10px;
  background: var(--sage);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1.4rem;
  transform: rotate(6deg);
  box-shadow: 0 6px 18px -8px rgba(43,38,32,0.4);
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story-portrait { max-width: 460px; margin-inline: auto; }
}

/* =================================================================
   Featured
   ================================================================= */
.featured {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 130px) var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid var(--paper-3);
}
.featured-text p { color: var(--ink-2); line-height: 1.75; max-width: 42ch; margin-bottom: 28px; }
.featured-image {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(43,38,32,0.5);
}
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-stamp {
  position: absolute;
  top: 20px; right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(244,236,218,0.92);
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px -10px rgba(43,38,32,0.3);
}
.featured-stamp-mid { color: var(--jam); }
@media (max-width: 900px) {
  .featured { grid-template-columns: 1fr; }
}

/* =================================================================
   Menu (dark sage section w/ QR)
   ================================================================= */
.menu {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  margin-top: clamp(20px, 4vw, 60px);
}
.menu-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(at 80% 20%, rgba(122,139,111,0.25), transparent 55%),
    radial-gradient(at 15% 90%, rgba(184,146,76,0.16), transparent 60%);
}
.menu-inner {
  position: relative;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.menu-copy p.menu-lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244,236,218,0.78);
  max-width: 46ch;
  margin: 0 0 32px;
}
.menu-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(244,236,218,0.15);
  padding-top: 28px;
}
.menu-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: baseline;
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(244,236,218,0.92);
}
.menu-list .caveat {
  font-size: 1.6rem;
  color: var(--jam);
  font-style: normal;
  line-height: 1;
}

.menu-qr {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.qr-frame {
  position: relative;
  padding: 22px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.qr-frame img {
  width: clamp(220px, 26vw, 300px);
  height: auto;
  display: block;
  image-rendering: pixelated;
}
.qr-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--sage-deep);
}
.qr-tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.qr-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.qr-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.qr-br { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.menu-qr figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
}
.qr-caveat {
  font-size: 2rem;
  color: var(--jam);
  line-height: 1;
}
.qr-label {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,236,218,0.75);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .menu-inner { grid-template-columns: 1fr; }
  .menu-qr { order: -1; }
}

/* =================================================================
   Gallery
   ================================================================= */
.gallery {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.gallery-head { max-width: 720px; margin-bottom: 56px; }
.gallery-sub { color: var(--ink-2); line-height: 1.7; max-width: 56ch; margin: 0; }
.gallery-sub a {
  color: var(--sage-deep);
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper-2);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .35s;
}
.tile:hover { box-shadow: 0 24px 40px -20px rgba(43,38,32,0.4); }
.tile:hover img { transform: scale(1.05); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,38,32,0.45), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.tile:hover::after { opacity: 1; }
.tile-cap {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.3;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  z-index: 1;
}
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }

/* tile sizes — mix portrait & square. NEVER stretch portrait into wide. */
.tile:nth-child(1)  { grid-column: span 7; aspect-ratio: 5/4; }
.tile:nth-child(2)  { grid-column: span 5; aspect-ratio: 4/5; }
.tile:nth-child(3)  { grid-column: span 4; aspect-ratio: 1/1; }
.tile:nth-child(4)  { grid-column: span 4; aspect-ratio: 1/1; }
.tile:nth-child(5)  { grid-column: span 4; aspect-ratio: 4/5; }
.tile:nth-child(6)  { grid-column: span 5; aspect-ratio: 4/5; }
.tile:nth-child(7)  { grid-column: span 7; aspect-ratio: 1/1; }
.tile:nth-child(8)  { grid-column: span 4; aspect-ratio: 1/1; }
.tile:nth-child(9)  { grid-column: span 4; aspect-ratio: 1/1; }
.tile:nth-child(10) { grid-column: span 4; aspect-ratio: 4/5; }
.tile:nth-child(11) { grid-column: span 6; aspect-ratio: 4/5; }
.tile:nth-child(12) { grid-column: span 6; aspect-ratio: 1/1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .tile:nth-child(odd)  { grid-column: span 3; aspect-ratio: 4/5; }
  .tile:nth-child(even) { grid-column: span 3; aspect-ratio: 1/1; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tile { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
}

/* =================================================================
   Quote
   ================================================================= */
.quote {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
}
.quote blockquote {
  margin: 0;
  position: relative;
}
.quote .qm {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 8rem;
  color: var(--sage-mist);
  line-height: 1;
  font-style: italic;
}
.quote p {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.quote em { color: var(--sage-deep); font-weight: 400; }
.quote-attr {
  margin: 24px 0 0;
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--jam);
}

/* =================================================================
   What we make
   ================================================================= */
.make {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--paper-3);
}
.make .eyebrow { margin-bottom: 48px; }
.make-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.make-card {
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s, box-shadow .3s;
}
.make-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -24px rgba(43,38,32,0.3);
}
.make-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--jam);
  letter-spacing: 0.06em;
}
.make-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.make-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 1000px) { .make-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .make-grid { grid-template-columns: 1fr; } }

/* =================================================================
   Reserve form
   ================================================================= */
.reserve {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  border-top: 1px solid var(--paper-3);
}
.reserve-copy p { line-height: 1.75; color: var(--ink-2); max-width: 46ch; }
.reserve-meta {
  list-style: none;
  padding: 24px 0 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--paper-3);
  display: grid;
  gap: 12px;
}
.reserve-meta li { font-size: 0.95rem; color: var(--ink-2); }
.reserve-meta strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--sage-deep);
}
.reserve-meta a { color: var(--sage-deep); border-bottom: 1px solid currentColor; }

.reserve-form {
  background: var(--paper-2);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 18px;
  border: 1px solid var(--paper-3);
  display: grid;
  gap: 18px;
}
.reserve-form label {
  display: grid;
  gap: 8px;
}
.reserve-form label span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.reserve-form label span em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  opacity: .7;
  font-weight: 400;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--paper-3);
  background: var(--paper);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(122,139,111,0.2);
}
.reserve-form textarea { resize: vertical; min-height: 80px; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.btn-submit { justify-content: center; margin-top: 8px; }
.form-status {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--sage-deep);
  min-height: 1.2em;
}
.form-status.error { color: var(--jam); }
@media (max-width: 900px) {
  .reserve { grid-template-columns: 1fr; }
}

/* =================================================================
   Footer
   ================================================================= */
.footer {
  background: var(--ink);
  color: rgba(244,236,218,0.84);
  padding: clamp(70px, 8vw, 110px) var(--gutter) 30px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244,236,218,0.12);
}
.footer-mark { width: 44px; height: 44px; color: var(--sage-mist); margin-bottom: 18px; }
.footer-word {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--paper);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}
.footer-line { max-width: 30ch; font-size: 0.92rem; line-height: 1.65; margin: 0; }
.footer-h {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--sage-mist);
  margin: 0 0 14px;
}
.footer-col p { margin: 0 0 8px; font-size: 0.92rem; line-height: 1.65; }
.footer-col a { border-bottom: 1px solid rgba(244,236,218,0.25); }
.footer-col a:hover { color: var(--paper); border-color: var(--paper); }
.footer-caveat {
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--jam);
}
.footer-bottom {
  max-width: var(--shell-max);
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(244,236,218,0.55);
}
.footer-bottom .dot-sep { opacity: .6; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   Lightbox
   ================================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,17,14,0.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-frame {
  position: relative;
  max-width: min(900px, 100%);
  max-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox-frame img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.lightbox-frame figcaption {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--paper);
  text-align: center;
  max-width: 60ch;
  line-height: 1.5;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(244,236,218,0.92);
  color: var(--ink);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.lightbox-close { top: 4vw; right: 4vw; font-size: 1.6rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-prev { left: 4vw; }
.lightbox-next { right: 4vw; }
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--paper); }

/* =================================================================
   Reveal on scroll
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .availability .dot { animation: none; }
}
