/* ============================================================
   THROUGH THE LOOKING GLASS — Main Stylesheet
   ============================================================
   CUSTOMIZE THIS FILE to change colors, fonts, spacing, etc.
   The site references this file via: <link rel="stylesheet" href="styles.css">

   COLOR PALETTE — change these variables to retheme the whole site:
   ============================================================ */

:root {
    /* Brand Colors */
    --forest: #1c2b1e; /* Deep green — nav, dark sections */
    --pine: #2e4a32; /* Mid green — accents, labels */
    --sage: #7a9e7e; /* Light green — subtle accents */
    --cream: #f5f0e8; /* Warm off-white — backgrounds, light text */
    --warm-white: #faf8f4; /* Page background */
    --gold: #c8a96e; /* Gold — buttons, highlights */
    --text: #2a2a2a; /* Main body text */
    --muted: #7a7268; /* Secondary text, captions */
    /* Typography */
    --font-display: 'Cormorant Garamond', serif; /* Headings & titles */
    --font-body: 'Jost', sans-serif; /* Body text & nav */
    /* Spacing */
    --section-padding: 7rem 3rem;
    --card-gap: 1.5rem;
    /* Hero Slideshow */
    --hero-slide-duration: 5000ms; /* Time each photo shows (in milliseconds) */
    --hero-fade-duration: 1.2s; /* Crossfade transition speed */
    /* Hero Overlay — controls how dark the overlay is over hero photos */
    /* Increase the last value (0–1) to make text more readable */
    --hero-overlay-top: rgba(0, 0, 0, 0.15);
    --hero-overlay-mid: rgba(0, 0, 0, 0.25);
    --hero-overlay-bottom: rgba(0, 43, 30, 0.30);
    /*--hero-overlay-bottom: rgba(28, 43, 30, 0.82);*/

    /* Hero Text Colors */
    --hero-eyebrow-color: #e8d5a3; /* Small location text above title */
    --hero-title-color: #ffffff; /* Main hero title */
    --hero-sub-color: rgba(255,255,255,0.9); /* Subtitle line */
    --hero-cta-border: #e8d5a3; /* CTA button border */
    --hero-cta-text: #ffffff; /* CTA button text */
    --hero-cta-hover-bg: #c8a96e; /* CTA button hover fill */
    --hero-cta-hover-text: #1c2b1e; /* CTA button hover text */
    /* Dot indicator colors */
    --hero-dot-inactive: rgba(255,255,255,0.45);
    --hero-dot-active: #e8d5a3;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(28, 43, 30, 0.93);
  backdrop-filter: blur(14px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-book {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 0.55rem 1.4rem;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Slideshow container */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each slide — stacked, only the .active one shows */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--hero-fade-duration) ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dark gradient overlay for readability — sits ABOVE the slides */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    var(--hero-overlay-top) 0%,
    var(--hero-overlay-mid) 45%,
    var(--hero-overlay-bottom) 100%
  );
}

/* Text content sits on top of everything */
.hero-content {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  text-align: center;
  color: white;
  padding: 0 2rem;
  z-index: 4;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hero-eyebrow-color);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.4rem;
  color: var(--hero-title-color);
  text-shadow: 0 2px 30px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.4);
}
.hero-title em { font-style: italic; font-weight: 300; }

.hero-sub {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hero-sub-color);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid var(--hero-cta-border);
  background: rgba(0,0,0,0.25);
  color: var(--hero-cta-text);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.hero-cta:hover {
  background: var(--hero-cta-hover-bg);
  color: var(--hero-cta-hover-text);
  border-color: var(--hero-cta-hover-bg);
}

/* Slide dot indicators */
.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hero-dot-inactive);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--hero-dot-active);
  transform: scale(1.4);
}

