/* ============================================================
   Homestead 180 — Shared design system (v2 rewrite, June 2026)
   Used by: home.html · programming.html · farm.html
   Draft. Live waitlist site remains at index.html until promoted.
   ============================================================ */

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

:root {
  --cream:    #F5F0E8;
  --cream-dk: #EAE3D4;
  --ink:      #20201F;
  --teal:     #2D7D6E;
  --teal-lt:  #3E9685;
  --navy:     #1A1A3E;
  --gold:     #C9963A;
  --gold-dk:  #B5832C;
  --copper:   #B5633A;
  --muted:    #6B5E4C;
  --white:    #FFFFFF;
  --border:   #DBD2C2;
  --radius:   6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
}

img { max-width: 100%; }

/* ── NAV (multi-page) ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 48px; width: auto; display: block; }
.nav-logo-text .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem; letter-spacing: 0.04em;
  color: var(--ink); text-decoration: none;
  padding-bottom: 3px; border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover { color: var(--teal); }
.nav-link.active { color: var(--teal); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--teal); color: var(--cream);
  font-family: 'EB Garamond', serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 22px; border-radius: var(--radius); text-decoration: none;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-lt); }

@media (max-width: 860px) {
  nav { padding: 12px 20px; flex-wrap: wrap; gap: 8px 16px; }
  .nav-links { gap: 18px; order: 3; width: 100%; justify-content: center; padding-top: 6px; border-top: 1px solid var(--border); }
  .nav-logo-img { height: 40px; }
}
@media (max-width: 440px) {
  .nav-links { gap: 14px; font-size: 0.88rem; }
  .nav-link { font-size: 0.88rem; }
}

/* ── BUTTONS ── */
.btn-primary, .btn-ghost, .btn-teal {
  display: inline-block; font-family: 'EB Garamond', serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--radius); text-decoration: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.btn-primary { background: var(--gold); color: var(--navy); padding: 15px 36px; border: none; }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: var(--cream); padding: 15px 36px; border: none; }
.btn-teal:hover { background: var(--teal-lt); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white); padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.45); font-weight: 500;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* ── HERO (generic + per-page bg via inline style) ── */
.hero {
  min-height: 88vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden; padding: 130px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; filter: brightness(0.5); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,62,0.20) 0%, rgba(20,18,30,0.66) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
  display: inline-block; font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem; font-style: italic; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 600; color: var(--white); line-height: 1.08; margin-bottom: 22px; letter-spacing: 0.005em;
}
.hero h1 em { font-style: italic; font-weight: 500; color: #F2E4C4; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.hero-location {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem;
  color: rgba(255,255,255,0.62); letter-spacing: 0.04em; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── SECTION SHARED ── */
section { padding: 92px 24px; }
.container { max-width: 1080px; margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }
.section-label {
  font-family: 'Libre Baskerville', serif; font-size: 0.74rem; font-style: italic;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 20px; letter-spacing: 0.005em;
}
.section-body { font-size: 1.12rem; color: var(--muted); max-width: 620px; line-height: 1.8; }
.section-body + .section-body { margin-top: 16px; }
.center { text-align: center; }
.center .section-body { margin-left: auto; margin-right: auto; }

/* ── ABOUT / HOUSE ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.about-img:hover img { transform: scale(1.03); }
.about-text .section-body { max-width: 100%; }
.about-stats { display: flex; gap: 36px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* ── USE-IT-YOUR-WAY TILES (niche-neutral, job-framed) ── */
.uses { background: var(--cream-dk); }
.uses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.use-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 30px 26px; transition: box-shadow 0.25s, transform 0.2s;
}
.use-card:hover { box-shadow: 0 12px 36px rgba(26,26,62,0.12); transform: translateY(-3px); }
.use-icon { font-size: 1.6rem; margin-bottom: 12px; }
.use-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.use-card p { font-size: 1rem; color: var(--muted); line-height: 1.65; }

