/* Oak Hill — static site styles */

:root {
  /* Brand palette (oakhill brand guidelines) */
  --ink: #342E2B;
  --ink-soft: #5a504a;
  --sage: #757C70;
  --sage-deep: #5a6155;
  --sage-soft: #a4ab9f;
  --tan: #C4B099;
  --cream: #efebe6;
  --cream-soft: #ebe2d6;
  --blue-gray: #AAB5C1;
  --paper: #ffffff;

  --muted: #8b8275;
  --nav: #5a504a;
  --footer-bg: #342E2B;
  --rule: #d8cfbe;

  --serif: "Trajan Pro", "Cinzel", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1500px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 15px;
}

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

html, body { margin: 0; }

body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

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

p { margin: 0 0 1em; }

strong { color: var(--ink); font-weight: 600; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.18em;
  color: var(--ink);
  margin: 0 0 14px;
}

.divider {
  width: 220px;
  height: auto;
  margin: 6px 0 26px;
  opacity: 0.95;
}
.divider--center { margin-left: auto; margin-right: auto; }

.lede { font-size: 15px; color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border-radius: var(--radius);
}
.btn--solid {
  background: var(--sage);
  color: #fff;
}
.btn--solid:hover { background: var(--sage-deep); }

.btn--white {
  background: #fff;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.20em;
  font-weight: 500;
  padding: 12px 28px;
}
.btn--white:hover { background: var(--cream-soft); }
.btn--cream{
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.20em;
  font-weight: 500;
  padding: 12px 28px;
}

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  padding: 22px 0;
  border-bottom: 1px solid #f0ece4;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img { width: 340px; }
.site-nav {
  display: flex;
  gap: 36px;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--nav);
}
.site-nav a:hover { color: var(--sage); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 28px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: var(--radius);
}

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 20px 90px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #D4D4D4 0%, #757C70 100%);
  opacity: .6;
}
.hero__frame {
  position: absolute;
  inset: 18px;
  border: 2px solid #C4B099;
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__ornament {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  z-index: 2;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 92px);
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  line-height: 1;
}
.hero__tagline {
  font-family: var(--sans-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.04em;
  margin: 0 0 30px;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto 38px;
  color: rgba(255,255,255,0.92);
}

/* ============ Property ============ */

.property {
  position: relative;
  background: var(--paper);
  padding: clamp(80px, 10vw, 130px) 0 clamp(120px, 14vw, 200px);
  overflow: hidden;
}
.property__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.property__art {
  position: relative;
  aspect-ratio: 940 / 637;
}
.property__plate {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 86%;
  height: 86%;
  background: #d8d4cb;
  border-radius: var(--radius);
}
.property__photo {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 38px;
  width: 86%;
  height: 86%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}
.property__pattern {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 0px;
  width: 420px;
  height: 270px;
  background: url("/assets/images/tier-1-pattern-layer.png") center/cover no-repeat;
  opacity: 0.95;
  border-radius: var(--radius);
}
.property__copy { padding-top: 10px; }

/* Top wave: anchored to bottom of tier 1, extends into booking */
.property__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(90px, 11vw, 150px);
  background: url("/assets/images/tier-2-top-divider.png") center bottom / 100% 100% no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* ============ Booking ============ */

.booking {
  position: relative;
  background: var(--cream);
  padding: clamp(20px, 4vw, 50px) 0 clamp(120px, 16vw, 120px);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(20px, 4vw, 40px) var(--gutter) clamp(20px, 4vw, 40px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.booking__copy {
  text-align: left;
  max-width: 520px;
}
.booking__copy .divider { margin-left: 0; }
.booking__copy .lede { margin-bottom: 28px; }

.steps-wrap {
  position: relative;
  max-width: 600px;
  width: 100%;
  justify-self: end;
}
.steps-wrap::before {
  content: "";
  position: absolute;
  inset: 18px 18px -18px -18px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 0;
  border-radius: var(--radius);
}
.steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: clamp(36px, 4vw, 56px) clamp(32px, 4vw, 56px);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.10em;
  color: var(--ink);
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
  border-radius: var(--radius);
}
.steps li {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.steps__num { color: var(--ink); font-weight: 400; min-width: 1.6em; }
.steps__active { color: var(--ink); }
.steps__active strong { font-weight: 700; letter-spacing: 0.10em; }

/* ============ Perfect Day + Form ============ */

.perfect-day {
  position: relative;
  background: var(--paper);
  padding: clamp(140px, 16vw, 220px) 0 clamp(80px, 10vw, 140px);
  text-align: left;
  overflow: hidden;
}
.perfect-day__grid {
  position: relative;
  z-index: 3;
}
.perfect-day__content {
  max-width: 620px;
  width: 50%;
}
.perfect-day__media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  z-index: 0;
  pointer-events: none;
}
.perfect-day__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Bottom wave: anchored to top of tier 3, extends up into booking */
.perfect-day__wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: clamp(80px, 10vw, 130px);
  background: url("/assets/images/tier-2-bottom-divider.png") center / 100% 100% no-repeat;
  z-index: 1;
  pointer-events: none;
}
.perfect-day__lede {
  max-width: 580px;
  margin: 0 0 48px;
}

.contact {
  max-width: 100%;
  margin: 0;
  background: #e6e2da;
  border: 1px solid #d6d1c5;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  text-align: left;
  position: relative;
  z-index: 2;
}
.contact__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 24px;
}
.contact__heading h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: 0.18em;
  color: var(--ink);
  margin: 0;
}
.contact__heading img { width: 26px; height: auto; }

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact label { display: block; }
.contact label span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact input,
.contact textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  padding: 12px 14px;
  border: 1px solid #d9d2c2;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact input:focus,