/* Scroll hint arrow */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 35px;
  background: rgba(255,255,255,0.35);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ============================================================
   INTRO SPLIT SECTION
   ============================================================ */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.intro-image {
  background-image: url('images/hero2.jpg');
  background-size: cover;
  background-position: center;
}
.intro-text {
  background: var(--forest);
  color: var(--cream);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.intro-text h2 em { font-style: italic; }
.intro-text p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.82);
  margin-bottom: 1.2rem;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200,169,110,0.25);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 0.4rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 6rem 3rem;
  background: var(--cream);
}
.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--forest);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 260px;
    /*grid-template-rows: repeat(3, 260px);*/
    gap: 0.6rem;
    grid-auto-flow: dense;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,43,30,0);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(28,43,30,0.18); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gi-1 { grid-column: span 6; grid-row: span 2; }
.gi-2 { grid-column: span 3; grid-row: span 1; }
.gi-3 { grid-column: span 4; grid-row: span 1; }
.gi-4 { grid-column: span 3; grid-row: span 1; }
.gi-5 { grid-column: span 4; grid-row: span 1; }
.gi-6 { grid-column: span 4; grid-row: span 1; }
.gi-7 { grid-column: span 4; grid-row: span 1; }
.gi-8 { grid-column: span 4; grid-row: span 1; }

/*
.gi-1 { grid-column: 1/6; grid-row: 1/3; }
.gi-2 { grid-column: 6/9; grid-row: 1/2; }
.gi-3 { grid-column: 9/13; grid-row: 1/2; }
.gi-4 { grid-column: 6/9; grid-row: 2/3; }
.gi-5 { grid-column: 9/13; grid-row: 2/3; }
.gi-6 { grid-column: 1/5; grid-row: 3/4; }
.gi-7 { grid-column: 5/9; grid-row: 3/4; }
.gi-8 { grid-column: 9/13; grid-row: 3/4; }*/

/* ============================================================
   SPACES / THE BUILDINGS
   ============================================================ */
.spaces {
  padding: var(--section-padding);
  max-width: 1300px;
  margin: 0 auto;
}
.spaces-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.spaces-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--forest);
  max-width: 400px;
  line-height: 1.2;
}
.spaces-header p {
  max-width: 340px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.space-card { background: var(--cream); overflow: hidden; }
.space-card-image { height: 280px; overflow: hidden; }
.space-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.space-card:hover .space-card-image img { transform: scale(1.04); }
.space-card-body { padding: 1.8rem; }
.space-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.space-card-body p {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  background: var(--forest);
  padding: var(--section-padding);
}
.amenities-inner { max-width: 1200px; margin: 0 auto; }
.amenities h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  margin-bottom: 0.8rem;
}
.amenities-sub {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4rem;
}
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.amenity-group {
  padding: 2.5rem;
  border-right: 1px solid rgba(200,169,110,0.15);
}
.amenity-group:last-child { border-right: none; }
.amenity-group-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.amenity-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.amenity-list li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.amenity-list li::before { content: '—'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ============================================================
   BEDROOMS
   ============================================================ */
.bedrooms {
  padding: var(--section-padding);
  max-width: 1300px;
  margin: 0 auto;
}
.bedrooms h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--forest);
  text-align: center;
  margin-bottom: 0.5rem;
}
.bedrooms-sub {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4rem;
}
.bedroom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.bedroom-card { text-align: center; }
.bedroom-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 1.2rem; }
.bedroom-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
}
.bedroom-card p { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; letter-spacing: 0.05em; }

/* ============================================================
   OUTDOORS
   ============================================================ */
