/* ===========================================================
   The Bayhouse — shared stylesheet (luxury / elegant theme)
   Replace placeholder text, photos and contact details where
   marked with [BRACKETS] throughout the HTML files.
   =========================================================== */

:root {
  /* Bright coastal: white + vivid ocean turquoise + sunny sand. */
  --ink:        #134b65;   /* deep teal-navy (headers / body text) */
  --charcoal:   #1d5c79;
  --bg:         #ffffff;   /* clean white */
  --bg-alt:     #f4ecdc;   /* warm sand tint */
  --gold:       #0a6f93;   /* deeper ocean-blue accent */
  --gold-deep:  #075a78;   /* deepest accent for links / eyebrows */
  --sand:       #f0a13e;   /* sunny sand/amber pop */
  --coral:      #ff7a59;   /* warm coral pop */
  --line:       #d2e7f0;
  --muted:      #5a7686;
  --white:      #ffffff;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* Paragraph body copy — bumped for readability without touching headings */
.section p,
.split p,
.card p,
.review-card,
.review-card p { font-size: 1.06rem; line-height: 1.75; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .4em;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1.1em; color: var(--charcoal); }

a { color: var(--gold-deep); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ink); }

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

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

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 400;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

/* Large serif-italic "Welcome" greeting (matches hero eyebrow style) */
.eyebrow.welcome-lead {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: .02em;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--gold-deep);
  margin-bottom: .6rem;
}

/* ---------- Read-more toggle ---------- */
.more-content[hidden] { display: none; }
.more-toggle { background: none; border: 0; color: var(--gold-deep); font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; padding: 16px 0 0; }
.more-toggle:hover { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 400;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-solid { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-solid:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn-light { color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; border-color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; max-width: var(--maxw); margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--ink);
}
.brand span { color: var(--gold-deep); }
.nav-links { display: flex; gap: 30px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-transform: uppercase; letter-spacing: .16em; font-size: .76rem;
  color: var(--charcoal); font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: 10px 28px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid var(--line); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  /* Uses your house photo: save it in this folder as house-hero.jpg.
     Until then, the navy fallback colour shows. */
  background-color: #8fb9d4;
  /* Layered backgrounds: your house photo (house-hero.jpg) sits on top once
     added; until then this coastal stock photo shows beneath it. */
  background-image:
    linear-gradient(rgba(8,55,75,.06), rgba(8,55,75,.24)),
    url("house-hero.jpg"),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1800&q=80");
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.hero .inner {
  max-width: 720px; padding: 46px 40px;
  text-shadow: 0 2px 18px rgba(6,35,50,.7), 0 1px 3px rgba(6,35,50,.6);
  background: radial-gradient(ellipse at center, rgba(6,40,55,.6) 0%, rgba(6,40,55,.36) 55%, rgba(6,40,55,0) 82%);
  border-radius: 10px;
}
.hero h1 { color: var(--white); margin-bottom: .3em; }
.hero .eyebrow {
  color: #f3e4c4;
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: .02em;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: .6rem;
}
.hero p { color: #ffffff; font-weight: 400; font-size: 1.2rem; max-width: 580px; margin: 0 auto 2rem; }
.hero .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.alt { background: var(--bg-alt); }
/* "dark" sections are now light & airy soft-blue panels */
.section.dark { background: var(--bg-alt); color: var(--charcoal); }
.section.dark h2, .section.dark h3 { color: var(--ink); }
.section.dark p { color: var(--muted); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 640px; margin: 0 auto 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split img { min-height: 260px; } }

.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.4rem auto; }
.divider.left { margin: 1.4rem 0; }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); padding: 38px 32px; border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,17,14,.08); }
.card .num { font-family: var(--serif); font-size: 2.4rem; color: var(--sand); display:block; margin-bottom:.2em; }
.card h3 { margin-bottom: .35em; }
.card p { margin: 0; color: var(--muted); }