/* ── RESTORATION (design story) ── */
.restoration { background: var(--navy); }
.restoration .section-label { color: var(--gold); }
.restoration .section-title { color: var(--white); }
.restoration .lead { font-size: 1.18rem; color: rgba(255,255,255,0.82); max-width: 720px; line-height: 1.85; margin-bottom: 14px; }
.restoration .byline { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 52px; }
.byline-link { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,150,58,0.45); }
.byline-link:hover { color: #F2E4C4; border-bottom-color: #F2E4C4; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.detail { border-top: 1px solid rgba(201,150,58,0.4); padding-top: 18px; }
.detail h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold); margin-bottom: 10px; line-height: 1.3; }
.detail p { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
.pull-quote { margin-top: 56px; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.pull-quote blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; color: #F2E4C4; line-height: 1.4; }
.pull-quote cite { display: block; margin-top: 18px; font-family: 'Libre Baskerville', serif; font-style: normal; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── FARM STRIP ── */
.farm-strip { background: var(--teal); padding: 36px 24px; }
.farm-strip-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.farm-strip-text { display: flex; align-items: center; gap: 16px; }
.farm-icon { font-size: 1.8rem; flex-shrink: 0; }
.farm-strip h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.farm-strip p { font-size: 0.98rem; color: rgba(255,255,255,0.78); line-height: 1.55; max-width: 640px; }
.farm-strip a.farm-strip-badge {
  font-family: 'Libre Baskerville', serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); background: var(--cream); padding: 10px 20px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; text-decoration: none;
}
.farm-strip a.farm-strip-badge:hover { background: var(--white); }

/* ── GALLERY ── */
.gallery { background: var(--cream); padding: 64px 24px; }
.gallery-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 10px; }
.gallery-grid .g-featured { grid-column: span 2; }
.gallery-grid .g-cell { border-radius: 6px; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-grid .g-cell:hover img { transform: scale(1.04); }
.gallery-caption { text-align: center; margin-top: 18px; font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.95rem; color: var(--muted); letter-spacing: 0.02em; }

/* ── PLACE / AMENITIES ── */
.place { background: var(--white); }
.place-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.place-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 10px; }
.place-imgs .img-main { grid-column: span 2; border-radius: 6px; overflow: hidden; }
.place-imgs .img-sm { border-radius: 6px; overflow: hidden; }
.place-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.place-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.amenity { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; color: var(--muted); }
.amenity-icon { width: 34px; height: 34px; background: var(--cream-dk); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }

/* ── WHERE YOU'LL STAY (named suites) ── */
.rooms { background: var(--white); }
.suite { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 56px; }
.suite.reverse .suite-imgs { order: 2; }
.suite-imgs { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.suite-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.suite-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.suite-img:hover img { transform: scale(1.03); }
.suite-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--navy); line-height: 1.1; }
.suite-type { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.95rem; color: var(--copper); margin: 6px 0 16px; }
.suite-desc { font-size: 1.08rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.suite-features { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.suite-features li { font-size: 0.95rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.suite-features li::before { content: '\2726'; color: var(--gold); font-size: 0.7rem; }
@media (max-width: 800px) {
  .suite { grid-template-columns: 1fr; gap: 28px; }
  .suite.reverse .suite-imgs { order: 0; }
}

/* ── BOOKING ── */
.booking { background: var(--cream-dk); }
.booking-grid { display: grid; grid-template-columns: 400px 1fr; gap: 44px; align-items: start; max-width: 940px; margin: 44px auto 0; text-align: left; }
.booking-widget { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 10px; box-shadow: 0 14px 44px rgba(26,26,62,0.10); }
.booking-widget iframe { display: block; border-radius: 8px; }
.booking-aside { padding-top: 6px; }
.booking-aside h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.booking-points { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.booking-points li { font-size: 1.02rem; color: var(--muted); line-height: 1.6; padding-left: 26px; position: relative; }
.booking-points li::before { content: '\2726'; color: var(--gold); position: absolute; left: 0; top: 3px; font-size: 0.8rem; }
.booking-points strong { color: var(--ink); font-weight: 600; }
@media (max-width: 800px) {
  .booking-grid { grid-template-columns: 1fr; gap: 28px; max-width: 440px; }
}
.booking-card {
  max-width: 920px; margin: 40px auto 0; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px; padding: 12px;
  box-shadow: 0 14px 44px rgba(26,26,62,0.10);
}
.widget-placeholder {
  border: 2px dashed var(--teal); border-radius: 8px; background: #F0F4F2;
  padding: 56px 28px; text-align: center; color: var(--teal);
}
.widget-placeholder .ph-label { font-family: 'Libre Baskerville', serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; }
.widget-placeholder h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.widget-placeholder p { font-size: 0.98rem; color: var(--muted); max-width: 520px; margin: 0 auto; }
.widget-placeholder code { background: rgba(45,125,110,0.1); padding: 2px 7px; border-radius: 4px; font-size: 0.85rem; }

/* ── PROGRAMMING: events + calendar ── */
.programming { background: var(--cream); }
.events-list { display: flex; flex-direction: column; gap: 18px; margin-top: 44px; }
.event-card {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px 28px; transition: box-shadow 0.2s, transform 0.18s;
}
.event-card:hover { box-shadow: 0 10px 30px rgba(26,26,62,0.10); transform: translateY(-2px); }
.event-date { text-align: center; border-right: 1px solid var(--border); padding-right: 18px; }
.event-month { font-family: 'Libre Baskerville', serif; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); }
.event-day { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--teal); line-height: 1; }
.event-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; line-height: 1.2; }
.event-meta { font-size: 0.92rem; color: var(--muted); }
.event-tag { display: inline-block; font-family: 'Libre Baskerville', serif; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; background: #E5EFEB; color: var(--teal); }
.event-cta { white-space: nowrap; }

/* greenlight / vote bar (mock) */
.greenlight { margin-top: 12px; max-width: 320px; }
.greenlight-track { height: 8px; background: var(--cream-dk); border-radius: 50px; overflow: hidden; }
.greenlight-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-lt)); border-radius: 50px; }
.greenlight-label { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }
.greenlight-label strong { color: var(--teal); }

