/* ================================================
   TOKENS
   ================================================ */
:root {
  --cream:    #FAF6EE;
  --cream-2:  #F5EEE0;
  --stone:    #E6DDD0;
  --stone-2:  #C9BFAE;
  --ink:      #1A1816;
  --ink-2:    #2E2A26;
  --forest:   #2C4F3D;
  --forest-2: #1E3A2B;
  --forest-3: #3D6751;
  --terra:    #C76544;
  --terra-2:  #A54F33;
  --muted:    #6B6257;

  --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --max: 1320px;
  --content: 1180px;
  --prose: 680px;
  --gutter: 2rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 9999;
  text-decoration: none;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--terra);
  outline-offset: 2px;
}

/* Visible focus states for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

/* ================================================
   TYPE UTILITIES
   ================================================ */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.005em; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terra);
}
.label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.sec-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--terra);
  letter-spacing: 0.01em;
}

/* ================================================
   LAYOUT
   ================================================ */
.container { max-width: var(--content); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 6.5rem 0; position: relative; }
.section-sm { padding: 4.5rem 0; }

/* ================================================
   REVEAL — content always visible, no JS dependency
   ================================================ */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }
.d1, .d2, .d3, .d4 { }

/* JS-enhanced reveal animations */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.d1 { transition-delay: 0.12s; }
.js .reveal.d2 { transition-delay: 0.24s; }
.js .reveal.d3 { transition-delay: 0.36s; }
.js .reveal.d4 { transition-delay: 0.48s; }
.js .reveal.in { opacity: 1; transform: none; }

/* ================================================
   BANNER + NAV
   ================================================ */
.banner {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 0.7rem var(--gutter);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.banner strong { color: var(--terra); font-weight: 600; }
.banner .sep { display: inline-block; width: 3px; height: 3px; background: var(--muted); border-radius: 50%; vertical-align: middle; margin: 0 0.8rem; }

.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--stone);
  z-index: 90;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: -0.005em;
}
.nav-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 500;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 2.1rem; align-items: center; }
.nav-link {
  font-size: 0.85rem;
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--terra); }
.nav-link.active { color: var(--terra); }
.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--forest-2); }

/* Hamburger button — hidden on desktop, shown ≤900px */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: 0.6rem;
  position: relative;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}
.nav-burger span:nth-child(1) { top: 12px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
.nav-burger:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; border-radius: 4px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
}

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s var(--ease), visibility 0s linear 0.25s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s var(--ease), visibility 0s linear 0s;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 36, 28, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--cream);
  border-left: 1px solid var(--stone);
  box-shadow: -16px 0 48px -24px rgba(20, 36, 28, 0.25);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--stone);
  flex-shrink: 0;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--cream-2); }
.mobile-menu-close:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 0;
  flex: 1;
}
.mobile-menu-link {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.85rem 1.6rem;
  border-bottom: 1px solid var(--cream-2);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-link:hover, .mobile-menu-link:focus-visible { background: var(--cream-2); color: var(--terra); }
.mobile-menu-link:focus-visible { outline: none; box-shadow: inset 4px 0 0 var(--terra); }
.mobile-menu-sublinks { display: flex; flex-direction: column; background: var(--cream-2); border-bottom: 1px solid var(--stone); }
.mobile-menu-sublink {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink-2);
  padding: 0.7rem 1.6rem 0.7rem 2.6rem;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-sublink:hover, .mobile-menu-sublink:focus-visible { color: var(--terra); background: var(--cream); }
.mobile-menu-sublink:focus-visible { outline: none; box-shadow: inset 4px 0 0 var(--terra); }
.mobile-menu-section {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 1.2rem 1.6rem 0.5rem;
  border-top: 1px solid var(--cream-2);
}
.mobile-menu-foot {
  padding: 1.4rem 1.6rem 1.8rem;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex-shrink: 0;
  background: var(--cream);
}
.mobile-menu-cta {
  display: block;
  text-align: center;
  background: var(--forest);
  color: var(--cream);
  padding: 0.95rem 1.4rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.25s;
}
.mobile-menu-cta:hover { background: var(--forest-2); }
.mobile-menu-phone, .mobile-menu-email {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 500;
}
.mobile-menu-phone:hover, .mobile-menu-email:hover { color: var(--terra); }

/* Lock body scroll when mobile menu is open */
body.mobile-menu-open { overflow: hidden; }

/* ================================================
   HERO — between V6 and V7 sizing
   ================================================ */
.hero { padding: 6rem 0 4.5rem; }
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.hero-label::before { content: ''; width: 36px; height: 1px; background: var(--terra); }
.hero-label em { color: var(--terra); font-style: normal; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.8rem;
  max-width: 14ch;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.hero-sub {
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
  margin-bottom: 2.4rem;
}
.hero-sub em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terra);
  font-size: 1.15rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--forest); }
