:root {
  --cream: #fbf8ef;
  --warm: #f1eadc;
  --ink: #10231d;
  --muted: #647069;
  --green: #083f32;
  --green-soft: #0f5a48;
  --orange: #f05a24;
  --gold: #f05a24;
  --line: #e6dac8;
  --white: #fff;
  --shadow: 0 22px 60px rgba(16, 35, 29, .14);
}

.ticker {
  justify-content: center;
  text-align: center;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { color: var(--orange); font-family: Georgia, serif; font-style: italic; }

.site-header,
.portal-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(22px, 5vw, 72px);
  background: rgba(251, 248, 239, .94);
  border-bottom: 1px solid rgba(16, 35, 29, .08);
  backdrop-filter: blur(16px);
}
.logo img,
.portal-header img,
footer img,
.staff-side img {
  width: 140px;
  height: 80px;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 24px; font-weight: 700; }
.nav-button,
.button,
.booking-form button,
.modal-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
}
.nav-button,
.primary,
.booking-form button[type="submit"],
.confirm { background: var(--orange); color: var(--white); }
.ghost { border: 1px solid var(--line); }
.light { background: var(--gold); color: var(--ink); }
.outline { border: 1px solid rgba(255,255,255,.55); color: var(--white); }
.menu-toggle { display: none; border: 0; background: none; font-size: 34px; color: var(--ink); }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 42px;
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(22px, 5vw, 72px);
}
.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .95;
}
h1 { font-size: clamp(58px, 8vw, 112px); max-width: 760px; }
h2 { font-size: clamp(46px, 6vw, 84px); }
p { font-size: 20px; line-height: 1.65; color: var(--muted); }
.hero-copy > p { max-width: 560px; font-size: 26px; }
.hero-actions,
.visit-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.proof { display: flex; gap: 14px; align-items: end; margin-top: 44px; }
.proof strong { font-size: 46px; font-family: Georgia, serif; }
.proof span { color: var(--muted); font-weight: 800; padding-bottom: 9px; }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 10px 80px 10px 80px;
  box-shadow: var(--shadow);
}
.stamp {
  position: absolute;
  right: -22px;
  bottom: 54px;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--gold);
  font-family: Georgia, serif;
  font-size: 24px;
  transform: rotate(-8deg);
}

.ticker {
  display: flex;
  gap: 34px;
  overflow: hidden;
  padding: 28px 32px;
  background: var(--green);
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .14em;
}
.ticker b { color: var(--gold); }

.section { padding: clamp(70px, 9vw, 120px) clamp(22px, 5vw, 72px); }
.story {
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: clamp(42px, 8vw, 90px);
  align-items: center;
}
.story-images { position: relative; min-height: 650px; }
.circle-photo {
  width: min(520px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.circle-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; border-radius: 50%; }
.pose-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 360px;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  background: var(--white);
  border: 12px solid var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.image-note {
  position: absolute;
  top: 58px;
  right: 10px;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--gold);
  font: 700 25px/1.2 Georgia, serif;
  transform: rotate(10deg);
}
.lead { color: var(--ink); font-size: 28px; }
blockquote {
  margin: 42px 0 0;
  padding-left: 28px;
  border-left: 8px solid var(--orange);
  font: 46px/1.2 Georgia, serif;
}

.section-heading { max-width: 980px; margin-bottom: 42px; }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.dish-grid article {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--green);
}
.dish-grid img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.dish-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,63,50,.9), rgba(8,63,50,.05));
}
.dish-grid div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; color: var(--white); }
.dish-grid span { color: var(--gold); font-weight: 1000; text-transform: uppercase; }
.dish-grid h3 { margin: 10px 0; font-size: 28px; }
.dish-grid p { margin: 0; color: rgba(255,255,255,.85); font-size: 16px; }

