:root {
  --cream: #fff8ed;
  --rose: #d96f77;
  --berry: #8f2f4c;
  --cocoa: #34201d;
  --sage: #718c63;
  --honey: #d99b43;
  --ink: #231716;
  --muted: #6c5a55;
  --line: rgba(52, 32, 29, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(70, 30, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(35, 23, 22, 0.78), rgba(35, 23, 22, 0));
}

.site-header.solid {
  background: rgba(35, 23, 22, 0.96);
}

.brand,
.nav-links,
.hero-actions,
.site-footer,
.order-layout,
.catering-layout {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-cta,
.button,
.text-link,
.contact-link {
  font-weight: 800;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 6vw, 86px) 92px;
  color: var(--white);
}

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

.hero img {
  object-fit: cover;
  object-position: 55% 50%;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(35, 18, 16, 0.84) 0%, rgba(35, 18, 16, 0.58) 42%, rgba(35, 18, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(35, 18, 16, 0.68) 0%, rgba(35, 18, 16, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8b2;
}

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

h1 {
  margin-bottom: 16px;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 10vw, 8.5rem);
  line-height: 0.86;
  font-weight: 700;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1;
  font-weight: 700;
}

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

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 14px 28px rgba(54, 18, 25, 0.22);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button.secondary.dark {
  color: var(--cocoa);
  background: var(--white);
  border: 1px solid var(--line);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-item {
  min-height: 160px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-number {
  display: block;
  margin-bottom: 18px;
  color: var(--sage);
  font-weight: 900;
}

.intro-item p,
.menu-card p,
.catering-copy p,
.package-list p,
.contact-panel p,
.promo-strip p,
.promo-hero p,
.offer-card li,
.offer-note {
  color: var(--muted);
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 58px) clamp(22px, 6vw, 86px);
  background: #fff3df;
  border-bottom: 1px solid var(--line);
}

.promo-strip h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.promo-strip p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
}

.promo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  min-height: 820px;
  padding: 140px clamp(22px, 6vw, 86px) 76px;
  background: #fff8ed;
}

.promo-hero-copy {
  max-width: 720px;
}

.promo-hero h1 {
  max-width: 11ch;
  color: var(--cocoa);
}

.promo-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.promo-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.promo-photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-photo-grid .promo-photo-tall {
  grid-row: span 2;
  height: 534px;
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(22px, 6vw, 86px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(24px, 6vw, 82px);
  margin-bottom: clamp(34px, 6vw, 66px);
  align-items: end;
}

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

.menu-card,
.package-list article,
.contact-panel,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.menu-card {
  min-height: 260px;
  padding: 28px;
}

.menu-card:nth-child(2),
.menu-card:nth-child(6) {
  background: #fff3df;
}

.menu-card:nth-child(3),
.menu-card:nth-child(7) {
  background: #f5efe3;
}

.menu-card:nth-child(4),
.menu-card:nth-child(8) {
  background: #f7f3ea;
}

.menu-card:nth-child(5) {
  background: #fff6f0;
}

.food-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.food-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(35, 23, 22, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
}

.price-section {
  background: #fffaf3;
}

.offer-section {
  background: #f9efe4;
}

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

.offer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-card.featured-offer {
  background: #fff3df;
}

.offer-card h3 {
  font-size: 1.28rem;
}

.offer-price {
  margin-bottom: 18px;
  color: var(--berry);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.offer-note {
  max-width: 980px;
  margin: 28px 0 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-bottom: 18px;
  color: var(--cocoa);
}

.price-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 1px solid var(--line);
}

.price-row dt {
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
}

.price-row dd {
  margin: 0;
  color: var(--berry);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.price-note {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(48px, 7vw, 76px) clamp(22px, 6vw, 86px);
  color: var(--white);
  background: var(--cocoa);
}

.feature-strip h2 {
  max-width: 920px;
  font-size: clamp(1.9rem, 3.8vw, 3.7rem);
}

.text-link {
  flex: 0 0 auto;
  color: #ffd8b2;
  border-bottom: 2px solid currentColor;
}

.catering-section {
  background: #f9efe4;
}

.catering-layout {
  align-items: flex-start;
  gap: clamp(28px, 6vw, 76px);
}

.catering-copy {
  flex: 1.1;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
}

.package-list {
  flex: 0.9;
  display: grid;
  gap: 14px;
}

.package-list article {
  padding: 24px;
  box-shadow: none;
}

.gallery-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 640px;
  background: var(--white);
}

.gallery-text {
  display: grid;
  align-content: center;
  padding: clamp(46px, 6vw, 86px);
}

.gallery-text p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 4vw, 44px);
  background: #f6ede4;
}

.portfolio-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.portfolio-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(35, 23, 22, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.order-layout {
  align-items: stretch;
  gap: 18px;
}

.order-form {
  flex: 1;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--cocoa);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-button {
  width: fit-content;
}

.form-status {
  min-height: 1.4em;
  margin-bottom: 0;
  color: var(--sage);
  font-weight: 800;
}

.contact-panel {
  flex: 0 0 min(360px, 100%);
  padding: clamp(24px, 4vw, 38px);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.contact-link {
  display: inline-flex;
  color: var(--berry);
  font-size: clamp(1rem, 2vw, 1.2rem);
  overflow-wrap: anywhere;
}

.small-note {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(22px, 6vw, 86px);
  color: var(--white);
  background: var(--ink);
}

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

.site-footer a {
  color: #ffd8b2;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .intro-band,
  .menu-grid,
  .food-showcase,
  .price-grid,
  .section-heading,
  .gallery-band,
  .promo-hero,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .intro-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .feature-strip,
  .catering-layout,
  .order-layout,
  .promo-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .text-link {
    width: fit-content;
  }

  .portfolio-grid {
    min-height: 520px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-photo-grid .promo-photo-tall {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 18px 58px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .promo-hero {
    min-height: auto;
    padding: 116px 18px 58px;
  }

  .promo-photo-grid {
    grid-template-columns: 1fr;
  }

  .promo-photo-grid img,
  .promo-photo-grid .promo-photo-tall {
    height: 260px;
  }

  .menu-card {
    min-height: auto;
  }

  .food-card {
    min-height: 240px;
  }

  .price-card {
    padding: 22px;
  }

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

  .price-row dd {
    text-align: left;
    white-space: normal;
  }

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

  .portfolio-card,
  .portfolio-card.featured {
    min-height: 280px;
  }

  .portfolio-card.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .form-button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
