:root {
  --ink: #f3efe7;
  --forest: #20231e;
  --cream: #c8bba8;
  --paper: #151714;
  --gold: #b68a45;
  --olive: #4a5140;
  --ivory: #f3efe7;
  --dark-ink: #201f1b;
  --line: rgba(243, 239, 231, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
::selection {
  background: var(--gold);
  color: #151714;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
section {
  scroll-margin-top: 84px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--ivory);
  color: var(--dark-ink);
  padding: 10px 14px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 84px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(21, 23, 20, 0.94);
  backdrop-filter: blur(14px);
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(182, 138, 69, 0.28);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: var(--gold);
}
.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}
.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
}
.brand small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 9px;
  margin-top: 5px;
}
.tgcsa-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: var(--gold);
  line-height: 1;
}
.tgcsa-rating b {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.tgcsa-rating em {
  color: #c9c4ba;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}
nav a {
  position: relative;
}
nav a:not(.nav-book)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
nav a:not(.nav-book):hover::after,
nav a:not(.nav-book):focus-visible::after {
  right: 0;
}
.nav-book {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  color: var(--ivory);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav-phone {
  color: #d8b77c;
  white-space: nowrap;
}
.nav-book:hover,
.nav-book:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #151714;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  font: inherit;
  color: var(--ivory);
}
.hero {
  height: clamp(720px, 100svh, 900px);
  min-height: 720px;
  position: relative;
  color: white;
  overflow: hidden;
}
.hero > img {
  height: 100%;
  filter: saturate(0.8);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 14, 10, 0.78) 0%,
      rgba(8, 14, 10, 0.25) 65%,
      rgba(8, 14, 10, 0.08)
    ),
    linear-gradient(0deg, rgba(8, 14, 10, 0.5), transparent 55%);
}
.hero-content {
  position: absolute;
  left: 8vw;
  top: calc(50% + 34px);
  transform: translateY(-50%);
  max-width: 720px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 24px;
  color: #d8b77c;
}
.eyebrow.dark {
  color: var(--gold);
}
.hero h1,
.section h2,
.dining h2,
.contact h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}
.hero h1 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero h1 em {
  color: #d8b77c;
  font-weight: 500;
}
.hero-content > p:not(.eyebrow) {
  font-size: 18px;
  max-width: 580px;
  margin: 28px 0;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}