.btn-secondary { border-color: var(--stone-2); color: var(--ink); }
.btn-secondary:hover { border-color: var(--ink); background: var(--cream-2); }

.hero-card {
  background: var(--cream-2);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 2.2rem 2rem;
}
.hero-card-title {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--stone);
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.82rem 0;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.hero-card-row:not(:last-child) { border-bottom: 1px dotted var(--stone-2); }
.hero-card-row strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
  font-size: 1.05rem;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ================================================
   OTA TRUST STRIP
   ================================================ */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 2rem 0;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 0.3rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-logo:hover { color: var(--terra); }
.trust-logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
  display: inline-block;
}
.trust-rating {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--terra);
  font-weight: 400;
}
.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--stone-2);
}
@media (max-width: 780px) {
  .trust-inner { flex-direction: column; gap: 1rem; }
}

/* ================================================
   AVAILABILITY
   ================================================ */
.avail {
  background: var(--cream-2);
  border-bottom: 1px solid var(--stone);
  padding: 3rem 0 2rem;
  max-width: var(--content);
  margin: 0 auto;
}
.avail-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  text-align: center;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.avail-sub {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.avail-property {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 0 var(--gutter);
}
.avail-property:last-of-type { margin-bottom: 1.5rem; }
.avail-property-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--stone-2);
}
.avail-property-name span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.avail-form {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 0.9fr auto;
  gap: 1.5rem;
  align-items: end;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}
.field select, .field input {
  font-family: var(--sans);
  font-size: 0.93rem;
  padding: 0.6rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stone-2);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field select:focus, .field input:focus { border-color: var(--terra); }
.avail-submit {
  background: var(--forest);
  color: var(--cream);
  padding: 0.85rem 1.7rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s;
  white-space: nowrap;
}
.avail-submit:hover { background: var(--forest-2); }
.avail-note {
  max-width: var(--content);
  margin: 0.8rem auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--muted);
}
@media (max-width: 900px) {
  .avail-form { grid-template-columns: 1fr 1fr; }
  .avail-submit { grid-column: 1 / -1; }
}

/* ================================================
   FIGURES
   ================================================ */
.figures {
  background: var(--cream);
  padding: 5rem 0;
}
.figures-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}
.figure { padding-left: 1.8rem; border-left: 2px solid var(--stone); }
.figure-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 5.2vw, 4.4rem);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-feature-settings: "tnum";
  margin-bottom: 0.6rem;
}
.figure-num em {
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.figure-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 780px) { .figures-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; } }

/* ================================================
   DIRECT BOOKING PROMISE — Session 4 trust block
   ================================================ */