.sample-flag {
  display: inline-block; font-family: 'Libre Baskerville', serif; font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dk);
  background: rgba(201,150,58,0.14); padding: 4px 12px; border-radius: 50px; margin-top: 14px;
}

.calendar-embed { max-width: 1000px; margin: 40px auto 0; }
.calendar-frame { width: 100%; min-height: 600px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); }

/* interest forms (dual) */
.interest { background: var(--navy); }
.interest .section-label { color: var(--gold); }
.interest .section-title, .interest .section-body { color: var(--white); }
.interest .section-body { color: rgba(255,255,255,0.74); }
.interest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.interest-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 38px 34px; }
.interest-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--white); margin-bottom: 10px; }
.interest-card p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 24px; }

/* ── COMMUNITY CAPTURE BAND (sitewide) ── */
.community { background: var(--teal); padding: 72px 24px; text-align: center; }
.community-inner { max-width: 600px; margin: 0 auto; }
.community .section-label { color: #F2E4C4; }
.community h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.15; }
.community p { font-size: 1.08rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 28px; }
.community-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.community-form input {
  flex: 1; min-width: 200px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius); color: var(--white); font-family: 'EB Garamond', serif; font-size: 1.02rem; padding: 14px 16px; outline: none;
}
.community-form input::placeholder { color: rgba(255,255,255,0.55); }
.community-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.18); }
.community-form button { background: var(--gold); color: var(--navy); border: none; border-radius: var(--radius); font-family: 'EB Garamond', serif; font-weight: 600; font-size: 1rem; padding: 14px 26px; cursor: pointer; transition: background 0.2s; }
.community-form button:hover { background: var(--gold-dk); }
.community-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ── FAQ ── */
.faq { background: var(--cream); padding: 80px 24px; }
.faq .section-label { color: var(--copper); }
.faq .section-title { color: var(--navy); }
.faq-list { margin-top: 48px; }
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item:first-of-type { border-top: 1px solid var(--border); }
details.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; cursor: pointer; list-style: none;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--navy); font-weight: 600; gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform 0.25s ease; line-height: 1; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item[open] summary { color: var(--teal); }
.faq-answer { padding: 0 4px 24px; font-size: 1.05rem; line-height: 1.75; color: #5a5247; max-width: 680px; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 44px 24px; text-align: center; }
.footer-bee { margin-bottom: 12px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,228,196,0.75); margin-bottom: 6px; }
.footer-nav { display: flex; gap: 22px; justify-content: center; margin: 14px 0 18px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.04em; }
.footer-nav a:hover { color: var(--gold); }
.footer-farm { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-bottom: 8px; letter-spacing: 0.04em; }
.footer-location { font-size: 0.85rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); margin-top: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .place-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 560px; }
  .uses-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .interest-grid { grid-template-columns: 1fr; }
  .place-imgs { grid-template-rows: 180px 180px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .farm-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 580px) {
  section { padding: 64px 20px; }
  .uses-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .place-amenities { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .gallery-grid .g-featured { grid-column: span 1; }
  .hero-ctas { flex-direction: column; }
  .event-card { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .event-date { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 10px; display: flex; gap: 10px; align-items: baseline; }
  .event-cta { justify-self: start; }
}

/* ── OwnerRez inquiry widget (added July 24 2026) ── */
.booking-widget .ownerrez-widget { font-family: 'EB Garamond', Georgia, serif; }
.booking-fallback {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 0.86rem; line-height: 1.5; color: var(--muted); text-align: center;
}
.booking-fallback a { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(45,125,110,0.35); }
.booking-fallback a:hover { color: var(--teal-lt); }