.experience,
.visit {
  background: var(--green);
  color: var(--white);
}
.experience {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.light,
.light + h2,
.experience h2,
.visit h2 { color: var(--white); }
.experience p,
.visit p,
.visit small { color: rgba(255,255,255,.76); }
.experience-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.experience-gallery img { width: 100%; height: 380px; object-fit: cover; border-radius: 10px; }
.community { text-align: center; }
.community p { max-width: 720px; margin-inline: auto; }
.pose-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.pose-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: #fffaf1;
}
.visit {
  min-height: 590px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(4, 31, 24, .88) 0%, rgba(4, 31, 24, .68) 52%, rgba(4, 31, 24, .28) 100%),
    url("../images/restaurant-wall.jpeg");
  background-size: cover;
  background-position: center;
}
.visit > div { max-width: 720px; }

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 18px clamp(22px, 5vw, 72px);
  min-height: 64px;
  background: #2b2b2d;
  color: rgba(255, 255, 255, .66);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: .02em;
}
footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
footer nav a {
  color: rgba(255, 255, 255, .66);
  text-decoration: none;
  white-space: nowrap;
}
footer nav a + a {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}
footer span { white-space: nowrap; }
footer a:hover { color: #fff; }

.portal { padding: 42px clamp(18px, 5vw, 72px) 90px; overflow-x: hidden; }
.portal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 40px;
  align-items: center;
}
.portal-intro h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 92px);
}
.portal-intro p { max-width: 720px; }
.portal-intro img { height: 360px; width: 100%; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.booking-panel { margin-top: 42px; }
.mode-switch { display: flex; gap: 10px; margin-bottom: 22px; }
.mode-switch button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
}
.mode-switch .active { background: var(--green); color: var(--white); }
.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}
.form-area,
.summary-card,
.requests-card,
.metric-grid article,
.modal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(16,35,29,.08);
}
.form-area {
  min-width: 0;
  min-height: 690px;
  padding: clamp(22px, 3vw, 38px);
}
.form-mode { display: none; }
.form-mode.active { display: block; }
.form-mode h2 {
  max-width: 100%;
  margin: 0 0 26px;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1;
}
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  background: #fffcf6;
}
textarea { min-height: 120px; resize: vertical; }
.wide-field { margin-top: 18px; }
.menu-grid { display: grid; gap: 12px; margin-bottom: 20px; }
.menu-grid article { display: grid; grid-template-columns: 88px 1fr 70px; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.menu-grid img { width: 88px; height: 76px; object-fit: cover; border-radius: 8px; }
.menu-grid h3,
.menu-grid p,
.menu-grid strong { margin: 0; }
.menu-grid p { font-size: 15px; }
.menu-grid strong {
  display: inline-flex;
  margin-top: 6px;
  color: #c94419;
  font-size: 16px;
  font-weight: 900;
}
.summary-card {
  position: sticky;
  top: 130px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(20px, 2.2vw, 28px);
}
.summary-card h2 {
  overflow-wrap: anywhere;
  margin: 14px 0 20px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.04;
}
.summary-card p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.55;
}
.summary-card img { width: 100%; height: 190px; object-fit: cover; border-radius: 10px; }
.summary-meta {
  display: grid;
  gap: 6px;
  margin: -4px 0 16px;
  padding: 14px;
  border-radius: 10px;
  background: var(--warm);
}
.summary-meta strong {
  color: var(--ink);
  font-size: 18px;
}
.summary-meta span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.summary-card button { width: 100%; margin-top: 16px; }