.promise {
  background: var(--cream-2);
  padding: 5.5rem 0 5rem;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.promise-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.promise-head {
  text-align: center;
  margin-bottom: 3rem;
}
.promise-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.promise-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.promise-title em {
  font-style: italic;
  color: var(--terra);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.promise-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 1.8rem 1.5rem;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 38, 32, 0.08);
  border-color: var(--terra);
}
.promise-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--terra);
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  font-feature-settings: "tnum";
}
.promise-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.7rem;
  letter-spacing: -0.005em;
}
.promise-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.promise-card a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  transition: opacity 0.2s ease;
}
.promise-card a:hover { opacity: 0.7; }
@media (max-width: 1024px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 600px) {
  .promise { padding: 4rem 0 3.5rem; }
  .promise-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .promise-head { margin-bottom: 2.2rem; }
}

/* ================================================
   PULL QUOTE
   ================================================ */
.pull {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 0;
  text-align: center;
}
.pull-inner { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }
.pull p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.pull p em {
  font-style: italic;
  color: var(--terra);
}
.pull-attr {
  margin-top: 2.2rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone-2);
}

/* ================================================
   SECTION HEADER
   ================================================ */
.sec-head {
  max-width: var(--content);
  margin: 0 auto 3.2rem;
  padding: 0 var(--gutter);
}
.sec-head-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sec-head-row .rule {
  width: 36px;
  height: 1px;
  background: var(--terra);
}
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 22ch;
}
.sec-head h2 em {
  font-style: italic;
  color: var(--terra);
}
.sec-head .sec-sub {
  margin-top: 0.9rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.65;
}
.sec-head-dark h2 { color: var(--cream); }
.sec-head-dark h2 em { color: var(--terra); }
.sec-head-dark .sec-sub { color: var(--stone-2); }

/* ================================================
   WHY BOOK DIRECT
   ================================================ */
