:root {
  --green: #092f26;
  --green-deep: #06231d;
  --cream: #f3eee5;
  --cream-deep: #e7dece;
  --ink: #1b211d;
  --muted: #6f716b;
  --gold: #b08b4f;
  --gold-light: #d8bb86;
  --line: rgba(27, 33, 29, 0.18);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
}

h1 em,
h2 em,
blockquote em {
  color: var(--gold-light);
  font-style: italic;
}

.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-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 94px;
  padding: 0 5vw;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 47px;
  height: 47px;
  color: var(--gold-light);
  border: 1px solid rgba(216, 187, 134, 0.7);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand-logo {
  display: block;
  width: 108px;
  height: auto;
  flex: 0 0 auto;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

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

.button-gold {
  color: #fff;
  background: var(--gold);
}

.button-gold:hover {
  background: #9a753d;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  color: var(--green);
  background: #fff;
  border-color: #fff;
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 790px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 35, 29, 0.84) 0%, rgba(6, 35, 29, 0.67) 38%, rgba(6, 35, 29, 0.13) 72%),
    url("hero-light-oak.png") center / cover no-repeat,
    var(--green);
}

.hero::after {
  position: absolute;
  right: 5vw;
  bottom: 0;
  left: 5vw;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 65vw);
  margin-top: 70px;
  padding-left: 10vw;
}

.eyebrow {
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(62px, 7vw, 106px);
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.text-link {
  display: inline-block;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 42px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.hero-note span {
  color: var(--gold-light);
  font-family: var(--serif);
}

.hero-note p {
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
}

.section {
  padding: 130px 10vw;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 12vw;
}

.intro h2,
.section-heading h2,
.visit h2,
.page-hero h1,
.booking-panel h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.3vw, 78px);
  letter-spacing: -0.025em;
}

.intro-copy {
  max-width: 560px;
  padding-top: 45px;
}

.intro-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.35;
}

.intro-copy > p:not(.lead) {
  color: var(--muted);
}

.intro-copy .text-link {
  margin-top: 18px;
}

.signature {
  padding-top: 110px;
  background: var(--cream-deep);
}

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

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

.service-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 35px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.service-number,
.category-title span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 16px;
}

.service-card h3,
.menu-item h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.menu-item h3 small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-card p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-meta {
  display: flex;
  gap: 36px;
  padding-top: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-meta span:last-child {
  min-width: 120px;
  color: var(--gold);
  text-align: right;
}

.quote {
  padding: 130px 10vw 145px;
  color: #fff;
  text-align: center;
  background: var(--green);
}

.quote blockquote {
  max-width: 1050px;
  margin: 0 auto 55px;
  font-family: var(--serif);
  font-size: clamp(45px, 5.5vw, 80px);
  line-height: 1.15;
}

.visit {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12vw;
}

.visit-heading .text-link {
  margin-top: 35px;
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 55px;
}

.visit-details h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.visit-details p,
.visit-details a,
.hours {
  color: var(--muted);
}

.visit-details a {
  border-bottom: 1px solid var(--gold);
}

.hours {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.hours dd {
  margin: 0;
}

.site-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--green-deep);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(300px, auto) minmax(220px, 1fr);
  align-items: center;
  gap: 70px;
  width: 100%;
  max-width: 1500px;
  min-height: 270px;
  margin: 0 auto;
  padding: 65px 7vw;
}

.footer-center {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.site-footer .brand-mark,
.footer-logo {
  margin-bottom: 22px;
}

.footer-logo {
  display: block;
  width: 150px;
  height: auto;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copyright {
  justify-self: end;
  text-align: right;
}

.dark-header {
  position: relative;
  background: var(--green-deep);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 10vw;
  align-items: end;
  padding: 115px 10vw 105px;
  color: #fff;
  background: var(--green);
}

.page-hero p:last-child {
  max-width: 480px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.menu-section {
  padding-top: 90px;
}

.menu-category {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 8vw;
  margin-bottom: 110px;
}

.category-title {
  display: flex;
  gap: 25px;
  align-items: baseline;
}

.category-title h2 {
  margin: 0;
  font-size: 52px;
}

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

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
}

.price {
  min-width: 165px;
  padding-top: 8px;
  text-align: right;
}

.price span,
.price strong {
  display: block;
}

.price span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.featured-item {
  margin-top: 20px;
  padding: 42px;
  color: #fff;
  background: var(--green);
  border-bottom: 0;
}

.featured-item p {
  color: rgba(255, 255, 255, 0.68);
}

.featured-item .eyebrow {
  color: var(--gold-light);
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 10vw;
  align-items: end;
  padding: 110px 10vw 120px;
  color: #fff;
  background: var(--green);
}

.booking-panel > div:last-child {
  max-width: 480px;
}

.booking-panel > div:last-child p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.booking-hero {
  padding: 115px 10vw 110px;
  color: #fff;
  text-align: center;
  background: var(--green);
}

.booking-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 7vw, 100px);
  letter-spacing: -0.035em;
}

