:root {
  --ink: #1f1712;
  --muted: #6d5c52;
  --paper: #fffaf3;
  --panel: #ffffff;
  --line: #eadfd2;
  --red: #b8201f;
  --red-dark: #791515;
  --gold: #d59b35;
  --green: #2e6d57;
  --shadow: 0 18px 45px rgba(51, 27, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 12px 30px rgba(46, 32, 21, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 186px;
}

.brand-avatar {
  display: block;
  width: 56px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(24, 8, 5, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.74;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover {
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.15);
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(184, 32, 31, 0.2);
  background: var(--red);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, 92vh);
  overflow: hidden;
  color: #fff;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center 72%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 10, 7, 0.82), rgba(28, 10, 7, 0.42) 48%, rgba(28, 10, 7, 0.2)),
    linear-gradient(0deg, rgba(28, 10, 7, 0.88), rgba(28, 10, 7, 0.06) 46%);
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 36px));
  padding: 148px 0 clamp(52px, 10vh, 96px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  max-width: 720px;
  margin: -8px 0 27px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-highlights span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: -38px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quick-info article {
  min-width: 0;
  padding: 22px 24px;
}

.quick-info article + article {
  border-left: 1px solid var(--line);
}

.quick-info span,
.hours-card span,
.menu-card p {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 0;
}

.pricing-section {
  padding-bottom: clamp(56px, 7vw, 86px);
}

.pricing-section .section-heading {
  margin-bottom: 28px;
}

.pricing-intro {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(51, 27, 16, 0.08);
}

.price-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1;
}

.price-card span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.price-card-featured {
  border-color: var(--red);
  background: var(--red);
}

.price-card-featured .eyebrow,
.price-card-featured strong,
.price-card-featured span {
  color: #fff;
}

.pricing-note {
  margin: 16px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 680px;
}

.feature-band {
  padding: clamp(52px, 7vw, 86px) 0;
  background: #f0efed;
}

.feature-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.75fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
}

.feature-band img {
  display: block;
  width: 100%;
  aspect-ratio: 1.52;
  border-radius: 6px;
  object-fit: cover;
}

.feature-band-copy {
  max-width: 510px;
}

.feature-band-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}

.feature-band-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.signature-section {
  scroll-margin-top: 82px;
  padding: clamp(62px, 8vw, 102px) 0;
  background: var(--paper);
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.74fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
}

.signature-main,
.signature-gallery img,
.tables-photo {
  display: block;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.signature-main {
  aspect-ratio: 1.5;
}

.signature-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.signature-gallery img {
  aspect-ratio: 1.35;
}

.signature-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}

.signature-copy > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.signature-facts {
  border-top: 1px solid var(--line);
}

.signature-facts p {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.signature-facts strong {
  color: var(--ink);
}

.veggie-band {
  padding: 0 max(18px, calc((100vw - 1120px) / 2));
  background: #f0efed;
}

.veggie-band-inner {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px 8px 0 0;
  background: var(--green);
  color: #fff;
}

.veggie-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
}

.veggie-band .eyebrow {
  color: #d8eea8;
}

.veggie-band h2 {
  margin-bottom: 10px;
  font-size: clamp(29px, 3.8vw, 48px);
}