.why {
  background: var(--cream-2);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.why-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.why-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 2rem 1.7rem;
  transition: all 0.25s var(--ease);
}
.why-card:hover {
  border-color: var(--terra);
  transform: translateY(-2px);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  color: var(--forest);
  margin-bottom: 1.3rem;
}
.why-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.28rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-2);
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* Price comparison strip — Tier 1 addition */
.price-compare {
  max-width: var(--content);
  margin: 2.5rem auto 0;
  padding: 1.6rem var(--gutter);
}
.price-compare-inner {
  background: var(--cream);
  border: 2px solid var(--terra);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  text-align: center;
}
.price-compare-inner p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.price-compare-inner p em {
  font-style: italic;
  color: var(--terra);
}
.price-compare-inner strong {
  font-weight: 600;
  color: var(--forest);
}
.price-compare-inner .savings {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  background: rgba(44, 79, 61, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
}

/* ================================================
   PORTFOLIO
   ================================================ */
.portfolio { background: var(--cream); }
.prop-list {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}
.prop {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.2rem;
  align-items: center;
}
.prop.flip { grid-template-columns: 1.15fr 1fr; }
.prop.flip .prop-visual { order: 2; }

.prop-visual {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  transition: opacity 0.25s;
  background-size: cover;
  background-position: center;
}
.prop-visual:hover { opacity: 0.9; }
.prop-visual.olive { background: url('/assets/photos/olive/01.jpg') center/cover, linear-gradient(165deg, #3D6751 0%, #2C4F3D 58%, #1E3A2B 100%); }
.prop-visual.sanders { background: url('/assets/photos/sanders/01.jpg') center/cover, linear-gradient(165deg, #C76544 0%, #A54F33 58%, #7A3A24 100%); }
.prop-visual.spruce { background: url('/assets/photos/spruce/01.jpg') center/cover, linear-gradient(165deg, #6B8B7E 0%, #4A6B5E 58%, #2C4F3D 100%); }
.prop-visual-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.75;
}
.prop-visual-center { text-align: center; }
.prop-visual-icon { width: 78px; height: 78px; margin: 0 auto 1.3rem; opacity: 0.58; }
.prop-visual-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.prop-visual-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: -0.018em;
  line-height: 1;
}
.prop-visual-name em {
  font-style: italic;
  color: var(--stone);
}
.prop-visual-sub {
  margin-top: 0.4rem;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.68;
}
.prop-visual-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.6;
}

.prop-content .label { display: block; margin-bottom: 0.9rem; }
.prop-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.1vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.prop-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.prop-content h3 a:hover { color: var(--terra); }
.prop-content h3 em {
  font-style: italic;
  color: var(--terra);
}
/* Tier 1: nightly rate display on property cards */
.prop-rate {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.prop-rate .monthly {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}
.prop-tag-under {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.4;
}
.prop-body {
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 1.6rem;
  max-width: 52ch;
}
.prop-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.prop-rating-stars { color: var(--terra); font-size: 0.88rem; letter-spacing: 0.08em; }
.prop-rating-num { font-family: var(--serif); font-weight: 500; font-size: 1rem; color: var(--ink); }
.prop-rating-count { font-size: 0.82rem; color: var(--muted); }
.prop-rating-badge {
  display: inline-block;
  padding: 0.26rem 0.7rem;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  margin-left: auto;
}
.prop-rating-badge.favorite { background: var(--terra); }

.prop-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.prop-tag {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink-2);
  padding: 0.55rem 0.75rem;
  background: var(--cream-2);
  border: 1px solid var(--stone);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.prop-tag:hover { border-color: var(--terra); }
.prop-tag svg {
  width: 16px;
  height: 16px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.prop-ctas { display: flex; gap: 1.3rem; align-items: center; flex-wrap: wrap; }
.prop-cta {
  padding: 0.9rem 1.7rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: background 0.25s;
  border-radius: 4px;
}
.prop-cta:hover { background: var(--forest); }
.prop-cta-text {
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--stone-2);
  padding-bottom: 0.2rem;
  transition: all 0.2s;
}
.prop-cta-text:hover { color: var(--terra); border-color: var(--terra); }

@media (max-width: 900px) {
  .prop, .prop.flip { grid-template-columns: 1fr; gap: 2rem; }
  .prop.flip .prop-visual { order: 0; }
  .prop-visual { aspect-ratio: 16/10; }
  .prop-tags { grid-template-columns: 1fr; }
}

/* ================================================
   LOCATION
   ================================================ */
.location { background: var(--cream-2); }
.loc-intro {
  max-width: var(--content);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
}
.loc-intro p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 1rem;
  max-width: 55ch;
}
.loc-legend {
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 1.5rem;
  border-radius: 6px;
}
.loc-legend-title {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--stone);
}
.loc-legend-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  color: var(--ink-2);
}
.loc-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.loc-legend-dot.home { background: var(--terra); }
.loc-legend-dot.anchor { background: var(--forest); }

.loc-map-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.loc-map {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 1.5rem;
  overflow: hidden;
}

.loc-distances {
  max-width: var(--content);
  margin: 3rem auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.loc-dist-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 1.6rem;
  border-radius: 6px;
}
.loc-dist-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--stone);
}
.loc-dist-card h3 em { font-style: italic; color: var(--terra); font-weight: 400; }
.loc-dist-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.58rem 0;
  font-size: 0.86rem;
}
.loc-dist-row .place { color: var(--ink-2); }
.loc-dist-row .time {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terra);
  font-weight: 500;
  font-size: 0.88rem;
}
@media (max-width: 900px) {
  .loc-intro { grid-template-columns: 1fr; }
  .loc-distances { grid-template-columns: 1fr; }
}

/* ================================================
   CORPORATE
   ================================================ */
.corp {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.corp-tracks {
  max-width: var(--content);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.corp-track {
  padding: 2.2rem 1.9rem;
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(250, 246, 238, 0.12);
  border-radius: 6px;
  transition: all 0.3s var(--ease);
}
.corp-track:hover {
  background: rgba(250, 246, 238, 0.07);
  border-color: var(--terra);
  transform: translateY(-3px);
}
.corp-track-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(199, 101, 68, 0.15);
  color: var(--terra);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
}
.corp-track-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.corp-track-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--terra);
  margin-bottom: 0.4rem;
}
.corp-track h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.95rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.corp-track p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--stone-2);
  margin-bottom: 1.3rem;
}
.corp-track-cta {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 0.15rem;
  display: inline-block;
  transition: all 0.2s;
}
.corp-track-cta:hover { color: var(--cream); border-color: var(--cream); }
@media (max-width: 900px) { .corp-tracks { grid-template-columns: 1fr; } }

