:root {
  --forest: #103f28;
  --forest-dark: #082719;
  --leaf: #2d7142;
  --gold: #f5bc34;
  --pepper: #e65a22;
  --cream: #fff6e4;
  --linen: #fffdf8;
  --ink: #142019;
  --muted: #637064;
  --line: rgba(16, 63, 40, 0.14);
  --shadow: 0 24px 60px rgba(8, 39, 25, 0.14);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 20;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 800;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 5vw, 72px);
  color: #fff8df;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  padding-block: 14px;
  background: rgba(8, 39, 25, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(245, 188, 52, 0.86);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
}

.brand-copy {
  display: grid;
  line-height: 0.95;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07rem;
  font-style: italic;
  font-weight: 700;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 760;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  padding: 13px 18px;
  background: var(--gold);
  color: #122018;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 248, 223, 0.36);
  border-radius: 50%;
  background: rgba(8, 39, 25, 0.42);
  color: #fff8df;
  cursor: pointer;
}

.nav-toggle-line {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.nav-toggle-line:first-child {
  transform: translateY(-4px);
}

.nav-toggle-line:nth-child(2) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest-dark);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 22, 14, 0.94), rgba(6, 22, 14, 0.7) 39%, rgba(6, 22, 14, 0.08)),
    linear-gradient(0deg, rgba(6, 22, 14, 0.82), rgba(6, 22, 14, 0.02) 58%);
}

.hero-inner,
.section-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.hero-inner {
  padding: 140px 0 64px;
}

.hero-copy {
  width: min(660px, 100%);
  color: #fff8df;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  margin-top: 22px;
  font-size: clamp(4.2rem, 8vw, 8.9rem);
  line-height: 0.82;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62em;
  font-style: italic;
  font-weight: 700;
  text-transform: lowercase;
}

.hero-lede {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 248, 223, 0.86);
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
  line-height: 1.68;
}

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

.button {
  padding: 15px 21px;
}

.button-primary {
  background: var(--pepper);
  color: #fffaf0;
  box-shadow: 0 15px 30px rgba(230, 90, 34, 0.24);
}

.button-outline {
  border: 1px solid rgba(255, 250, 240, 0.54);
  color: #fffaf0;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.proof-strip {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 78px 0 0;
  background: rgba(255, 248, 223, 0.18);
}

.proof-strip div {
  padding: 18px 20px;
  background: rgba(8, 39, 25, 0.78);
}

.proof-strip dt {
  color: #fff8df;
  font-size: 1.2rem;
  font-weight: 900;
}

.proof-strip dd {
  margin: 5px 0 0;
  color: rgba(255, 248, 223, 0.68);
  font-size: 0.88rem;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.5fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  margin-bottom: 38px;
}

.kicker {
  color: var(--pepper);
}

h2 {
  margin-bottom: 0;
  margin-top: 12px;
  color: var(--forest-dark);
  font-size: clamp(2.35rem, 4.1vw, 4.45rem);
  line-height: 0.95;
}

.section-head p,
.service-copy p,
.contact-copy p,
.package p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.dish-feature,
.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d2c0;
}

.dish-feature {
  min-height: 600px;
}

.dish-stack {
  display: grid;
  gap: 18px;
}

.dish-card {
  min-height: 291px;
}

.dish-feature img,
.dish-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 500ms ease;
}

.dish-feature::after,
.dish-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 22, 14, 0.72), rgba(6, 22, 14, 0.02) 58%);
}

.dish-feature div,
.dish-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fffaf0;
}

.dish-feature:hover img,
.dish-card:hover img {
  transform: scale(1.045);
}

h3 {
  margin-bottom: 5px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.dish-feature p,
.dish-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.9rem;
}

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

.service-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.84fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}

.service-photo {
  height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d2c0;
  box-shadow: var(--shadow);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy h2 {
  margin-bottom: 24px;
}

.service-copy p {
  max-width: 560px;
}

.service-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.service-row strong {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-row span {
  color: var(--muted);
  line-height: 1.65;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.package {
  min-height: 280px;
  padding: 34px 30px;
  background: var(--linen);
}

.package span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.package h3 {
  margin-top: 68px;
  color: var(--forest-dark);
  font-size: 1.55rem;
}

.gallery-section {
  background: #fffaf0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.gallery-grid img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:nth-child(2) {
  height: 590px;
}

.contact-section {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
  color: #fff8df;
  isolation: isolate;
}

.contact-media,
.contact-shade {
  position: absolute;
  inset: 0;
}

.contact-media {
  z-index: -3;
  background: url("/assets/open-haven/generated-web/hero-buffet.jpg") center/cover;
}

.contact-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(8, 39, 25, 0.94), rgba(8, 39, 25, 0.84));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.55fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
  padding: 92px 0;
}

.contact-copy h2 {
  max-width: 720px;
  color: #fff8df;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 248, 223, 0.78);
}

.contact-card {
  display: block;
  margin: 0;
  border-left: 1px solid rgba(255, 248, 223, 0.28);
  padding-left: 32px;
  font-style: normal;
}

.contact-card span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  display: block;
  margin-top: 14px;
  color: #fff8df;
  font-size: clamp(2.5rem, 4.4vw, 4.3rem);
  font-weight: 950;
  line-height: 0.92;
}

.contact-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 248, 223, 0.72);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 27px clamp(22px, 5vw, 72px);
  background: #061c12;
  color: rgba(255, 248, 223, 0.72);
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }

  .brand-copy {
    font-size: 0.78rem;
  }

  .brand-copy span:last-child {
    font-size: 0.9rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 12;
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 24px;
    padding: 96px 28px 36px;
    background: rgba(8, 39, 25, 0.98);
    color: #fff8df;
    font-size: clamp(2.1rem, 11vw, 4.2rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    min-height: 48px;
    padding: 14px 18px;
    font-size: 1rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 34px, 560px);
  }

  .hero-inner {
    padding: 118px 0 38px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

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

  .proof-strip,
  .section-head,
  .menu-layout,
  .service-layout,
  .package-grid,
  .gallery-grid,
  .contact-layout,
  .service-row {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 46px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 26px;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .dish-feature,
  .dish-card,
  .gallery-grid img,
  .gallery-grid img:nth-child(2),
  .service-photo {
    min-height: auto;
    height: 330px;
  }

  .service-photo {
    order: -1;
  }

  .package {
    min-height: auto;
    padding: 28px 0;
    background: transparent;
  }

  .package h3 {
    margin-top: 36px;
  }

  .contact-section {
    min-height: 590px;
  }

  .contact-layout {
    padding: 70px 0;
  }

  .contact-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 248, 223, 0.28);
    padding-top: 27px;
    padding-left: 0;
  }

  .site-footer {
    display: grid;
    padding-inline: 17px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .proof-strip div {
    padding: 16px;
  }

  .contact-card a {
    font-size: clamp(2.2rem, 13vw, 3rem);
  }
}
