:root {
  --ivory: #f5e8c7;
  --gold-beige: #e6d2a3;
  --coffee: #4b2e1e;
  --dark-brown: #2f1d13;
  --pine: #44552d;
  --olive: #6a7542;
  --cinnamon: #8a5a34;
  --aged-gold: #b9924b;
  --white-soft: #fff9ea;
  --shadow: 0 22px 70px rgba(47, 29, 19, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--coffee);
  font-family: var(--sans);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--white-soft);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(245, 232, 199, 0.94);
  color: var(--coffee);
  box-shadow: 0 12px 40px rgba(47, 29, 19, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 999px;
  background: var(--ivory);
}

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

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

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--aged-gold);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 249, 234, 0.45);
  border-radius: 999px;
  background: rgba(47, 29, 19, 0.24);
  color: currentColor;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(47, 29, 19, 0.78), rgba(47, 29, 19, 0.45) 46%, rgba(47, 29, 19, 0.14)),
    linear-gradient(180deg, rgba(47, 29, 19, 0.24), rgba(47, 29, 19, 0.68));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.8rem);
}

.hero-logo {
  display: block;
  width: min(520px, 78vw);
  height: auto;
  margin: 0 0 26px;
  filter: drop-shadow(0 24px 42px rgba(47, 29, 19, 0.42));
}

h2 {
  margin: 0;
  color: var(--dark-brown);
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  margin: 0;
  color: var(--dark-brown);
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

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

.button,
.notify-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.notify-form button:hover {
  transform: translateY(-2px);
}

.button.primary,
.notify-form button {
  background: var(--pine);
  color: var(--white-soft);
}

.button.primary:hover,
.notify-form button:hover {
  background: var(--olive);
}

.button.secondary {
  border-color: rgba(255, 249, 234, 0.6);
  color: var(--white-soft);
}

.opening-card {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 5vw, 76px);
  bottom: 42px;
  display: grid;
  gap: 8px;
  max-width: 310px;
  padding: 24px;
  border: 1px solid rgba(185, 146, 75, 0.72);
  border-radius: 8px;
  background: rgba(245, 232, 199, 0.92);
  color: var(--coffee);
  box-shadow: var(--shadow);
}

.opening-card span {
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.opening-card strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--aged-gold);
}

.intro-band div {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 30px clamp(20px, 3vw, 42px);
  background: var(--gold-beige);
}

.intro-band strong {
  color: var(--dark-brown);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.intro-band span {
  line-height: 1.55;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(22px, 6vw, 92px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.menu-copy p,
.feature-grid p,
.about-panel p {
  color: rgba(75, 46, 30, 0.82);
  font-size: 1rem;
  line-height: 1.78;
}

.section-copy {
  max-width: 820px;
}

.about-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(185, 146, 75, 0.72);
  border-radius: 8px;
  background: var(--white-soft);
  box-shadow: var(--shadow);
}

.panel-number {
  color: var(--aged-gold);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.8;
}

.experience {
  background: var(--dark-brown);
}

.experience h2 {
  color: var(--ivory);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

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

.feature-grid article {
  display: grid;
  gap: 16px;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(230, 210, 163, 0.28);
  border-radius: 8px;
  background: rgba(245, 232, 199, 0.08);
}

.feature-grid h3,
.feature-grid p {
  color: var(--ivory);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--aged-gold);
  color: var(--dark-brown);
  font-size: 1.4rem;
  font-weight: 900;
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: clamp(72px, 9vw, 132px) clamp(22px, 6vw, 92px);
  background:
    linear-gradient(135deg, rgba(230, 210, 163, 0.72), rgba(245, 232, 199, 0.88)),
    var(--ivory);
}

.menu-list {
  display: grid;
  border-top: 1px solid var(--aged-gold);
}

.menu-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(185, 146, 75, 0.5);
}

.menu-list span {
  color: var(--dark-brown);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
}

.menu-list strong {
  color: var(--pine);
  text-align: right;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(72px, 9vw, 124px) clamp(22px, 6vw, 92px);
  background: var(--pine);
}

.cta h2 {
  color: var(--ivory);
}

.notify-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(230, 210, 163, 0.38);
  border-radius: 8px;
  background: rgba(245, 232, 199, 0.1);
  color: var(--ivory);
}

.notify-form label {
  font-weight: 800;
}

.notify-form div {
  display: flex;
  gap: 10px;
}

.notify-form input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(230, 210, 163, 0.7);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ivory);
  color: var(--dark-brown);
  font: inherit;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--gold-beige);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(22px, 6vw, 92px);
  background: var(--dark-brown);
  color: var(--gold-beige);
  font-weight: 700;
}

@media (max-width: 860px) {
  .menu-button {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(185, 146, 75, 0.45);
    border-radius: 8px;
    background: var(--ivory);
    color: var(--coffee);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
  }

  .opening-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 330px);
    margin-top: 34px;
  }

  .intro-band,
  .about,
  .feature-grid,
  .menu-section,
  .cta {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .menu-list div,
  .notify-form div,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-list strong {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 56px;
    height: 56px;
  }

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

  .hero-logo {
    width: min(360px, 86vw);
  }

  .feature-grid article {
    min-height: auto;
  }
}