.corp-form-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem var(--gutter) 0;
  border-top: 1px solid rgba(250, 246, 238, 0.12);
}
.corp-form-title { text-align: center; margin-bottom: 2.2rem; }
.corp-form-title h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--cream);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}
.corp-form-title h3 em { font-style: italic; color: var(--terra); font-weight: 400; }
.corp-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.corp-form .full { grid-column: 1 / -1; }
.corp-form label {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone-2);
  margin-bottom: 0.35rem;
  display: block;
}
.corp-form input, .corp-form select, .corp-form textarea {
  font-family: var(--sans);
  width: 100%;
  padding: 0.78rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 246, 238, 0.22);
  color: var(--cream);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
}
.corp-form input:focus, .corp-form select:focus, .corp-form textarea:focus { border-color: var(--terra); }
.corp-form textarea { min-height: 72px; resize: vertical; padding-top: 0.4rem; }
.corp-form select option { color: var(--ink); background: var(--cream); }
.corp-form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  background: var(--terra);
  color: var(--cream);
  padding: 0.95rem 2.1rem;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.9rem;
  transition: background 0.25s;
}
.corp-form-submit:hover { background: var(--terra-2); }
.corp-form-confirmation {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  display: none;
}
.corp-form-confirmation.show { display: block; }
.corp-form-confirmation p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.corp-form-confirmation .sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--stone-2);
}
@media (max-width: 620px) { .corp-form { grid-template-columns: 1fr; } }

/* ================================================
   EVENTS
   ================================================ */
.events { background: var(--cream); }
.events-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.event-card {
  padding: 1.9rem 1.5rem;
  background: var(--cream-2);
  border: 1px solid var(--stone);
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  display: block;
  color: inherit;
  text-decoration: none;
}
.event-card:hover { border-color: var(--terra); transform: translateY(-3px); }
a.event-card-link:hover { box-shadow: 0 8px 24px -16px rgba(44, 79, 61, 0.35); }
.event-card-cta {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--terra);
  font-weight: 500;
  letter-spacing: 0.01em;
}
a.event-card-link:hover .event-card-cta { text-decoration: underline; text-underline-offset: 3px; }
.event-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terra);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.event-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.event-card .month {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.event-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.event-card p {
  font-size: 0.83rem;
  line-height: 1.62;
  color: var(--ink-2);
}
@media (max-width: 960px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .events-grid { grid-template-columns: 1fr; } }

/* ================================================
   VOICES
   ================================================ */
.voices {
  background: var(--cream-2);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.voices-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.voice {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
}
.voice-stars { color: var(--terra); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.voice-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.8rem;
  flex: 1;
  letter-spacing: -0.005em;
}
.voice-attr {
  padding-top: 1.1rem;
  border-top: 1px solid var(--stone);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.voice-attr strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.22rem;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--serif);
  font-style: italic;
}
.voices-footer {
  max-width: var(--content);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
}
.voices-footer a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  font-style: normal;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  padding-bottom: 0.15rem;
  margin: 0 0.3rem;
  transition: all 0.2s;
}
.voices-footer a:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 900px) { .voices-grid { grid-template-columns: 1fr; } }

/* ================================================
   OPERATIONS
   ================================================ */
.ops { background: var(--cream); }
.ops-intro {
  max-width: var(--content);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}