/* ---------- Gallery lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(8,40,55,.93); display: none; align-items: center; justify-content: center; z-index: 1000; }
.lightbox.open { display: flex; }
.lightbox .lb-img { max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.16); border: none; color: #fff; cursor: pointer; line-height: 1; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.34); }
.lb-prev, .lb-next { font-size: 1.7rem; top: 50%; transform: translateY(-50%); }
.lb-close { top: 22px; right: 26px; font-size: 2rem; }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }
@media (max-width: 600px){ .lb-prev{left:10px;} .lb-next{right:10px;} .lb-close{top:12px;right:12px;} }

/* ---------- Amenities list ---------- */
.amenities { columns: 3; column-gap: 40px; list-style: none; padding: 0; margin: 0; }
.amenities li { padding: 10px 0 10px 26px; position: relative; break-inside: avoid; border-bottom: 1px solid var(--line); }
.amenities li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 820px) { .amenities { columns: 1; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery a { overflow: hidden; display: block; }
.gallery img { width: 100%; height: 280px; object-fit: cover; transition: transform .6s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery .wide { grid-column: span 2; }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery .wide { grid-column: span 2; } .gallery img { height: 200px; } }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats .n { font-family: var(--serif); font-size: 2.6rem; color: var(--sand); }
.stats .l { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--muted); }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; gap: 36px 20px; } }

/* ---------- Testimonials ---------- */
.quote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote p { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; color: var(--charcoal); line-height: 1.4; }
.quote .who { font-family: var(--sans); text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; color: var(--gold-deep); font-style: normal; }

/* ---------- Form ---------- */
.form-wrap { max-width: 720px; margin: 0 auto; background: var(--white); padding: clamp(28px, 5vw, 56px); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--bg);
  font-family: var(--sans); font-size: .98rem; color: var(--ink); font-weight: 300;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* ---------- CTA banner ---------- */
.cta {
  text-align: center; color: var(--white);
  background: linear-gradient(rgba(10,134,179,.40), rgba(12,75,101,.55)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  padding: clamp(70px, 10vw, 130px) 0;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.88); max-width: 540px; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); color: var(--muted); padding: 70px 0 36px; border-top: 1px solid var(--line); }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: var(--ink); font-size: 1.1rem; letter-spacing: .04em; }