.contact textarea:focus { border-color: var(--sage); }
.contact textarea { resize: vertical; }
.contact__full { display: block; margin-bottom: 22px; }

.contact button { margin-top: 4px; }
.contact__status {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--sage-deep);
  min-height: 1em;
}

/* ============ Footer ============ */

.site-footer {
  background: var(--footer-bg);
  color: #b8b3aa;
  padding: clamp(50px, 6vw, 80px) 0 clamp(40px, 5vw, 60px);
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}
.site-footer__wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.20em;
  color: #fff;
  margin: 0;
}
.site-footer__rule { width: 220px; height: auto; opacity: 0.9; }

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.site-footer__cols h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: #fff;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.site-footer__cols ul { list-style: none; padding: 0; margin: 0; }
.site-footer__cols li { margin-bottom: 10px; }
.site-footer__cols a:hover { color: #fff; }

.site-footer__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.site-footer__cta {
  background: var(--mint);
  height: 180px;
  border-radius: var(--radius);
}
.site-footer__address {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b8b3aa;
  text-align: left;
}
.site-footer__address strong { color: #fff; font-weight: 600; }

/* ============ Venue Page ============ */

.venue-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.venue-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.venue-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* align bottom */
  object-position: right bottom;
}
.venue-hero__overlay {
  position: absolute;
  inset: 0;
}
.venue-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 7vw, 100px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
}
.gallery-hero__title-box,
.venue-hero__title-box {
  display: inline-block;
  border: 1px solid rgba(111, 125, 99, 0.55);
  border-radius: var(--radius);
  padding: 14px 14px;
  margin-bottom: 30px;
}
.gallery-hero__title,
.venue-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 82px);
  letter-spacing: 0.16em;
  color: var(--sage);
  margin: 0;
  line-height: 1;
}
.gallery-hero__sub,
.venue-hero__sub {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(111, 125, 99, 0.85);
  margin: 0;
  letter-spacing: 0.06em;
}

/* Getting Started */

.getting-started {
  background: var(--paper);
  padding: clamp(70px, 9vw, 90px) 0 clamp(70px, 9vw, 100px);
  position: relative;
  z-index: 1;
}
.getting-started__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.getting-started__copy { max-width: 520px; }
.getting-started__copy p { margin-bottom: 1.4em; }

.book-tour {
  background: #f6f6f4;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  z-index: 2;
  margin-top: clamp(-360px, -16vw, -260px);
  margin-bottom: clamp(-360px, -16vw, -360px);
  box-shadow: 0 18px 50px rgba(40, 45, 35, 0.12);
  top: 30px;
}
.book-tour .contact__heading h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.12em;
  font-variant: small-caps;
  color: var(--ink);
  margin: 0;
}
.book-tour label { display: block; }
.book-tour label:not(.check) span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.book-tour input[type="text"],
.book-tour input[type="email"],
.book-tour input[type="tel"],
.book-tour input[type="date"],
.book-tour textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  padding: 12px 14px;
  border: 1px solid #d9d2c2;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: var(--radius);
}
.book-tour input:focus,
.book-tour textarea:focus { border-color: var(--sage); }
.book-tour .contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.event-type {
  border: 0;
  padding: 0;
  margin: 8px 0 18px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 14px 22px;
  align-items: center;
}
.event-type legend {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  padding: 0;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--ink-soft);
  cursor: pointer;
}
.check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  margin-right: 5px;
  accent-color: var(--sage);
}
.check span { display: inline; line-height: 1.4; position: relative; top: -3px;}

.check--ack {
  align-items: flex-start;
  margin: 14px 0 22px;
  font-size: 12px;
  line-height: 1.6;
}
.check--ack input[type="checkbox"] {
  margin-top: 2px;
}

.book-tour .contact__full { display: block; margin-bottom: 18px; }
.book-tour textarea { resize: vertical; }

/* Pricing */

