:root {
  --ink: #181c16;
  --charcoal: #1d221a;
  --olive: #283126;
  --green: #315f46;
  --cream: #f4ede1;
  --cream-soft: #fbf6ed;
  --gold: #d8ae55;
  --muted: #bdb7aa;
  --line: rgba(24, 28, 22, 0.12);
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 60px rgba(24, 28, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 14px clamp(22px, 5vw, 64px);
  background: rgba(244, 237, 225, 0.94);
  border-bottom: 1px solid rgba(216, 174, 85, 0.38);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 34px;
  color: rgba(24, 28, 22, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--gold);
}

.header-quote {
  justify-self: end;
}

.quote-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.quote-button {
  background: var(--gold);
  color: var(--ink);
}

.dark-button {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.quote-button:hover,
.dark-button:hover {
  transform: translateY(-2px);
}

.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

.section-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 86px 0;
}

.section-inner.narrow {
  width: min(100% - 48px, 940px);
}

.hero-inner {
  padding-top: 70px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
}

.hero-copy,
.page-hero p {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--white-soft);
  font-size: 1.02rem;
  font-weight: 600;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-image {
  margin: 54px 0 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: clamp(260px, 40vw, 500px);
  object-fit: cover;
}

.feature-grid,
.reason-grid,
.dish-grid,
.package-grid,
.testimonial-grid,
.footer-grid,
.order-grid,
.content-split,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.compact-grid,
.reason-grid,
.dish-grid,
.package-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-split {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.rich-copy {
  display: grid;
  gap: 20px;
  color: rgba(24, 28, 22, 0.68);
  font-size: 1.05rem;
  font-weight: 650;
}

.compact-grid {
  margin-top: 38px;
  text-align: left;
}

.compact-grid article,
.dark-card,
.light-card,
.dish-card,
.menu-item,
.quote-form {
  border-radius: 22px;
}

.compact-grid article,
.dark-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--cream);
  padding: 24px;
}