.veggie-band p:last-child {
  max-width: 900px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.steps,
.menu-grid,
.table-list {
  display: grid;
  gap: 16px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step,
.menu-card,
.table-list article,
.contact-card,
.hours-card,
.qr-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.step {
  padding: 26px;
}

.step span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.step p,
.table-list p,
.faq-list p,
.contact-card p,
.menu-card span {
  color: var(--muted);
  line-height: 1.65;
}

.menu-section {
  width: 100%;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: #2e2118;
  color: #fff;
}

.menu-section .section-heading {
  margin-right: 0;
  margin-left: 0;
}

.menu-grid {
  grid-template-columns: repeat(3, 1fr);
}

.menu-card {
  min-height: 184px;
  padding: 24px;
  color: var(--ink);
}

.menu-card p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-card b {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(213, 155, 53, 0.18);
  color: #8b5d0a;
  font-size: 10px;
}

.menu-card.accent {
  background: var(--red);
  color: #fff;
}

.menu-card.accent p,
.menu-card.accent span {
  color: rgba(255, 255, 255, 0.78);
}

.menu-card.accent b {
  background: rgba(255, 255, 255, 0.18);
  color: #fff4dc;
}

.table-list {
  grid-template-columns: repeat(4, 1fr);
}

.tables-photo {
  aspect-ratio: 2.15;
  margin-bottom: 16px;
}

.table-list article {
  min-height: 170px;
  padding: 24px;
}

.reservation-section {
  scroll-margin-top: 82px;
  padding: clamp(68px, 9vw, 112px) 0;
  background: #f0efed;
}

.reservation-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.reservation-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.reservation-rules {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid #dcd7d1;
}

.reservation-rules p {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid #dcd7d1;
  color: var(--muted);
  line-height: 1.45;
}

.reservation-rules strong {
  color: var(--ink);
}

.reservation-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.form-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  min-width: 0;
}

.form-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-grid small {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #d8cec3;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(46, 109, 87, 0.14);
}

.form-grid textarea {
  min-height: 104px;
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.group-notice {
  padding: 13px 14px;
  margin-top: 16px;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: #fff4dc;
  color: #6f4b09;
  line-height: 1.55;
}

.group-notice a {
  font-weight: 800;
  text-decoration: underline;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 0.75fr;
  gap: 18px;
  align-items: stretch;
}

.contact-card,
.hours-card,
.qr-card {
  padding: clamp(24px, 4vw, 38px);
}

.contact-card {
  background: var(--green);
  color: #fff;
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 3.9vw, 48px);
}

.contact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-card .btn {
  margin-top: 26px;
}

.hours-card {
  display: grid;
  align-content: center;
  gap: 18px;
}

.hours-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hours-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.qr-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
}

.qr-card img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f2ef;
}

.qr-card h3 {
  margin-bottom: 6px;
}

.qr-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(31, 23, 18, 0.76), rgba(31, 23, 18, 0.76)),
    url("assets/photos/running-hotpot-interior-hero.webp") center 72% / cover;
}

.thanks-shell {
  display: grid;
  align-content: center;
  min-height: 100vh;
  width: min(720px, calc(100% - 36px));
  padding: 34px 0;
  margin: 0 auto;
}

.thanks-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 18px;
  color: #fff;
}

.thanks-brand img {
  width: 64px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  object-fit: cover;
}

.thanks-brand strong,
.thanks-brand small {
  display: block;
}

.thanks-brand small {
  margin-top: 4px;
  opacity: 0.78;
}

.thanks-panel {
  padding: clamp(28px, 6vw, 58px);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(43px, 7vw, 72px);
}

.thanks-panel > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.thanks-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

@media (max-width: 880px) {
  .site-header {
    min-height: 68px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 740px;
  }

  .quick-info,
  .price-grid,
  .steps,
  .menu-grid,
  .table-list,
  .contact-section,
  .section-heading,
  .feature-band-inner,
  .signature-layout,
  .reservation-inner {
    grid-template-columns: 1fr;
  }

  .feature-band-copy {
    max-width: 680px;
  }

  .signature-copy {
    max-width: 680px;
  }

  .quick-info article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .menu-grid,
  .table-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand strong {
    max-width: clamp(116px, 42vw, 160px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    width: min(100% - 28px, 860px);
    padding-top: 120px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-info,
  .section {
    width: calc(100% - 28px);
  }

  .menu-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-band-inner {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .signature-layout {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .signature-main {
    aspect-ratio: 1.3;
  }

  .signature-gallery {
    gap: 5px;
    margin-top: 5px;
  }

  .signature-gallery img {
    aspect-ratio: 1;
  }

  .signature-facts p {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .tables-photo {
    aspect-ratio: 1.42;
  }

  .reservation-inner {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .veggie-band {
    padding-right: 14px;
    padding-left: 14px;
  }

  .veggie-band-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .veggie-mark {
    width: 54px;
    height: 54px;
    font-size: 31px;
  }

  .menu-grid,
  .table-list {
    grid-template-columns: 1fr;
  }

  .contact-card {
    display: block;
  }

  .contact-card .btn {
    width: 100%;
    margin-top: 22px;
  }

  .hours-card div,
  .site-footer {
    display: block;
  }

  .hours-card strong {
    display: block;
  }

  .site-footer div {
    margin-top: 16px;
  }
}