.gold {
  background: var(--gold);
  color: #151714;
}
.glass {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
}
.hero-details {
  position: absolute;
  bottom: 0;
  right: 5vw;
  display: flex;
  background: var(--cream);
  color: var(--dark-ink);
}
.hero-details span {
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section {
  padding: 120px 8vw;
}
.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
}
.intro h2,
.section-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.03em;
}
.intro-copy {
  padding-top: 38px;
  color: #c9c4ba;
  font-size: 18px;
}
.feature-grid {
  width: min(86vw, 1400px);
  margin: 0 auto 110px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.78fr 1fr;
  aspect-ratio: 2.78 / 1;
  align-items: stretch;
  border: 1px solid rgba(182, 138, 69, 0.45);
}
.feature-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(182, 138, 69, 0.45);
}
.feature-photo-open {
  position: relative;
  height: 100%;
  cursor: zoom-in;
}
.feature-photo-open img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.feature-photo-open:hover img {
  transform: scale(1.015);
}
.image-expand {
  position: absolute;
  top: 22px;
  left: 22px;
  color: #fff;
  background: rgba(20, 31, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 9px 13px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-copy {
  background: var(--cream);
  padding: clamp(30px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--dark-ink);
}
.feature-copy h2 {
  max-width: 12ch;
  font-size: clamp(36px, 3vw, 46px);
  line-height: 1;
  margin: 0 0 22px;
}
.feature-copy p {
  color: #49463f;
}
.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}
.feature-copy li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(32, 31, 27, 0.2);
}
.text-link {
  font-weight: 600;
  color: #765421;
}
.dining {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--forest);
  color: white;
}
.guest-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: var(--paper);
}
.guest-path-card {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: white;
  scroll-margin-top: 84px;
}
.guest-path-card > img,
.guest-path-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.guest-path-card > img {
  object-fit: cover;
}
.guest-path-shade {
  background: linear-gradient(
    0deg,
    rgba(10, 15, 11, 0.95),
    rgba(10, 15, 11, 0.14) 78%
  );
}
.guest-path-content {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(30px, 4vw, 58px);
}
.guest-path-content h2 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.05;
}
.guest-path-content > p:not(.eyebrow) {
  max-width: 680px;
  color: #e0ddd6;
}
.guest-path-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}
.guest-path-content li {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
}
.dining img {
  height: auto;
  align-self: center;
  object-fit: contain;
  background: #10120f;
}
.dining-panel {
  padding: 100px 8vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.dining h2 {
  font-size: clamp(46px, 5vw, 74px);
}
.dining-panel > p:not(.eyebrow) {
  color: #d8d3ca;
  margin: 26px 0;
}
.meal-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.meal-list span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
}
.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}
.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.experience-cards article {
  padding: 45px 40px;
  border-right: 1px solid var(--line);
}
.experience-cards article:last-child {
  border: 0;
}
.experience-cards span {
  color: #9a7945;
}
.experience-cards h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 50px 0 12px;
}
.experience-cards p {
  color: #c7c2b9;
}
.gallery {
  background: #10120f;
  color: #fff;
}
.gallery-copy {
  max-width: 900px;
  margin-bottom: 55px;
}
.gallery-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
}
.gallery-copy > p:last-child {
  color: #cbc6bd;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  break-inside: avoid;
  background: transparent;
}
.photo-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-group-title {
  margin: 48px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #d8b77c;
  border-bottom: 1px solid rgba(182, 138, 69, 0.4);
  padding-bottom: 12px;
}
.shared-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.farm-wildlife {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
}
.farm-wildlife-photo {
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(182, 138, 69, 0.45);
}
.farm-wildlife-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}
.farm-wildlife-photo:hover img {
  transform: scale(1.015);
}
.farm-wildlife-copy h2 {
  margin: 14px 0 24px;
  font-size: clamp(42px, 5vw, 68px);
}
.farm-wildlife-copy > p:last-child {
  color: #c7c2b9;
  font-size: 18px;
}
.photo-open {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.photo-grid .photo-open {
  height: 100%;
}
.feature-image > .feature-photo-open,
.feature-image > .feature-photo-open img {
  height: 100%;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-grid figure:hover img,
.photo-open:focus-visible img {
  transform: scale(1.035);
}
.photo-open:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}
.photo-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 11px;
  background: rgba(18, 21, 18, 0.78);
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.lightbox {
  width: min(94vw, 1500px);
  height: min(92vh, 1000px);
  padding: 54px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0f120f;
  color: white;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(5px);
}
.lightbox-image {
  width: 100%;
  height: calc(100% - 42px);
  object-fit: contain;
}
.lightbox-caption {
  margin: 10px 0 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lightbox-close {
  position: absolute;
  top: 8px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.contact {
  background: var(--olive);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10vw;
}
.contact h2 {
  font-size: clamp(48px, 5.5vw, 80px);
  margin-bottom: 25px;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: #e0ddd6;
}
.contact-details {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 4vw;
}
.contact-details > div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-details small {
  color: var(--gold);
  letter-spacing: 0.18em;
}
.contact-details p {
  margin: 5px 0;
}
.contact-form {
  grid-column: 1 / -1;
  margin-top: 15px;
  padding: clamp(28px, 4vw, 55px);
  background: var(--ivory);
  color: var(--dark-ink);
  border-top: 3px solid var(--gold);
}
.form-heading {
  margin-bottom: 32px;
}
.form-direct-contact {
  margin: 10px 0 0;
  color: #5d584f;
  font-size: 14px;
}
.form-direct-contact a {
  color: #765421;
  font-weight: 700;
}
.form-heading .eyebrow {
  color: #765421;
  margin-bottom: 7px;
}
.form-heading h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(32, 31, 27, 0.3);
  border-radius: 0;
  background: white;
  color: var(--dark-ink);
  padding: 13px 14px;
  font: inherit;
  font-weight: 400;
}
.form-grid textarea {
  min-height: 135px;
  resize: vertical;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(182, 138, 69, 0.38);
  border-color: #765421;
}
.full-field {
  grid-column: 1 / -1;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 25px;
}
.form-footer p {
  margin: 0;
  color: #5d584f;
  font-size: 14px;
}
.form-footer .button {
  border: 0;
  cursor: pointer;
}
.form-status {
  margin: 16px 0 0;
  color: #4e653e;
  font-weight: 600;
}
footer {
  padding: 42px 5vw;
  background: #0d0f0c;
  color: #c9c4ba;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-brand {
  color: white;
}
.footer-rating {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 0;
  color: var(--gold);
  text-align: center;
}
.footer-rating span {
  font-size: 15px;
  letter-spacing: 0.16em;
}
.footer-rating strong {
  color: #c9c4ba;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-contact {
  margin: 0;
  color: #d8b77c;
  text-align: right;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 1250px) {
  .site-header {
    height: 72px;
  }
  .js .menu-button {
    display: block;
  }
  .site-header nav {
    display: flex;
    flex-wrap: wrap;
  }
  .js .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px 5vw;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    left: 6vw;
    right: 6vw;
    top: calc(50% + 28px);
  }
  .hero-details {
    left: 0;
    right: 0;
    justify-content: center;
  }
  .hero-details span {
    padding: 16px 10px;
    font-size: 10px;
  }
  .section {
    padding: 80px 6vw;
  }
  .intro,
  .feature-grid,
  .dining,
  .guest-paths,
  .farm-wildlife,
  .contact {
    grid-template-columns: 1fr;
  }
  .intro {
    gap: 20px;
  }
  .feature-image {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-grid {
    width: auto;
    margin: 0 6vw 80px;
    padding: 0;
    aspect-ratio: auto;
  }
  .feature-image > .feature-photo-open,
  .feature-image > .feature-photo-open img {
    height: auto;
  }
  .feature-copy {
    padding: 55px 7vw;
  }
  .dining img {
    height: auto;
    grid-row: 1;
  }
  .experience-cards {
    grid-template-columns: 1fr;
  }
  .experience-cards article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .experience-cards h3 {
    margin-top: 18px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-details {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0 0;
  }
  .contact {
    gap: 50px;
  }
  .contact-form {
    margin-top: 0;
  }
  .guest-path-card {
    min-height: 650px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-rating {
    justify-items: start;
    text-align: left;
  }
  .footer-contact {
    text-align: left;
  }
}
@media (max-width: 520px) {
  .feature-grid {
    margin-bottom: 60px;
  }
  .feature-copy ul {
    grid-template-columns: 1fr;
  }
  .image-expand {
    top: 14px;
    left: 14px;
  }
  .brand strong {
    font-size: 17px;
  }
  .hero h1 {
    font-size: clamp(46px, 14vw, 58px);
    line-height: 1;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-details span {
    flex: 1;
    text-align: center;
  }
  .intro h2,
  .section-heading h2 {
    font-size: 41px;
  }
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-field {
    grid-column: auto;
  }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
  .guest-path-card {
    min-height: 760px;
  }
  .guest-path-content ul {
    grid-template-columns: 1fr;
  }
}