.pricing {
  background: var(--sage);
  color: #fff;
  padding: clamp(70px, 9vw, 130px) 0;
}
.pricing__head {
  text-align: left;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.pricing__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 0.20em;
  color: #fff;
  margin: 0 0 4px;
}
.pricing__head .divider {
  margin: 0;
}
.pricing__sub {
  max-width: none;
  margin: 8px 0 0;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.pricing__sub strong {
  color: #fff;
  font-weight: 600;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
}

.package {
  background: #f6f6f4;
  border-radius: var(--radius);
  color: var(--ink-soft);
  padding: clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
}
.package__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid #d9d2c2;
}
.package__tag {
  display: inline-block;
  background: #b6b6ac;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  padding: 10px 26px;
  border-radius: var(--radius);
}
.package__price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
  letter-spacing: 0;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.package > ul > li { position: relative; padding-left: 18px; margin-bottom: 10px; }
.package > ul > li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  background: var(--ink);
  border-radius: 50%;
}
.package ul ul {
  list-style: none;
  padding: 8px 0 0 0;
  margin: 0;
}
.package ul ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.package ul ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.package__alc-list > li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.package__alc-list > li:has(ul) {
  display: block;
}
.package__alc-list ul {
  margin-top: 8px;
}
.package__alc-list ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.package__alc-list span { white-space: nowrap; font-weight: 600; color: var(--ink); }

/* Still Have Questions */

.questions {
  background: var(--paper);
  padding: clamp(70px, 9vw, 130px) 0;
  text-align: center;
}
.questions__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: 0.10em;
  color: var(--sage-deep);
  font-variant: small-caps;
  margin: 0px;
}
.questions__sub {
  max-width: 1500px;
  margin: 0 auto clamp(36px, 4.5vw, 0px);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.general-inquiry {
  max-width: 1300px;
  margin: 0 auto;
  background: #f6f6f4;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  text-align: left;
}
.general-inquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.general-inquiry__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.general-inquiry__message { display: flex; flex-direction: column; }
.general-inquiry label span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: var(--sans);
}
.general-inquiry input,
.general-inquiry textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  padding: 14px 18px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease;
}
.general-inquiry textarea { flex: 1; resize: vertical; min-height: 180px; }
.general-inquiry input:focus,
.general-inquiry textarea:focus { border-color: var(--sage); }
.general-inquiry .btn--solid {
  border-radius: 999px;
  padding: 14px 38px;
}

.general-inquiry__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.general-inquiry__diamonds { width: 26px; height: auto; }

/* ============ Gallery Page ============ */

.gallery-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 70px) 0;
}
.gallery-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gallery-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(220, 230, 235, 0.92) 0%, rgba(220, 230, 235, 0.55) 38%, rgba(220, 230, 235, 0) 70%);
}
.gallery-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.gallery {
  background: var(--paper);
  padding: clamp(50px, 6vw, 80px) 0 clamp(40px, 5vw, 70px);
}
.gallery__divider {
  display: block;
  width: 220px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}

.gallery__carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: clamp(8px, 1.5vw, 18px);
}
.gallery__viewport {
  flex: 1;
  overflow: hidden;
}
.gallery__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery__track.is-dragging {
  transition: none;
}
.gallery__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.gallery__arrow {
  align-self: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d6d2c8;
  background: #fff;
  color: var(--sage);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery__arrow:hover {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.gallery__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #fff;
  color: var(--sage);
  border-color: #e3ddd0;
}

.gallery-card {
  background: #f4efe6;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card__body {
  padding: 22px 18px 24px;
  text-align: center;
}
.gallery-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.20em;
  color: var(--ink);
  margin: 0 0 16px;
}
.gallery-card__cta {
  font-size: 11px;
  letter-spacing: 0.20em;
  padding: 8px 28px;
}

.gallery__dots {
  list-style: none;
  padding: 0;
  margin: clamp(40px, 5vw, 64px) 0 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.gallery__dots li { display: inline-flex; }
.gallery__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6d2c8;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery__dots button:hover { background: var(--sage-soft); }
.gallery__dots button[aria-current="true"] {
  background: var(--sage);
  transform: scale(1.15);
}

/* ============ Responsive ============ */

@media (max-width: 900px) {
  .property__grid,
  .booking__grid,
  .getting-started__grid,
  .pricing__grid,
  .general-inquiry__grid,
  .general-inquiry__fields {
    grid-template-columns: 1fr;
  }
  .event-type { grid-template-columns: repeat(2, auto); }
  .book-tour { margin-top: 0; margin-bottom: 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__slide { grid-template-columns: 1fr; }
  .gallery__arrow { width: 38px; height: 38px; }
  .booking__copy { text-align: left; }
  .booking__copy .divider--center { margin-left: 0; }
  .steps-wrap { max-width: 100%; }
  .perfect-day__content { width: 100%; max-width: 100%; }
  .perfect-day__media {
    position: relative;
    width: 100%;
    height: 320px;
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__cta { height: 140px; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px var(--gutter);
    gap: 16px;
    border-bottom: 1px solid #f0ece4;
  }
  .hero { min-height: 540px; }
  .hero__frame { inset: 12px; }
  .contact__row { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}