.ops-intro p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 58ch;
  letter-spacing: -0.005em;
}
.ops-intro p em {
  font-style: italic;
  color: var(--terra);
}
.ops-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.ops-card {
  background: var(--cream-2);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  transition: all 0.25s var(--ease);
  position: relative;
}
.ops-card:hover { border-color: var(--terra); transform: translateY(-2px); }
.ops-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stone);
}
.ops-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--stone-2);
  color: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ops-card-icon svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ops-card-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: right;
}
.ops-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.24rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ops-card .ops-tool {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--terra);
  margin-bottom: 0.9rem;
}
.ops-card p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--ink-2);
}
@media (max-width: 960px) { .ops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ops-grid { grid-template-columns: 1fr; } }

/* ================================================
   ABOUT
   ================================================ */
.about { background: var(--cream-2); border-top: 1px solid var(--stone); }
.about-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.75fr 1.4fr 0.95fr;
  gap: 3.2rem;
  align-items: center;
}
.about-portrait {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-portrait-frame {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(165deg, #3D6751 0%, #2C4F3D 58%, #1E3A2B 100%);
  border: 1px solid var(--stone);
  box-shadow: 0 12px 36px -14px rgba(44, 79, 61, 0.28);
}
.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-portrait-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 7rem;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.about-portrait figcaption {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.about-portrait-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.about-portrait-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}
.about-copy p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 1.1rem;
  max-width: 58ch;
}
.about-copy p:first-of-type {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.about-copy p:first-of-type em { font-style: italic; color: var(--terra); }
.about-founder {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--stone);
}
.about-founder strong { color: var(--ink); font-weight: 600; }
.about-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 2.1rem;
}
.about-card-title {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--stone);
}
.about-card-row {
  display: flex;
  justify-content: space-between;
  padding: 0.62rem 0;
  font-size: 0.85rem;
  color: var(--ink-2);
}
.about-card-row strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 0.8fr 1.4fr; gap: 2.4rem; }
  .about-card { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-portrait-frame { max-width: 220px; margin: 0 auto; }
  .about-card { grid-column: auto; }
}

/* ================================================
   FAQ
   ================================================ */
.faq { background: var(--cream); }
.faq-list { max-width: 840px; margin: 0 auto; padding: 0 var(--gutter); }
.faq-item { border-bottom: 1px solid var(--stone-2); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.008em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--terra); }
.faq-q-icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform 0.4s var(--ease); }
.faq-q-icon::before, .faq-q-icon::after { content: ''; position: absolute; background: var(--terra); transition: transform 0.4s var(--ease); }
.faq-q-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q-icon::after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-q-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner {
  padding: 0 0 1.5rem 0;
  max-width: 62ch;
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--ink-2);
}
.faq-a-inner p { margin: 0 0 0.7rem 0; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul { margin: 0 0 0.8rem 1.2rem; padding: 0; }
.faq-a-inner li { margin: 0 0 0.35rem 0; line-height: 1.6; }
.faq-a-inner li:last-child { margin-bottom: 0; }
/* Larger max-height to accommodate bulleted answers (cancellation, pricing) */
.faq-item.open .faq-a { max-height: 720px; }

/* ================================================
   FINAL CTA
   ================================================ */
.final {
  background: var(--cream-2);
  border-top: 1px solid var(--stone);
  padding: 8rem 0;
  text-align: center;
}
.final h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.final h2 em {
  font-style: italic;
  color: var(--terra);
  display: block;
}
.final p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto 2.8rem;
}
.final-ctas { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.final-phone { font-size: 0.86rem; color: var(--muted); }
.final-phone a { color: var(--terra); font-weight: 600; }

/* Payment trust strip — Tier 1 addition */
.payment-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.payment-trust-label {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.payment-trust-logos {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.payment-trust-logos span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--stone-2);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--stone-2);
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--ink); color: var(--cream); padding: 5rem 0 2rem; }