.outdoors { background: var(--cream); padding: var(--section-padding); }
.outdoors-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.outdoors-text .section-label { color: var(--pine); }
.outdoors-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.outdoors-text p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}
.outdoor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  margin-top: 2rem;
}
.outdoor-feature {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.outdoor-feature::before { content: '✦'; color: var(--gold); font-size: 0.55rem; }
.outdoors-image { height: 580px; overflow: hidden; }
.outdoors-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { padding: var(--section-padding); max-width: 1200px; margin: 0 auto; text-align: center; }
.location h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1rem;
}
.location p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.location-map { width: 100%; height: 420px; overflow: hidden; }
.location-map iframe { width: 100%; height: 100%; border: none; filter: saturate(0.7) brightness(0.9); }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking {
  background: var(--forest);
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  /* overflow intentionally NOT set — must allow iframe to expand */
}
.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100%;
  background: url('images/hero-1.jpg') center/cover;
  opacity: 0.12;
  pointer-events: none;
}
.booking-inner { position: relative; }
.booking h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.booking h2 em { font-style: italic; color: var(--gold); }
.booking p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 3rem;
}
.booking-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 1.1rem 3rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  border: 1px solid rgba(200,169,110,0.6);
  color: var(--cream);
  padding: 1.1rem 3rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #111b12;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-text { font-size: 0.72rem; color: rgba(245,240,232,0.35); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .intro { grid-template-columns: 1fr; }
  .intro-image { height: 50vw; }
  .intro-text { padding: 4rem 2rem; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6,.gi-7,.gi-8 {
    grid-column: auto; grid-row: auto; height: 220px;
  }
  .spaces-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .bedroom-grid { grid-template-columns: 1fr 1fr; }
  .outdoors-inner { grid-template-columns: 1fr; }
  .outdoors-image { height: 60vw; }
  .spaces-header { flex-direction: column; gap: 1rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* ============================================================
   BOOKING SECTION — OwnerRez Widget
   ============================================================ */

/* The booking section MUST NOT clip its children.
   overflow:visible on the section AND all ancestors of the iframe. */
.booking {
  overflow: visible !important;
}
.booking::before {
  pointer-events: none; /* overlay must never intercept clicks */
}
.booking-inner {
  position: relative;
  z-index: 2;
  overflow: visible !important;
}

/* ── Widget card ── */
.ownerrez-wrap {
  max-width: 980px;
  margin: 2.5rem auto 3rem;
  text-align: left;
  background: var(--gold);
  border: none;
  border-radius: 12px;
  padding: 2rem 2.5rem 2.5rem;
  /* No overflow:hidden — border-radius alone does NOT require it,
     and hidden would clip the growing iframe */
  overflow: visible !important;
}

/* Widget div — no fixed height, just full width */
.ownerrez-widget {
  width: 100%;
  overflow: visible !important;
  /* height grows naturally as OwnerRez widget.js resizes the iframe */
}

/* The iframe OwnerRez injects — never constrain its height */
    .ownerrez-widget iframe {
        width: 100% !important;
        display: block;
        border: 0 !important;
        overflow: visible !important;
        min-height: 560px;
        /* NO height property here — OwnerRez widget.js sets it directly */
    }

/* ── Widget internals (best-effort; OwnerRez controls its own iframe) ── */
.ownerrez-widget,
.ownerrez-widget * {
  font-family: var(--font-body) !important;
}

/* Labels — dark forest on gold background */
.ownerrez-widget label,
.ownerrez-widget .label,
.ownerrez-widget [class*="label"],
.ownerrez-widget [class*="Label"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  color: var(--forest) !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin: 0 0 0.35rem !important;
}

/* Input fields */
.ownerrez-widget input,
.ownerrez-widget select,
.ownerrez-widget textarea {
  background: rgba(245, 240, 232, 0.95) !important;
  color: var(--forest) !important;
  border: 1px solid rgba(200, 169, 110, 0.4) !important;
  border-radius: 6px !important;
  padding: 0.7rem 0.9rem !important;
  font-family: var(--font-body) !important;
}

/* Placeholder */
.ownerrez-widget ::placeholder {
  color: rgba(28, 43, 30, 0.35) !important;
}

/* Buttons */
.ownerrez-widget button,
.ownerrez-widget input[type="button"],
.ownerrez-widget input[type="submit"] {
  background: var(--gold) !important;
  color: var(--forest) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 0.85rem 2rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: opacity 0.2s !important;
}
.ownerrez-widget button:hover,
.ownerrez-widget input[type="submit"]:hover {
  opacity: 0.85 !important;
}

/* ── "Book Direct" heading ── */
.booking .book-direct-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.6rem);
  font-weight: 600;
  color: var(--forest) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-align: center;
}