:root {
  --warm-white: #faf8f4;
  --paper: #fffefa;
  --green: #4a6741;
  --green-deep: #2d4329;
  --green-pale: #e5ebdf;
  --gold: #b39b5e;
  --gold-dark: #745f2e;
  --ink: #253024;
  --muted: #62695e;
  --line: #cfd4ca;
  --display: "Gilda Display", Georgia, serif;
  --body: "Mulish", Arial, sans-serif;
  --gutter: clamp(1.1rem, 5vw, 4.5rem);
  --section: clamp(5rem, 10vw, 8.5rem);
  --max: 86rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ul,
address {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid #735b20;
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: #141b13;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--green-deep);
  color: var(--paper);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.section,
.availability,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1rem;
  min-height: 5.5rem;
  padding-block: 1rem;
  background: var(--warm-white);
}

.venue-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-deep);
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
}

.venue-mark small {
  display: block;
  margin-top: 0.25rem;
  color: var(--gold-dark);
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leaf {
  position: relative;
  display: inline-block;
  width: 1.35rem;
  height: 1.75rem;
  border: 1px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-22deg);
}

.leaf::after {
  position: absolute;
  inset: 0.3rem 0.65rem -0.25rem auto;
  width: 1px;
  background: currentColor;
  content: "";
  transform: rotate(-32deg);
  transform-origin: bottom;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 3vw, 1.6rem);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav a {
  text-decoration: none;
}

.top-nav > a:not(.button):hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
}

.button--small {
  min-height: 2.7rem;
  padding: 0.6rem 0.85rem;
}

.hero {
  position: relative;
  min-height: clamp(36rem, 82svh, 52rem);
  overflow: hidden;
  color: var(--paper);
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 32, 18, 0.78), rgba(20, 32, 18, 0.08) 62%);
}

.hero-content {
  position: absolute;
  right: 0;
  bottom: clamp(2rem, 7vw, 5.5rem);
  left: 0;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3.8rem, 10vw, 8rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.hero-line {
  margin-bottom: 0;
  font-size: clamp(0.72rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-line span {
  padding-inline: 0.2rem;
  color: #d2ba7a;
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #e8d7aa;
}

.section {
  padding-block: var(--section);
}

.welcome {
  display: grid;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.welcome h2,
.section-heading h2,
.availability h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.welcome-copy {
  align-self: end;
  max-width: 37rem;
}

.welcome-copy .lead {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.35;
}

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

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(2.75rem, 6vw, 4.75rem);
}

.section-heading--split {
  display: grid;
  gap: 1.5rem;
}

.section-heading--split > p {
  max-width: 33rem;
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
}

.spaces {
  background: var(--paper);
}

.space-grid {
  display: grid;
  gap: 1.2rem;
}

.space-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--warm-white);
}

.space-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.space-card:nth-child(1) img {
  object-position: 23% center;
}

.space-card:nth-child(2) img {
  object-position: 62% center;
}

.space-card:nth-child(3) img {
  object-position: 78% center;
}

.space-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.35rem, 4vw, 2.2rem);
}

.card-number,
.package-label {
  margin-bottom: 1.4rem;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.space-copy h3,
.visit-grid h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.space-copy > p:not(.card-number):not(.capacity) {
  color: var(--muted);
}

.capacity {
  margin: auto 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.stat-number {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  line-height: 1;
}

.capacity small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-band {
  display: grid;
  background: var(--green-deep);
}

.gallery-band figure {
  position: relative;
  aspect-ratio: 4 / 3;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.gallery-band img {
  height: 100%;
  object-fit: cover;
}

.gallery-band figure:first-child img {
  object-position: 58% center;
}

.gallery-band figure:last-child img {
  object-position: 72% center;
}

.gallery-band figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.65rem;
  background: rgba(250, 248, 244, 0.92);
  color: var(--green-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.packages {
  border-bottom: 1px solid var(--line);
}

.pricing-row {
  display: grid;
  gap: 1rem;
}

.package {
  display: flex;
  min-height: 24rem;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  flex-direction: column;
  border: 1px solid var(--green);
  background: var(--paper);
}

.package--featured {
  background: var(--green-pale);
}

.package-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.package-label {
  margin-bottom: 0.45rem;
}

.package h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 0.95;
}

.price {
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.price strong {
  display: block;
  color: var(--green-deep);
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.package > p {
  color: var(--muted);
}

.package > .text-link {
  margin-top: auto;
}

.includes {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.includes h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.includes ul {
  display: grid;
  gap: 0.9rem 2rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.includes li {
  position: relative;
  padding-left: 1.5rem;
}

.includes li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.testimonials {
  background: var(--green-pale);
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-grid figure {
  display: flex;
  min-height: 20rem;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
}

.testimonial-grid blockquote {
  max-width: 25ch;
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 5vw, 2.7rem);
  line-height: 1.25;
}

.testimonial-grid figcaption {
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability {
  display: grid;
  gap: 3rem;
  padding-block: var(--section);
  background: var(--green-deep);
  color: var(--paper);
}

.availability-copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: 1.75rem;
  color: #d8e0d3;
}

.availability form {
  display: grid;
  gap: 1.2rem 1rem;
  align-self: start;
  padding: clamp(1.3rem, 4vw, 2.5rem);
  background: var(--warm-white);
  color: var(--ink);
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid var(--green);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.form-field textarea {
  resize: vertical;
}

.availability button {
  min-height: 3.5rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.availability button:hover {
  background: var(--green-deep);
}

.form-success {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--green);
  color: var(--green-deep);
}

.visit-grid {
  display: grid;
  gap: 1rem;
}

.visit-grid article {
  display: flex;
  min-height: 22rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}

.visit-grid article > p:not(.card-number) {
  color: var(--muted);
}

.visit-grid .text-link {
  margin-top: auto;
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: 3rem;
  background: var(--green-deep);
  color: var(--paper);
}

.venue-mark--light {
  color: var(--paper);
}

.venue-mark--light small {
  color: #d9c88f;
}

.site-footer p {
  margin: 0;
  color: #cad3c6;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 46rem) {
  .welcome,
  .section-heading--split,
  .availability {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .space-grid,
  .pricing-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .gallery-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-band figure {
    aspect-ratio: 16 / 10;
  }

  .includes {
    grid-template-columns: minmax(15rem, 0.6fr) minmax(0, 1.4fr);
  }

  .includes ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid,
  .visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .availability form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field--full,
  .availability button,
  .form-success {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
  }
}

@media (max-width: 29.99rem) {
  .site-header {
    justify-content: center;
  }

  .top-nav {
    width: 100%;
    justify-content: center;
  }

  .top-nav > a:not(.button) {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* iOS Safari fix: date inputs have an intrinsic minimum width that overflows
   their container on real iPhones (invisible in desktop emulation, which uses
   Chrome's engine, not WebKit's UA styles). Kill the intrinsic sizing. */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* Standard: back-to-top button with scroll-progress ring */
.btt-button {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900;
  width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(17, 17, 17, 0.85); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btt-button.btt-visible { opacity: 1; visibility: visible; transform: none; }
.btt-button:focus-visible { outline: 3px solid #b39b5e; outline-offset: 3px; }
.btt-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.btt-ring circle { fill: none; stroke-width: 3; }
.btt-ring-track { stroke: rgba(255, 255, 255, 0.22); }
.btt-ring-fill { stroke: #b39b5e; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; stroke-linecap: round; }
.btt-arrow { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) { .btt-button { transition: none; } }