.site-footer .brand { color: var(--ink); font-size: 1.6rem; }
.site-footer a { color: var(--muted); display: block; padding: 5px 0; font-size: .92rem; }
.site-footer a:hover { color: var(--gold-deep); }
.site-footer .bottom { border-top: 1px solid var(--line); padding-top: 22px; font-size: .8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 820px) { .site-footer .cols { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Page header (interior pages) ---------- */
.page-head { text-align: center; padding: clamp(70px, 9vw, 120px) 0 clamp(40px,6vw,70px); background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-head .eyebrow { margin-bottom: .8rem; }

/* ---------- Custom guest reviews ---------- */
.reviews-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.reviews-grid .review-card { flex: 1 1 calc(33.333% - 15px); min-width: 260px; max-width: calc(33.333% - 15px); }
@media (max-width: 920px) { .reviews-grid .review-card { flex-basis: calc(50% - 11px); max-width: calc(50% - 11px); } }
@media (max-width: 560px) { .reviews-grid .review-card { flex-basis: 100%; max-width: 100%; } }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 6px 22px rgba(8,55,75,.05); }
.review-card .stars { color: var(--sand); letter-spacing: .18em; font-size: 1.05rem; line-height: 1; }
.review-card .review-text { color: var(--charcoal); margin: 0; line-height: 1.65; font-style: italic; }
.review-card .reviewer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.review-card .reviewer .name { display: block; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); font-weight: 500; }
.review-card .reviewer .meta { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* ---------- Hero booking card ---------- */
.hero-book { background: rgba(255,255,255,0.97); border-radius: 14px; box-shadow: 0 24px 70px rgba(8,55,75,.4); padding: 22px 22px; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px; max-width: 780px; margin: 30px auto 18px; color: var(--ink); text-align: left; }
.hero-book .hbc-field { flex: 1 1 150px; display: flex; flex-direction: column; gap: 4px; min-width: 140px; }
.hero-book .hbc-field label { font-size: .7rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.hero-book input, .hero-book select { padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--white); width: 100%; }
.hbc-book-btn { background: var(--gold); color: #fff; border: 0; border-radius: 8px; padding: 0 30px; font-family: var(--sans); font-size: 1.04rem; font-weight: 500; letter-spacing: .04em; cursor: pointer; transition: background .2s; flex: 1 1 160px; min-width: 160px; height: 46px; }
.hbc-book-btn:hover { background: var(--gold-deep); }
.hero-extra-links { margin-top: 8px; text-align: center; color: rgba(255,255,255,.85); font-size: .92rem; }
.hero-extra-links a { color: rgba(255,255,255,.95); text-decoration: underline; margin: 0 8px; }
.hero-extra-links .dot { color: rgba(255,255,255,.55); margin: 0 4px; }
@media (max-width: 720px) {
  .hero-book { padding: 16px; }
  .hero-book .hbc-field { flex-basis: 100%; min-width: 100%; }
  .hbc-book-btn { flex-basis: 100%; min-width: 100%; height: 50px; }
}

/* ---------- At-a-glance fact bar ---------- */
.factbar { background: var(--white); border-top: 3px solid var(--sand); border-bottom: 1px solid var(--line); padding: 24px 0; }
.facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.facts li { text-align: center; padding: 8px 30px; position: relative; }
.facts li + li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 40px; width: 1px; background: var(--line); }
.facts .fn { display: block; font-family: var(--serif); font-size: 1.32rem; font-weight: 500; color: var(--ink); line-height: 1.1; }
.facts .fl { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
@media (max-width: 760px){
  .facts li { flex: 0 0 50%; padding: 12px 8px; }
  .facts li + li::before { display: none; }
}

/* ---------- Outdoor Oasis showcase band ---------- */
.oasis { position: relative; background: linear-gradient(rgba(8,55,75,.56), rgba(8,55,75,.70)), url("img/photo-11.jpg") center/cover no-repeat; color: #fff; padding: clamp(66px, 9vw, 112px) 0; }
.oasis .eyebrow { color: var(--sand); }
.oasis h2 { color: #fff; }
.oasis .lead { color: rgba(255,255,255,.94); }
.oasis .divider { background: var(--sand); }
.oasis-chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.oasis-chips span { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.45); color: #fff; padding: 12px 22px; border-radius: 40px; font-size: 1.04rem; font-weight: 500; letter-spacing: .02em; }

/* ---------- OwnerRez widget drop-in zones ---------- */
/* These styled boxes are placeholders. Paste your OwnerRez embed code
   inside the marked element and delete the .or-placeholder note. */
.or-widget { margin: 0 auto; max-width: 100%; position: relative; z-index: 5; overflow: visible !important; min-height: 520px; }
.or-widget .ownerrez-widget { overflow: visible !important; }
/* Don't clip the calendar popup inside the booking section */
.section:has(.or-widget) { overflow: visible !important; }
/* Force the OwnerRez datepicker popup to fully render */
.ui-datepicker, .ownerrez-widget .ui-datepicker {
  z-index: 9999 !important;
  position: absolute !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
/* Hide the Sort / Filter / Keyword controls on the Reviews widget only */
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] form,
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] select,
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] input,
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] button,
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] label,
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] [class*="filter"],
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] [class*="sort"],
.ownerrez-widget[data-widgetId="449147bff20b47ebab2f6c397a272ee2"] [class*="search"] { display: none !important; }
/* Keep the OwnerRez date-picker pop-up above the sections below it */
.ui-datepicker, .ownerrez-widget .ui-datepicker, .ownerrez-widget .datepicker { z-index: 9999 !important; }
.or-placeholder {
  border: 1px dashed var(--gold);
  background: rgba(176,141,79,.06);
  padding: 38px 28px;
  text-align: center;
  color: var(--muted);
}
.or-placeholder .tag {
  display: inline-block; text-transform: uppercase; letter-spacing: .2em;
  font-size: .68rem; color: var(--gold-deep); margin-bottom: 12px;
}
.or-placeholder h3 { color: var(--ink); margin-bottom: .3em; }
.or-placeholder code {
  font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .82rem;
  background: var(--bg-alt); padding: 2px 6px; color: var(--charcoal);
}
.or-placeholder .steps { font-size: .9rem; max-width: 560px; margin: 10px auto 0; }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .posts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }
.post-card { background: var(--white); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(43,77,96,.10); }
.post-card img { width: 100%; height: 210px; object-fit: cover; }
.post-card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; color: var(--gold-deep); margin-bottom: 10px; }
.post-card h3 { font-size: 1.3rem; margin-bottom: .4em; }
.post-card p { color: var(--muted); margin: 0 0 18px; font-size: .96rem; }
.post-card .read { margin-top: auto; text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; }