.compact-grid h2,
.dark-card h2,
.dark-card h3 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.compact-grid p,
.dark-card p {
  color: var(--white-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.reason-grid {
  align-items: stretch;
  margin-top: 112px;
}

.dark-card {
  background: var(--charcoal);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(216, 174, 85, 0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-preview .section-inner,
.packages .section-inner {
  padding-top: 70px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.dish-card,
.light-card,
.quote-form {
  background: var(--cream-soft);
  box-shadow: inset 0 0 0 1px rgba(24, 28, 22, 0.05);
}

.dish-card {
  overflow: hidden;
  padding: 14px 14px 24px;
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.dish-card h3 {
  margin: 20px 0 12px;
  font-size: 2rem;
}

.dish-card p,
.light-card p,
.menu-item p,
.quote-form label,
.small-note {
  color: rgba(24, 28, 22, 0.62);
  font-weight: 600;
}

.light-card {
  padding: 32px;
}

.royal-card {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.royal-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216, 174, 85, 0.22);
  border-radius: 18px;
  pointer-events: none;
}

.royal-card-featured {
  background: #fff9ee;
  box-shadow: inset 0 0 0 1px rgba(216, 174, 85, 0.3), var(--shadow);
}

.royal-mark {
  position: absolute;
  top: 28px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(216, 174, 85, 0.14);
  color: var(--gold);
}

.royal-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.package-price {
  margin: -8px 0 16px;
  color: var(--green) !important;
  font-size: 0.92rem;
  font-weight: 850 !important;
}

.menu-note,
.menu-intro {
  color: rgba(24, 28, 22, 0.62);
  font-weight: 700;
}

.menu-note {
  max-width: 840px;
  margin-top: 22px;
  font-size: 0.92rem;
}

.menu-intro {
  max-width: 780px;
  margin: -18px 0 28px;
  font-size: 1.02rem;
}

.student-menu {
  padding-bottom: 0;
}

.student-card {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.student-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(49, 95, 70, 0.16);
  border-radius: 18px;
  pointer-events: none;
}

.student-card-featured {
  background: #f8f0e2;
  box-shadow: inset 0 0 0 1px rgba(49, 95, 70, 0.16), var(--shadow);
}

.light-card h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.light-card .dark-button {
  width: fit-content;
  margin-top: 26px;
  background: var(--charcoal);
}

.testimonials .section-title {
  color: var(--cream);
}

.testimonial-grid h3 {
  font-size: 1.9rem;
}

.service-strip {
  border-bottom: 1px solid rgba(24, 28, 22, 0.05);
}

.service-strip .section-inner {
  padding: 70px 0;
}

.service-strip p:last-child {
  color: #315f46;
  font-weight: 800;
}

.faq-section .section-inner {
  padding-top: 80px;
}

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

.faq-list details {
  overflow: hidden;
  border-radius: 18px;
  background: var(--charcoal);
  color: var(--cream);
}

.faq-list summary {
  list-style: none;
  padding: 21px 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 24px 24px;
  color: var(--white-soft);
  font-weight: 600;
}

.cta-band {
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.cta-band .section-inner {
  padding: 86px 0;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.cta-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px auto 26px;
  color: rgba(244, 237, 225, 0.78);
  font-weight: 700;
}

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 64px clamp(24px, 5vw, 64px) 30px;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.7fr 1fr;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  max-width: 430px;
  color: rgba(244, 237, 225, 0.76);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-footer a {
  margin-top: 8px;
}

.site-footer .quote-button {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
}

.copyright {
  width: min(100%, 1180px);
  margin: 50px auto 0;
  color: rgba(244, 237, 225, 0.54) !important;
  font-size: 0.88rem !important;
}

.page-hero {
  text-align: center;
}

.page-hero .section-inner {
  padding: 104px 0 92px;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.menu-category {
  padding-bottom: 58px;
}

.menu-category + .menu-category {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

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

.menu-item {
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 22px;
  align-items: start;
  padding: 16px;
  background: var(--cream-soft);
  box-shadow: inset 0 0 0 1px rgba(24, 28, 22, 0.06);
}

.menu-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
}

.menu-item h2 {
  margin: 4px 0 10px;
  font-size: 2rem;
}

.menu-item h2 span {
  display: inline-block;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.menu-item ul {
  display: grid;
  gap: 4px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
}

.packages-menu {
  padding-bottom: 0;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(24, 28, 22, 0.72);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.order-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 112px;
}

.contact-panel h2 {
  margin-bottom: 20px;
  font-size: 2.6rem;
}

.contact-panel a {
  display: block;
  margin-top: 12px;
  color: var(--cream);
  font-weight: 800;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0;
}

.quote-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(24, 28, 22, 0.15);
  border-radius: 14px;
  background: #fffaf1;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 13px 15px;
}

.quote-form textarea {
  resize: vertical;
}

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

.submit-button {
  width: fit-content;
  min-width: 180px;
}

.nav-toggle {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(24, 28, 22, 0.12);
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav,
  .header-quote {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 18px;
    background: var(--cream-soft);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 12px;
  }

  .compact-grid,
  .reason-grid,
  .dish-grid,
  .package-grid,
  .testimonial-grid,
  .menu-list,
  .order-grid,
  .footer-grid,
  .content-split {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid {
    margin-top: 46px;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 76px;
    padding: 12px 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .brand small {
    font-size: 0.55rem;
  }

  .section-inner,
  .section-inner.narrow {
    width: min(100% - 32px, 1180px);
    padding: 62px 0;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.1rem;
  }

  .hero-copy,
  .page-hero p {
    font-size: 0.96rem;
  }

  .hero-image {
    border-radius: 18px;
  }

  .section-title,
  .cta-band h2 {
    font-size: 2.55rem;
  }

  .dish-card h3,
  .menu-item h2,
  .light-card h2,
  .compact-grid h2,
  .dark-card h2,
  .dark-card h3 {
    font-size: 1.65rem;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

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

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

  .menu-item img {
    aspect-ratio: 16 / 10;
  }

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