:root {
  --ivory: #fff9ed;
  --cream: #f6ecd9;
  --black: #15130f;
  --charcoal: #29241c;
  --green: #1f6f48;
  --deep-green: #0d3e2b;
  --gold: #c79431;
  --hibiscus: #c8472f;
  --orange: #e8752f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(21, 19, 15, 0.14);
  --radius: 8px;
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: var(--body);
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

.site-header {
  background: rgba(255, 252, 245, 0.98);
  border-bottom: 1px solid rgba(199, 148, 49, 0.22);
  box-shadow: 0 10px 28px rgba(21, 19, 15, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 82px;
  padding: 0 24px;
}

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

.brand-logo {
  background: var(--ivory);
  border: 1px solid rgba(199, 148, 49, 0.55);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(21, 19, 15, 0.12);
  height: 58px;
  object-fit: contain;
  padding: 3px;
  width: 58px;
}

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

.brand strong {
  font-family: var(--heading);
  font-size: 1.2rem;
  line-height: 1;
}

.brand small {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:not(.button):hover {
  color: var(--green);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 8px;
}

.nav-toggle span {
  background: var(--black);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 26px;
}

.button {
  align-items: center;
  background: linear-gradient(135deg, #d9a13a, #b77817);
  border: 1px solid rgba(255, 249, 237, 0.28);
  border-radius: var(--radius);
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: linear-gradient(135deg, #efbd56, #c88a21);
  border-color: rgba(255, 249, 237, 0.42);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
}

.button-outline {
  background: transparent;
  border-color: rgba(21, 19, 15, 0.42);
  color: var(--black);
}

.button-outline:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--ivory);
}

.hero .button-outline {
  border-color: rgba(13, 62, 43, 0.42);
  color: var(--deep-green);
}

.hero .button-outline:hover {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: var(--ivory);
}

.hero {
  min-height: calc(100svh - 118px);
  overflow: hidden;
  position: relative;
}

.hero-image {
  background:
    linear-gradient(90deg, rgba(255, 249, 237, 1), rgba(246, 236, 217, 0.92)),
    var(--ivory);
  inset: 0;
  position: absolute;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.about::after,
.quote::before {
  background:
    linear-gradient(90deg, transparent, rgba(199, 148, 49, 0.75), transparent),
    linear-gradient(90deg, transparent, rgba(255, 249, 237, 0.16), transparent);
  content: "";
  height: 1px;
  opacity: 0.95;
  pointer-events: none;
  position: absolute;
  right: 8%;
  top: 22%;
  transform: rotate(-18deg);
  width: min(34vw, 420px);
}

.hero-content {
  align-items: center;
  color: var(--black);
  display: grid;
  gap: clamp(36px, 7vw, 104px);
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(96px, 14vh, 142px) 24px clamp(76px, 10vh, 108px);
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
  position: relative;
}

.hero-copy::before {
  background: linear-gradient(90deg, var(--gold), rgba(199, 148, 49, 0));
  content: "";
  display: block;
  height: 2px;
  margin-bottom: 28px;
  width: 82px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  font-family: var(--heading);
  font-size: clamp(4rem, 7.1vw, 8rem);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
  max-width: 720px;
}

h2 {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: rgba(21, 19, 15, 0.78);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  font-weight: 500;
  margin-bottom: 34px;
  max-width: 610px;
}

.hero-mobile-food {
  border: 1px solid rgba(199, 148, 49, 0.32);
  border-radius: var(--radius);
  display: none;
  height: 220px;
  margin: 18px 0 22px;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

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

.hero-trust {
  color: rgba(13, 62, 43, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 20px 0 0;
  text-transform: uppercase;
}

.hero-feature {
  align-self: center;
  justify-self: end;
  max-width: 470px;
  position: relative;
  width: 100%;
}

.hero-feature::before {
  background: var(--gold);
  bottom: -18px;
  content: "";
  height: 2px;
  left: 18%;
  opacity: 0.75;
  position: absolute;
  right: 18%;
}

.hero-logo-feature {
  display: block;
  height: auto;
  object-fit: contain;
  width: min(100%, 470px);
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 96px 24px;
  position: relative;
}

.section-grid,
.quote-layout {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-copy {
  color: var(--charcoal);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.menu-grid article {
  background: var(--white);
  border: 1px solid rgba(31, 111, 72, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(21, 19, 15, 0.08);
  padding: 28px;
}

.service-card {
  min-height: 270px;
}

.card-icon {
  color: var(--hibiscus);
  display: inline-block;
  font-family: var(--heading);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 36px;
}

.menu {
  background:
    linear-gradient(rgba(255, 249, 237, 0.9), rgba(255, 249, 237, 0.9)),
    repeating-linear-gradient(135deg, rgba(31, 111, 72, 0.08) 0 2px, transparent 2px 26px);
  max-width: none;
}

.menu .section-heading,
.menu-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

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

.menu-grid article {
  border-left: 5px solid var(--gold);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-template-rows: 260px 260px;
}

.gallery-item {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(31, 111, 72, 0.08), rgba(199, 148, 49, 0.08)),
    var(--white);
  border: 1px dashed rgba(31, 111, 72, 0.34);
  border-radius: var(--radius);
  display: grid;
  margin: 0;
  min-height: 240px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.gallery-item:has(img) {
  border-style: solid;
  padding: 0;
}

.gallery-item > img,
.gallery-item picture,
.gallery-item picture img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.gallery-item > img,
.gallery-item picture {
  display: block;
  min-height: 100%;
}

.gallery-one {
  grid-row: span 2;
}

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

.gallery-three .photo-placeholder img {
  background: transparent;
  object-fit: cover;
  object-position: center 58%;
}

.gallery-four .photo-placeholder img {
  object-fit: cover;
  object-position: center 62%;
}

.photo-placeholder {
  align-items: center;
  border: 1px solid rgba(199, 148, 49, 0.34);
  border-radius: var(--radius);
  color: rgba(21, 19, 15, 0.58);
  display: grid;
  justify-items: center;
  min-height: 100%;
  overflow: hidden;
  padding: 22px;
  position: relative;
  text-align: center;
}

.photo-placeholder:has(img) {
  border: 0;
  padding: 0;
}

.photo-placeholder img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.photo-placeholder span {
  color: var(--deep-green);
  font-family: var(--heading);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
}

.photo-placeholder small {
  color: var(--hibiscus);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item figcaption {
  background: rgba(255, 249, 237, 0.92);
  border-radius: var(--radius);
  bottom: 28px;
  color: var(--black);
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 800;
  left: 28px;
  padding: 7px 12px;
  position: absolute;
  z-index: 3;
}

.quote {
  background: var(--deep-green);
  color: var(--ivory);
  max-width: none;
  overflow: hidden;
}

.quote-layout {
  margin: 0 auto;
  max-width: 1180px;
}

.quote-copy p:not(.eyebrow) {
  color: rgba(255, 249, 237, 0.78);
  font-size: 1.08rem;
}

.quote-form {
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--black);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px;
}

.quote-form label {
  color: var(--charcoal);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 7px;
  text-transform: uppercase;
}

.conditional-fields {
  border: 1px solid rgba(199, 148, 49, 0.32);
  border-radius: var(--radius);
  display: none;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px 0 0;
  padding: 22px;
}

.conditional-fields.is-visible {
  display: grid;
}

.conditional-fields legend,
.option-group > span {
  color: var(--deep-green);
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 8px;
}

.option-group {
  color: var(--charcoal);
  display: grid;
  gap: 10px;
}

.option-group label {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 9px;
  text-transform: none;
}

.option-group input {
  min-height: auto;
  width: auto;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid rgba(21, 19, 15, 0.22);
  border-radius: var(--radius);
  color: var(--black);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 111, 72, 0.14);
  outline: none;
}

.full {
  grid-column: 1 / -1;
}

.hidden {
  display: none;
}

.footer {
  align-items: start;
  background: var(--black);
  color: var(--ivory);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  padding: 48px max(24px, calc((100vw - 1180px) / 2));
}

.footer p {
  color: rgba(255, 249, 237, 0.72);
  margin: 18px 0 0;
  max-width: 470px;
}

.footer .brand-logo {
  background: var(--cream);
}

.footer-contact {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: end;
}

.social-link {
  align-items: center;
  border: 1px solid rgba(255, 249, 237, 0.26);
  border-radius: 50%;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  width: 44px;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

.social-icon {
  fill: currentColor;
  height: 21px;
  width: 21px;
}

.thanks-page {
  min-height: 100vh;
}

.thanks {
  align-content: center;
  display: grid;
  margin: 0 auto;
  min-height: 100vh;
  max-width: 720px;
  padding: 40px 24px;
}

.thanks .brand {
  margin-bottom: 54px;
}

.thanks h1 {
  color: var(--deep-green);
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.thanks p:not(.eyebrow) {
  font-size: 1.12rem;
  margin-bottom: 28px;
}

@media (max-width: 940px) {
  .nav {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    background: var(--ivory);
    border-bottom: 1px solid rgba(31, 111, 72, 0.14);
    box-shadow: 0 20px 36px rgba(21, 19, 15, 0.1);
    display: none;
    gap: 0;
    left: 0;
    padding: 8px 24px 24px;
    position: absolute;
    right: 0;
    top: 74px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-feature {
    justify-self: center;
    margin-bottom: -24px;
    max-width: min(380px, 88vw);
  }

  .hero-logo-feature {
    height: clamp(170px, 44vw, 230px);
    width: clamp(170px, 44vw, 230px);
  }

  .section {
    padding: 74px 20px;
  }

  .section-grid,
  .quote-layout,
  .card-grid.three,
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .card-icon {
    margin-bottom: 20px;
  }

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

  .gallery-one,
  .gallery-four {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 1rem;
  }

  .brand-logo {
    height: 50px;
    width: 50px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after,
  .about::after,
  .quote::before {
    display: none;
  }

  h1 {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }

  .hero-content {
    padding: 26px 24px 40px;
  }

  .hero-feature,
  .hero-logo-feature {
    display: none;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .quote-form,
  .conditional-fields,
  .gallery-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery-one,
  .gallery-four {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .gallery-item {
    min-height: 250px;
  }

  .footer-contact {
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    display: block;
    padding: 22px 24px 34px;
  }

  .hero-copy::before {
    margin-bottom: 14px;
  }

  .hero .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 4.05rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0;
  }

  .hero-mobile-food {
    display: block;
    height: 190px;
    margin: 16px 0 18px;
  }

  .hero-feature,
  .hero-logo-feature {
    display: none;
  }

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

  .hero-actions .button {
    min-height: 52px;
    padding: 10px 18px;
    width: 100%;
  }

  .hero-trust {
    line-height: 1.7;
    margin-top: 14px;
    white-space: normal;
  }
}

@media (min-width: 390px) and (max-width: 768px) {
  .hero-mobile-food {
    height: 220px;
  }
}