/* Article body (single post) */
.article { max-width: 760px; margin: 0 auto; }
.article .article-meta { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--gold-deep); margin-bottom: 14px; }
.article > p, .article li { font-size: 1.08rem; color: var(--charcoal); }
.article h2 { margin: 1.6em 0 .5em; }
.article h3 { margin: 1.3em 0 .4em; }
.article img.hero-img { width: 100%; height: clamp(260px, 42vw, 460px); object-fit: cover; margin: 0 0 36px; }
.article ul { padding-left: 1.2em; }
.article ul li { margin-bottom: .5em; }
.article .back { display: inline-block; margin-top: 40px; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; }

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Full-width image band (visual break between sections) ---------- */
.image-band {
  width: 100%;
  overflow: hidden;
  margin: 0;
  background: var(--bg-alt);
}
.image-band img {
  display: block;
  width: 100%;
  height: clamp(240px, 36vw, 420px);
  object-fit: cover;
  object-position: center;
  margin: 0;
}

/* ---------- Reusable photo-background section ---------- */
.section-photo {
  position: relative; color: #fff;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  background-attachment: scroll;
}
.section-photo .eyebrow { color: #f7e7c8; }
.section-photo h2,
.section-photo h3 { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); }
.section-photo p {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.75;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.section-photo .divider { background: rgba(255, 255, 255, 0.7); }
.section-photo .more-toggle {
  color: #f7e7c8;
  font-size: .86rem;
  letter-spacing: .18em;
}
.section-photo .more-toggle:hover { color: #fff; }
@media (max-width: 760px) {
  .section-photo p { font-size: 1.12rem; line-height: 1.7; }
}

/* ---------- Mobile typography (phones) ---------- */
@media (max-width: 760px) {
  body { font-size: 17px; line-height: 1.7; }
  h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); line-height: 1.15; }
  h2 { font-size: clamp(1.8rem, 6.5vw, 2.3rem); line-height: 1.2; }
  h3 { font-size: 1.3rem; }
  .lead { font-size: 1.18rem; line-height: 1.65; }
  .hero p { font-size: 1.15rem; line-height: 1.65; max-width: 92%; }
  .section p, .split p { font-size: 1.08rem; line-height: 1.7; }
  .welcome-lead { font-size: clamp(1.85rem, 7vw, 2.4rem); line-height: 1.2; }
  .eyebrow { font-size: .82rem; letter-spacing: .22em; }
  .stats .n { font-size: 2.4rem; }
  .stats .l { font-size: .82rem; letter-spacing: .14em; }
  .facts .fn { font-size: 1.3rem; }
  .facts .fl { font-size: .8rem; letter-spacing: .08em; }
  .card .num { font-size: 2.2rem; }
  .card h3 { font-size: 1.25rem; }
  .card p { font-size: 1.05rem; line-height: 1.65; }
  .amenities { font-size: 1.05rem; line-height: 1.9; }
  .review-card { font-size: 1.05rem; line-height: 1.65; }
  .review-card .reviewer .name { font-size: 1.2rem; }
  .review-card .reviewer .meta { font-size: .78rem; }
  .quote p { font-size: clamp(1.4rem, 5.5vw, 1.8rem); line-height: 1.45; }
  .quote .who { font-size: .82rem; }
  .btn { padding: 14px 26px; font-size: .92rem; }
  .nav-links li a { font-size: 1.05rem; padding: 4px 0; }
  .nav-links li .btn { font-size: .9rem; }
  .site-footer a { font-size: 1rem; padding: 7px 0; }
  .site-footer h4 { font-size: 1.15rem; }
  .post-card h3 { font-size: 1.25rem; }
  .post-card p { font-size: 1.02rem; line-height: 1.65; }
  .post-card .meta, .post-card .read { font-size: .76rem; }
  .article > p, .article li { font-size: 1.12rem; line-height: 1.75; }
  .oasis-chips span { font-size: 1.02rem; padding: 11px 20px; }
  .field label { font-size: .8rem; }
  .field input, .field select, .field textarea { font-size: 1.02rem; }
}

@media (max-width: 420px) {
  body { font-size: 17px; }
  h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.1rem); }
  .hero p { font-size: 1.1rem; }
  .section p, .split p { font-size: 1.05rem; }
}