/* Visually hidden — for accessible labels */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Newsletter row above the main footer grid */
.footer-newsletter {
  max-width: var(--content);
  margin: 0 auto 3.5rem;
  padding: 0 var(--gutter);
}
.footer-newsletter-inner {
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(250, 246, 238, 0.12);
  border-radius: 8px;
  padding: 2rem 2.4rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.4rem;
  align-items: center;
}
.footer-newsletter-copy h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--cream);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.footer-newsletter-copy h3 em { color: var(--terra); font-style: italic; }
.footer-newsletter-copy p { font-size: 0.86rem; line-height: 1.6; color: var(--stone-2); max-width: 46ch; }
.footer-newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-newsletter-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.85rem 1.05rem;
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
}
.footer-newsletter-form input[type="email"]::placeholder { color: var(--muted); }
.footer-newsletter-form input[type="email"]:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }
.footer-newsletter-form button {
  background: var(--terra);
  color: var(--cream);
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  letter-spacing: 0.01em;
}
.footer-newsletter-form button:hover { background: var(--forest); transform: translateY(-1px); }
.footer-newsletter-form button:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }
@media (max-width: 780px) {
  .footer-newsletter-inner { grid-template-columns: 1fr; padding: 1.6rem 1.4rem; gap: 1.4rem; }
  .footer-newsletter-copy h3 { font-size: 1.3rem; }
}

.footer-grid {
  max-width: var(--content);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr 0.85fr 0.85fr 0.85fr;
  gap: 2rem;
}
.footer-brand-title { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
}
.footer-brand-name { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; color: var(--cream); }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; color: var(--stone-2); max-width: 32ch; margin-bottom: 1.2rem; }
.footer-brand-ota {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.footer-brand-ota-links { display: flex; flex-wrap: wrap; gap: 0.9rem; font-size: 0.82rem; }
.footer-brand-ota-links a {
  color: var(--stone-2);
  transition: color 0.2s;
  border-bottom: 1px solid rgba(250, 246, 238, 0.18);
  padding-bottom: 0.12rem;
}
.footer-brand-ota-links a:hover { color: var(--terra); border-color: var(--terra); }

.footer-col h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--terra);
  font-weight: 400;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.86rem; color: var(--stone-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--content);
  margin: 0 auto;
  padding: 2rem var(--gutter) 0;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cream); }
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ================================================
   BREADCRUMBS (sub-pages)
   ================================================ */
.breadcrumb {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  font-size: 0.78rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); border-bottom: 1px solid var(--stone); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--terra); border-color: var(--terra); }
.breadcrumb .sep { margin: 0 0.5rem; }

/* ================================================
   PROPERTY DETAIL PAGE
   ================================================ */
.prop-hero {
  padding: 4rem 0 3rem;
  background: var(--cream);
}
.prop-hero-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.prop-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.prop-hero h1 em { font-style: italic; color: var(--terra); }
.prop-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.prop-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-2);
}
.prop-hero-meta .stars { color: var(--terra); }

/* Gallery */
.prop-gallery {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}
.prop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  border-radius: 6px;
  overflow: hidden;
}
.prop-gallery-grid .gallery-img:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.prop-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/2;
  cursor: pointer;
  transition: opacity 0.2s;
}
.prop-gallery-grid img:hover { opacity: 0.9; }
@media (max-width: 700px) {
  .prop-gallery-grid { grid-template-columns: 1fr 1fr; }
}
/* Lightbox — full-screen swipeable gallery */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 9999;
  -webkit-user-select: none;
  user-select: none;
}
.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5rem;
  cursor: zoom-out;
  touch-action: pan-y;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: opacity 0.18s;
}
.lightbox.is-loading .lightbox-stage img { opacity: 0.55; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(199, 101, 68, 0.85); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  z-index: 10000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(199, 101, 68, 0.85); }
.lightbox-nav.prev { left: 1.25rem; }
.lightbox-nav.next { right: 1.25rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: 10000;
}
@media (max-width: 700px) {
  .lightbox-stage { padding: 3.5rem 0.75rem 4rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 44px; height: 44px; font-size: 2.1rem; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 2rem; }
  .lightbox-nav.prev { left: 0.5rem; }
  .lightbox-nav.next { right: 0.5rem; }
  .lightbox-counter { bottom: 1rem; font-size: 0.85rem; }
}
.prop-gallery-placeholder {
  background: var(--cream-2);
  border: 2px dashed var(--stone);
  border-radius: 6px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

/* Property detail sections */
.prop-detail-section {
  max-width: var(--content);
  margin: 0 auto 3rem;
  padding: 0 var(--gutter);
}
.prop-detail-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.prop-detail-section h2 em { font-style: italic; color: var(--terra); }
.prop-detail-section p {
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 64ch;
  margin-bottom: 1rem;
}

/* Amenities grid for property pages */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media (max-width: 700px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenities-grid { grid-template-columns: 1fr; } }

/* Book direct callout on property pages */
.book-direct-callout {
  background: var(--cream-2);
  border: 2px solid var(--forest);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}
.book-direct-callout h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.book-direct-callout p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  max-width: 100%;
}

