*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fdfdfc;
  --ink: #1a1816;
  --ink-50: #78716c;
  --ink-30: #a8a29e;
  --ink-15: #d4d0cc;
  --terra: #c0694f;
  --green: #4a7c59;
  --sage: #7a9e7e;
  --gold: #b8945a;
  --plum: #8b6880;
  --slate: #7a8c9e;
}

html, body { height: 100%; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ================================================================
   LAYOUT — Full viewport, CSS Grid, three rows
   Top: brand | Middle: hero | Bottom: details + form
   ================================================================ */
.page {
  min-height: 100vh; min-height: 100svh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px clamp(28px, 6vw, 80px) 48px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto auto auto;
  gap: 0;
}

/* ================================================================
   TOP — Logo left, order button + location right
   ================================================================ */
.top-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  opacity: 0; animation: enter 0.7s ease 0.3s forwards;
}
.top-bar .logo img {
  height: 80px; width: auto; display: block;
}
.top-bar .top-bar-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-nav-link {
  display: inline-block;
  padding: 14px 6px;
  margin: -14px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-nav-link:hover,
.header-nav-link:focus-visible,
.header-nav-link[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--terra);
  text-underline-offset: 4px;
  outline: none;
}

/* Order button (green, top-right) */
.order-btn {
  display: inline-block;
  padding: 14px 36px;
  border: none;
  background: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  animation: enter 0.7s ease 0.3s forwards, btnShake 4s ease-in-out 2.5s infinite;
}
.order-soon {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 11px;
  color: var(--green);
  opacity: 0.7;
  margin: 0;
}

@keyframes btnShake {
  0%, 85% { transform: translateX(0); }
  86% { transform: translateX(-3px) rotate(-1deg); }
  88% { transform: translateX(3px) rotate(1deg); }
  90% { transform: translateX(-3px) rotate(-0.5deg); }
  92% { transform: translateX(3px) rotate(0.5deg); }
  94% { transform: translateX(-2px) rotate(0deg); }
  96% { transform: translateX(2px); }
  98% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

/* ================================================================
   HERO — Left-aligned, massive "Summer", owns the page
   ================================================================ */
.hero {
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px 0;
  opacity: 0; animation: enter 0.9s ease 0.5s forwards;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(72px, 15vw, 148px);
  line-height: 1.0; letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  padding: 0.08em 0.15em 0.12em 0.02em;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    var(--ink) 25%,
    var(--terra) 45%,
    var(--terra) 55%,
    var(--ink) 75%,
    var(--ink) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: enter 0.9s ease 0.5s forwards, shimmer 3s ease-in-out 1.5s infinite;
}
.hero-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: 0.3em;
  color: var(--ink-15);
}
.hero-tagline {
  margin-top: 40px;
  font-size: 13px; font-weight: 300;
  color: var(--ink-50); line-height: 1.7;
  max-width: 400px;
}

/* ================================================================
   BOTTOM — Grid: features left, form right
   ================================================================ */
.bottom {
  border-top: 1.5px solid var(--terra);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  opacity: 0; animation: enter 0.7s ease 0.9s forwards;
}

/* Left column: what we do + service area */
.bottom-left {}

.what-we-do {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 15px; line-height: 1.9;
  color: var(--ink-50);
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 32px;
}
.info-row {
  display: block;
  margin-bottom: 14px;
}
.info-row:last-child { margin-bottom: 0; }
.info-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 4px;
}
.info-value {
  font-size: 13px; font-weight: 300;
  color: var(--ink); line-height: 1.5;
}
.info-value a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.info-value a:hover { border-bottom-color: var(--terra); }

.service-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 8px;
}
.communities {
  font-size: 11px; font-weight: 300;
  color: var(--ink-50); line-height: 1.9;
}
.communities a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.communities a:hover,
.communities a:focus-visible {
  color: var(--terra);
  border-bottom-color: var(--terra);
  outline: none;
}

/* Right column: email form + instagram */
.bottom-right {
  display: flex; flex-direction: column;
}

.form-section { margin-bottom: 40px; }
.form-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 16px; display: block;
}
.form-input-wrap {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--ink-15);
  transition: border-color 0.3s;
}
.form-input-wrap:focus-within { border-color: var(--terra); }
.form-input-wrap input {
  flex: 1; background: none; border: none; outline: none;
  padding: 12px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 15px;
  color: var(--ink); min-width: 0;
}
.form-input-wrap input::placeholder { color: var(--ink-15); }
.form-input-wrap button {
  background: none; border: none; padding: 12px 0 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); cursor: pointer; white-space: nowrap;
  transition: color 0.2s;
}
.form-input-wrap button:hover { color: var(--ink); }
.form-note {
  font-size: 11px; font-style: italic; color: var(--ink-30);
  margin-top: 10px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* (social styles moved to .social-links) */

/* ================================================================
   FOOTER
   ================================================================ */
.page-footer {
  border-top: 1.5px solid var(--green);
  margin-top: 48px;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  opacity: 0; animation: enter 0.6s ease 1.4s forwards;
}
.page-footer .copyright {
  font-size: 10px; color: var(--ink-50);
  margin-bottom: 3px;
}
.page-footer .footer-legal {
  font-size: 9px; color: var(--ink-30);
}
.page-footer .footer-right { text-align: right; }
.page-footer .footer-address {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-30); line-height: 1.8;
  margin-bottom: 6px;
}
.page-footer .footer-meta {
  font-size: 10px; color: var(--ink-30);
}
.page-footer .footer-meta a {
  color: var(--ink-50); text-decoration: none;
  transition: color 0.2s;
}
.page-footer .footer-meta a:hover { color: var(--terra); }