.booking-hero > p:last-child {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

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

.embed-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 65px;
}

.embed-heading h2,
.booking-location h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.3vw, 76px);
  letter-spacing: -0.025em;
}

.embed-heading > p {
  max-width: 480px;
  margin-bottom: 8px;
  color: var(--muted);
}

.square-embed-placeholder {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 570px;
  padding: 70px 30px;
  text-align: center;
  border: 1px solid rgba(176, 139, 79, 0.55);
  background:
    linear-gradient(rgba(9, 47, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 47, 38, 0.025) 1px, transparent 1px),
    rgba(255, 255, 255, 0.3);
  background-size: 28px 28px;
}

.placeholder-monogram {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 30px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.08em;
}

.square-embed-placeholder .eyebrow {
  margin-bottom: 15px;
}

.square-embed-placeholder h3 {
  margin-bottom: 15px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.square-embed-placeholder > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.booking-visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 700px;
  background: var(--cream-deep);
}

.booking-map {
  min-height: 700px;
  background: #d8d0c1;
}

.booking-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: 0;
  filter: saturate(0.6) sepia(0.14) contrast(0.95);
}

.booking-location {
  padding: 105px 8vw;
}

.booking-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 45px 55px;
  margin-top: 65px;
}

.booking-info-grid > div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.booking-info-grid h3 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.booking-info-grid p,
.booking-info-grid .hours {
  color: var(--muted);
}

.booking-info-grid a:not(.text-link) {
  border-bottom: 1px solid rgba(176, 139, 79, 0.65);
}

.not-found {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 24px;
  color: #fff;
  text-align: center;
  background: var(--green);
}

.not-found .brand-mark,
.not-found-logo {
  margin-bottom: 42px;
}

.not-found-logo {
  width: min(320px, 76vw);
  height: auto;
}

.not-found .eyebrow {
  margin-bottom: 22px;
}

.not-found h1 {
  margin-bottom: 25px;
  font-size: clamp(55px, 7vw, 96px);
  letter-spacing: -0.035em;
}

.not-found > p:not(.eyebrow) {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.7);
}

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

  .site-nav {
    position: absolute;
    top: 94px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 5vw 32px;
    color: #fff;
    background: var(--green-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

  .site-nav a::after {
    bottom: 10px;
    transform-origin: left;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    color: #fff;
    background: transparent;
    border: 0;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    margin: 4px 0;
    background: currentColor;
  }

  .header-book {
    display: none;
  }

  .intro,
  .visit,
  .page-hero,
  .booking-panel,
  .embed-heading,
  .booking-visit {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .booking-map,
  .booking-map iframe {
    min-height: 480px;
  }

  .intro-copy,
  .visit-details {
    padding-top: 0;
  }

  .menu-category {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 78px;
    padding: 0 22px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-logo {
    width: 82px;
  }

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

  .site-nav {
    top: 78px;
  }

  .hero {
    min-height: 760px;
    background:
      linear-gradient(90deg, rgba(6, 35, 29, 0.88) 0%, rgba(6, 35, 29, 0.69) 62%, rgba(6, 35, 29, 0.3) 100%),
      url("hero-light-oak.png") 72% center / cover no-repeat,
      var(--green);
  }

  .hero-content {
    width: auto;
    margin-top: 45px;
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .hero-note {
    display: none;
  }

  .section,
  .page-hero,
  .booking-panel,
  .booking-hero {
    padding: 85px 24px;
  }

  .intro h2,
  .section-heading h2,
  .visit h2,
  .page-hero h1,
  .booking-panel h2,
  .embed-heading h2,
  .booking-location h2 {
    font-size: 47px;
  }

  .intro {
    gap: 25px;
  }

  .intro-copy .lead {
    font-size: 24px;
  }

  .service-card {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .service-meta {
    grid-column: 2;
    justify-content: flex-start;
  }

  .service-meta span:last-child {
    text-align: left;
  }

  .service-card h3,
  .menu-item h3 {
    font-size: 26px;
  }

  .quote {
    padding: 90px 24px 100px;
  }

  .quote blockquote {
    font-size: 43px;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 45px;
    min-height: 0;
    padding: 70px 24px 55px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-center {
    align-items: center;
  }

  .copyright {
    justify-self: center;
    text-align: center;
  }

  .page-hero {
    padding-top: 80px;
  }

  .menu-category {
    margin-bottom: 75px;
  }

  .category-title h2 {
    font-size: 42px;
  }

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

  .price {
    text-align: left;
  }

  .featured-item {
    padding: 30px 25px;
  }

  .booking-hero h1 {
    font-size: 55px;
  }

  .embed-heading {
    gap: 24px;
    margin-bottom: 45px;
  }

  .square-embed-placeholder {
    min-height: 470px;
    padding: 55px 22px;
  }

  .booking-map,
  .booking-map iframe {
    min-height: 390px;
  }

  .booking-location {
    padding: 80px 24px;
  }

  .booking-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 45px;
  }
}