/* Other properties strip */
.other-props {
  background: var(--cream-2);
  border-top: 1px solid var(--stone);
  padding: 4rem 0;
}
.other-props-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 700px) { .other-props-grid { grid-template-columns: 1fr; } }
.other-prop-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 1.8rem;
  transition: all 0.25s var(--ease);
}
.other-prop-card:hover { border-color: var(--terra); transform: translateY(-2px); }
.other-prop-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.other-prop-card h3 em { font-style: italic; color: var(--terra); }
.other-prop-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ================================================
   CORPORATE LANDING PAGE
   ================================================ */
.corp-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 4rem;
}
.corp-hero-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.corp-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1rem;
  max-width: 20ch;
}
.corp-hero h1 em { font-style: italic; color: var(--terra); }
.corp-hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--stone-2);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.corp-credentials {
  background: var(--cream-2);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 1.5rem 0;
}
.corp-credentials-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.corp-credential {
  font-size: 0.82rem;
  color: var(--ink-2);
}
.corp-credential strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
  font-size: 1.05rem;
  display: block;
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
/* Fallback focus ring for anything not explicitly styled */
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }
/* Don't let focus rings get clipped by overflow:hidden parents */
.nav-link:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}
/* High contrast mode support */
@media (prefers-contrast: more) {
  .banner,
  .footer { border: 1px solid currentColor; }
  .btn-primary { border: 2px solid currentColor; }
  .btn-secondary { border-width: 2px; }
}
/* .sr-only is an alias for .visually-hidden (defined above in FOOTER section) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================
   BOOK DIRECT MODAL (vanilla JS, no deps)
   ================================================ */
.book-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.book-modal.is-open { display: block; }
.book-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 22, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.book-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 780px);
  max-height: 90vh;
  background: var(--cream);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: bookModalIn 0.24s ease-out;
}
@keyframes bookModalIn {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.book-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-2);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  z-index: 2;
  transition: color 0.15s;
}
.book-modal-close:hover { color: var(--terra); }
.book-modal-header {
  padding: 1.9rem 2rem 1.2rem;
  border-bottom: 1px solid var(--stone);
  background: var(--cream-2);
}
.book-modal-header h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.book-modal-header p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.book-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.book-modal-prop {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}
.book-modal-prop:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.book-modal-prop h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.9rem;
  color: var(--forest);
}
.book-modal-prop h3 span {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.88rem;
}
.book-modal-loading {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  padding: 3rem 0;
}
body.book-modal-open { overflow: hidden; }
@media (max-width: 700px) {
  .book-modal-panel {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
    animation: bookModalInMobile 0.24s ease-out;
  }
  @keyframes bookModalInMobile {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .book-modal-header { padding: 1.4rem 1.25rem 1rem; }
  .book-modal-header h2 { font-size: 1.35rem; }
  .book-modal-body { padding: 1rem 1.25rem 1.5rem; }
  .book-modal-close { top: 0.6rem; right: 0.7rem; }
}