/* ================================================================
   ANIMATION
   ================================================================ */
@keyframes enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: 300% 0; }
  50% { background-position: -300% 0; }
  100% { background-position: 300% 0; }
}

/* Address link */
.address-link {
  color: var(--ink-30);
  text-decoration: none;
  transition: color 0.2s;
}
.address-link:hover { color: var(--terra); }

/* (social styles moved to .social-row) */

/* Social row — standalone section */
.social-row {
  border-top: 1.5px solid var(--sage);
  padding-top: 40px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0; animation: enter 0.7s ease 1.1s forwards;
}
.social-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-15);
  color: var(--ink-50);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  background: var(--terra);
  border-color: var(--terra);
  transform: translateY(-1px);
  outline: none;
}
.social-links svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ================================================================
   WHAT TO EXPECT
   ================================================================ */
.expect {
  border-top: 1.5px solid var(--gold);
  padding-top: 48px;
  padding-bottom: 48px;
}
.expect-title {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 32px;
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.expect-item {}
.expect-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 16px; line-height: 1.5;
  color: var(--ink);
  margin-bottom: 8px;
}
.expect-item-desc {
  font-size: 12px; font-weight: 300;
  color: var(--ink-50); line-height: 1.7;
}

/* ================================================================
   MEET THE CHEFS
   ================================================================ */
.chefs {
  border-top: 1.5px solid var(--plum);
  padding-top: 48px;
  padding-bottom: 48px;
}
.chefs-title {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 40px;
}
.chefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.chef-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.chef-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
  margin-bottom: 24px;
}
.chef-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 20px; line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  padding: 0 8px;
}
.chef-bio {
  font-size: 12px; font-weight: 300;
  color: var(--ink-50); line-height: 1.8;
  text-align: left;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ================================================================
   MAP
   ================================================================ */
.map-section {
  border-top: 1.5px solid var(--slate);
  padding-top: 40px;
  padding-bottom: 40px;
}
.map-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 16px;
}
.map-wrap {
  width: 100%; height: 250px;
  border: 1px solid var(--ink-15);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0;
}

/* ================================================================
   MENU (button link to Canva-hosted PDF, always current)
   ================================================================ */
.menu-section {
  border-top: 1.5px solid var(--terra);
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.menu-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 8px;
}
.menu-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.menu-intro {
  font-size: 12px; font-weight: 300;
  color: var(--ink-50); line-height: 1.7;
  max-width: 520px;
  margin: 0;
}
.menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--terra);
  color: #fff;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.menu-cta:hover {
  background: #a35540;
  transform: translateY(-1px);
}
.menu-cta svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ================================================================
   REVIEWS (Google reviews trust badge)
   ================================================================ */
.reviews-section {
  border-top: 1.5px solid var(--gold);
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.reviews-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-50);
}
.reviews-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}
.reviews-stars svg {
  width: 22px; height: 22px;
  fill: currentColor;
}
.reviews-rating {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--ink);
  margin-top: 4px;
}
.reviews-meta {
  font-size: 12px; font-weight: 300;
  color: var(--ink-50);
  line-height: 1.6;
}
.reviews-meta a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.reviews-meta a:hover,
.reviews-meta a:focus-visible {
  border-bottom-color: var(--terra);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 680px) {
  .page { padding: 32px 24px 40px; }
  .top-bar { flex-direction: row; flex-wrap: wrap; gap: 12px; padding-bottom: 16px; align-items: center; }
  .top-bar .logo img { height: 56px; }
  .top-bar .top-bar-right {
    flex-direction: column; align-items: flex-end;
    margin-left: auto;
  }
  .header-actions { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
  .header-nav-link { font-size: 9px; letter-spacing: 0.18em; padding: 10px 4px; margin: -10px 0; }
  .order-btn { padding: 10px 18px; font-size: 9px; }
  .hero { padding: 16px 0; }
  .hero-tagline { max-width: none; }
  .bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .social-row { justify-content: flex-start; }
  .page-footer { flex-direction: column; gap: 12px; }
  .page-footer .footer-right { text-align: left; }
  .expect-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .chefs-grid { grid-template-columns: 1fr; gap: 40px; }
  .chef-photo { width: 140px; height: 140px; }
  .chef-name { font-size: 18px; padding: 0 4px; }
  .menu-section { grid-template-columns: 1fr; gap: 24px; }
  .menu-cta { justify-self: start; }
}

@media (max-width: 420px) {
  .header-nav-link { display: none; }
  .header-nav-link.is-primary { display: inline-block; }
}