.staff-layout { min-height: 100vh; display: grid; grid-template-columns: 280px 1fr; background: #f7f2e9; }
.staff-side {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px;
  background: var(--green);
  color: var(--white);
}
.staff-side nav { display: grid; gap: 12px; margin-top: 34px; }
.staff-side nav a,
.back-link { padding: 14px 16px; border-radius: 10px; color: rgba(255,255,255,.8); font-weight: 900; }
.staff-side .active,
.back-link { background: rgba(255,255,255,.12); color: var(--white); }
.back-link { display: block; margin-top: 60px; }
.staff-main { padding: 34px; }
.staff-main header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.staff-main h1 { margin: 8px 0 0; font-size: 44px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.metric-grid article { padding: 22px; }
.metric-grid strong { display: block; font: 52px Georgia, serif; margin: 12px 0; }
.requests-card { padding: 24px; }
.requests-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}
.requests-head h2 {
  margin: 0 0 8px;
  font-family: avenir, "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}
.requests-head p {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}
.requests-head input {
  max-width: 440px;
  min-width: 260px;
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 18px 12px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.status { display: inline-flex; padding: 8px 12px; border-radius: 999px; font-weight: 900; font-size: 13px; }
.pending { background: #fff0c9; color: #936400; }
.confirmed { background: #def8ea; color: #12613c; }
.preparing { background: #ffe1d4; color: #9c3513; }
.declined { background: #f5d7cf; color: #8f2d13; }
.open-request { border: 0; background: var(--green); color: var(--white); border-radius: 999px; padding: 9px 14px; cursor: pointer; }
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(16,35,29,.6);
  z-index: 40;
}
.modal.open { display: grid; }
.modal-card { width: min(620px, 100%); max-height: 90vh; overflow: auto; padding: 30px; position: relative; }
.modal-close { position: absolute; right: 18px; top: 18px; background: none !important; color: var(--ink) !important; font-size: 32px; padding: 0; }
.progress-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 24px 0; }
.progress-steps span { padding: 10px; border-radius: 999px; text-align: center; background: var(--warm); font-size: 13px; font-weight: 900; }
.progress-steps .active { background: var(--green); color: var(--white); }
.progress-steps .declined-step { background: #8f2d13; color: var(--white); }
.detail-box, .staff-note { padding: 18px; border-radius: 12px; background: var(--warm); }
.email-preview {
  padding: 16px;
  border-radius: 12px;
  background: #edf8f1;
  color: #12613c;
  font-weight: 800;
}
.decision-buttons { display: flex; gap: 12px; margin-top: 18px; }
.decline { background: #f5e7dd !important; color: #8f2d13 !important; }
.decision-buttons button:disabled {
  opacity: .48;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 112px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero,
  .story,
  .experience,
  .portal-intro,
  .booking-form,
  .staff-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual img { height: 520px; }
  .dish-grid,
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .story-images { min-height: 560px; }
  .form-area { min-height: 760px; }
  .staff-side { position: static; height: auto; }
}

@media (max-width: 640px) {
  .site-header,
  .portal-header { padding: 12px 18px; }
  .logo img,
  .portal-header img { width: 118px; height: 68px; }
  h1 { font-size: 56px; }
  h2 { font-size: 44px; }
  .hero-copy > p, .lead { font-size: 21px; }
  .hero-visual img { height: 420px; border-radius: 10px 46px; }
  .stamp { right: 10px; width: 112px; height: 112px; font-size: 19px; }
  .dish-grid,
  .pose-strip,
  .experience-gallery,
  .field-grid,
  .metric-grid { grid-template-columns: 1fr; }
  .story-images { min-height: 500px; }
  .circle-photo { width: 92vw; }
  .pose-photo {
    width: 78vw;
    height: auto;
    max-height: none;
  }
  .image-note { width: 128px; height: 128px; font-size: 19px; top: 22px; }
  .portal-header { gap: 8px; font-size: 13px; }
  .portal { padding: 30px 16px 64px; }
  .portal-intro h1 { font-size: 48px; }
  .portal-intro img { height: 240px; }
  .mode-switch { overflow-x: auto; padding-bottom: 4px; }
  .mode-switch button { flex: 0 0 auto; }
  .form-area { min-height: 920px; }
  .form-mode h2 { font-size: 38px; }
  .menu-grid article { grid-template-columns: 72px minmax(0, 1fr) 62px; }
  .menu-grid img { width: 72px; height: 66px; }
  .summary-card h2 { font-size: 36px; }
  .summary-card { position: static; }
  .visit {
    min-height: 560px;
    background-position: 58% center;
    background-image:
      linear-gradient(rgba(4, 31, 24, .82), rgba(4, 31, 24, .72)),
      url("../images/restaurant-wall.jpeg");
  }
  footer {
    justify-content: center;
    text-align: center;
    padding: 16px 18px;
  }
  footer span { white-space: normal; }
  .staff-main { padding: 22px; }
  .requests-head { display: block; }
  .requests-head h2 { font-size: 30px; }
  .requests-head p { font-size: 16px; }
  .requests-head input {
    min-width: 0;
    max-width: none;
    margin-top: 16px;
  }
  .progress-steps { grid-template-columns: 1fr 1fr; }
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 54px;
  align-items: stretch;
  padding: 48px clamp(22px, 5vw, 72px) 56px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  border-radius: 10px 90px 10px 90px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ticker {
  margin-top: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 22px 42px;
  }

  .hero-visual {
    height: 560px;
    min-height: 560px;
  }
}

/* Phone */
@media (max-width: 640px) {
  .hero {
    padding-top: 30px;
  }

  .hero-visual {
    height: 500px;
    min-height: 500px;
    border-radius: 10px 48px 10px 48px;
  }
}