/* Fonts are loaded via <link> tags in each page's <head> (with preconnect) rather than
   @import here — @import delays font discovery until this whole file is parsed, while
   a <link> tag lets the browser start fetching fonts immediately on page load. */

:root {
  --stone: #EDE7DA;
  --stone-dark: #E1D8C4;
  --ink: #23291F;
  --ink-soft: #4A5245;
  --hedge: #37503F;
  --hedge-dark: #26362A;
  --brick: #A85C3F;
  --brass: #B8935A;
  --white: #FFFDF9;
  --radius: 3px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (min-width: 781px) {
  html { font-size: 18px; }
}

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--hedge-dark);
  margin: 0 0 0.5em;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
img { max-width: 100%; display: block; }

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--stone);
  border-bottom: 1px solid var(--stone-dark);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--hedge-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-icon { height: 38px; width: auto; display: block; flex-shrink: 0; }
.brand-text { line-height: 1.15; }
@media (max-width: 480px) {
  .brand { font-size: 0.88rem; gap: 0.4rem; }
  .brand-icon { height: 32px; }
}

/* Hamburger trigger — pinned to the top-left corner of the nav bar */
.nav-toggle {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--stone-dark); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop behind the drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,41,31,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 65;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* Slide-out drawer — same panel on every screen size, opened from the top-left burger */
.nav-drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(320px, 86vw);
  background: var(--white);
  box-shadow: 8px 0 30px rgba(35,41,31,0.18);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 70;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--stone-dark);
}
.nav-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  width: 36px;
  height: 36px;
}
.nav-close:hover { color: var(--brick); }

.nav-list { list-style: none; margin: 0; padding: 0.5rem 0; }
.nav-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-list > li > a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}
.nav-list a:hover, .nav-list a.active { color: var(--brick); }

.nav-list details { border-top: 1px solid transparent; }
.nav-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}
.nav-list summary::-webkit-details-marker { display: none; }
.nav-list summary::after {
  content: "▾";
  font-size: 0.7rem;
  color: var(--ink-soft);
  transition: transform 0.2s;
}
.nav-list details[open] summary::after { transform: rotate(180deg); }
.nav-submenu { list-style: none; margin: 0; padding: 0 0 0.5rem; background: var(--stone); }
.nav-submenu a {
  display: block;
  padding: 0.85rem 1.5rem 0.85rem 2.4rem;
  font-size: 0.92rem;
  font-weight: 500;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brick); color: var(--white); }
.btn-primary:hover { box-shadow: 0 6px 16px rgba(168,92,63,0.35); }
.btn-outline { background: transparent; color: var(--hedge-dark); border-color: var(--hedge-dark); }
.btn-outline:hover { background: var(--hedge-dark); color: var(--white); }
.btn[disabled], .btn.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,41,31,0.15) 0%, rgba(35,41,31,0.75) 100%),
              repeating-linear-gradient(135deg, #4A5245 0px, #4A5245 2px, #37503F 2px, #37503F 40px);
}
.hero-content { position: relative; padding-top: 4rem; padding-bottom: 4.5rem; z-index: 2; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--brass);
  margin-bottom: 1rem;
  display: block;
}
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 14ch; }
.hero p { max-width: 42ch; font-size: 1.1rem; color: rgba(255,253,249,0.88); margin-bottom: 1.8rem; }

/* Homepage brand hero — full-bleed photo, name + subtitle centered, nothing else */
.hero-brand { align-items: center; justify-content: center; }
.hero-brand-content { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.hero-brand-icon { height: clamp(56px, 8vw, 84px); width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)); margin-bottom: 0.3rem; }
.hero-brand-title { color: var(--white); font-size: clamp(2.6rem, 7vw, 5rem); max-width: none; margin: 0; }
.hero-brand-subtitle {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  color: var(--brass);
  margin: 0;
}

/* Property page hero — title only, centered over the photo */
.hero-title-center { align-items: center; justify-content: center; }
.hero-title-center .hero-content { text-align: center; }

/* ---------- PHOTO PLACEHOLDER ---------- */
.photo-ph {
  background: repeating-linear-gradient(135deg, var(--stone-dark) 0px, var(--stone-dark) 2px, var(--white) 2px, var(--white) 26px);
  border: 1px dashed var(--brick);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: var(--radius);
}

/* ---------- SECTIONS ---------- */
section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--brick);
  margin-bottom: 0.8rem;
  display: block;
}
.lede { max-width: 60ch; font-size: 1.05rem; color: var(--ink-soft); }
@media (min-width: 781px) {
  .lede-lg { font-size: 1.3rem; max-width: 46ch; }
}

/* Center a section's intro copy (label + heading + lede) when it's the direct
   content of .wrap — i.e. a single-column section, not a two-column grid or
   a card, which keep their own left-aligned layout untouched. */
.wrap > .section-label,
.wrap > h2,
.wrap > p.lede,
.wrap > .pass-tags {
  text-align: center;
}
.wrap > p.lede { margin-left: auto; margin-right: auto; }
.wrap > .pass-tags { justify-content: center; }

/* ---------- STAY PASS (signature ticket-stub card) ---------- */
.pass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 780px) { .pass-grid { grid-template-columns: 1fr; } }

.stay-pass {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(35,41,31,0.10);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  min-height: 220px;
}
.stay-pass.is-soon { opacity: 0.55; }
.pass-main { flex: 1; padding: 1.8rem 1.6rem; display: flex; flex-direction: column; }
.pass-photo { height: 100px; margin-bottom: 1rem; width: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
.pass-main h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.pass-loc { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.8rem; }
.pass-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.pass-tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--stone);
  padding: 0.3rem 0.55rem;
  border-radius: 2px;
  color: var(--ink-soft);
}
.pass-divider {
  width: 0;
  border-left: 2px dashed var(--stone-dark);
  position: relative;
  flex-shrink: 0;
}
.pass-divider::before, .pass-divider::after {
  content: "";
  width: 20px; height: 20px;
  background: var(--stone);
  border-radius: 50%;
  position: absolute; left: -11px;
}
.pass-divider::before { top: -10px; }
.pass-divider::after { bottom: -10px; }
.pass-side {
  width: 120px;
  background: var(--hedge);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-align: center;
}
.stay-pass.is-soon .pass-side { background: var(--ink-soft); }

/* ---------- STAY CARD (homepage: bigger, stacked, photo carousel) ---------- */
.stay-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2.5rem; }
.stay-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(35,41,31,0.10);
  overflow: hidden;
}
.stay-carousel { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--stone); }
.stay-carousel-track { position: relative; width: 100%; height: 100%; }
.stay-carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stay-carousel-slide.is-active { opacity: 1; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(35,41,31,0.55);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.carousel-arrow:hover { background: rgba(35,41,31,0.8); }
.carousel-prev { left: 0.9rem; }
.carousel-next { right: 0.9rem; }
.carousel-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.45rem;
  z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.is-active { background: var(--white); transform: scale(1.2); }
.stay-card-body { padding: 1.8rem 2rem 2.2rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.stay-card-body h3 { font-size: 1.7rem; margin-bottom: 0.3rem; }
.stay-card-body h3 a { color: inherit; text-decoration: none; }
.stay-card-body .pass-tags { justify-content: center; }
.stay-cta { margin-top: 1.4rem; }

/* ---------- BADGE ROW (trust markers, same stub motif in mini) ---------- */
.badge-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
@media (max-width: 780px) { .badge-row { grid-template-columns: 1fr; } }
.badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  border-top: 3px solid var(--brass);
  box-shadow: 0 6px 18px rgba(35,41,31,0.06);
}
.badge .mono { font-size: 0.72rem; color: var(--brick); display: block; margin-bottom: 0.5rem; }
.badge p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- FEATURE LIST ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; }
@media (max-width: 600px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.98rem; }
.feature-list li::before { content: "◆"; color: var(--brass); font-size: 0.6rem; }

/* ---------- GALLERY CAROUSEL (3 photos visible on desktop, cycles via arrows) ---------- */
.gallery-carousel { position: relative; margin-top: 1.5rem; }
.gallery-carousel-viewport { overflow: hidden; }
.gallery-carousel-track { display: flex; gap: 1rem; transition: transform 0.4s ease; }
.gallery-carousel-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.gallery-carousel-slide.photo-ph { display: flex; align-items: center; justify-content: center; padding: 0.5rem; }
/* Mobile: one photo at a time, with a peek of its neighbours on each side
   so it's visually obvious the gallery scrolls. */
@media (max-width: 600px) {
  .gallery-carousel-viewport { padding: 0 8%; }
  .gallery-carousel-track { gap: 0.6rem; }
  .gallery-carousel-slide { flex-basis: 84%; }
}

/* ---------- BOOKING WIDGET SLOT ---------- */
.widget-slot {
  background: var(--white);
  border: 2px dashed var(--hedge);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}
.widget-slot .mono { color: var(--hedge); font-size: 0.75rem; }
.widget-slot h3 { margin-top: 0.6rem; }
.widget-slot p { color: var(--ink-soft); max-width: 46ch; margin: 0.6rem auto 0; font-size: 0.92rem; }

/* ---------- BOOKING CARD (leads each property page, Airbnb-style clean calendar) ---------- */
.booking-lead { padding: 2.5rem 0 0.5rem; }
.booking-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(35,41,31,0.14);
  padding: 1.6rem 0.9rem 0.85rem;
  max-width: 372px;
  margin: 0 auto;
}
.booking-card-head { text-align: center; margin-bottom: 1.1rem; }
.booking-card-head .section-label { text-align: center; }
.booking-card-head h2 { margin-bottom: 0.4rem; }
.booking-card-head p { color: var(--ink-soft); margin: 0 auto; max-width: 46ch; }
.booking-card-cta { margin-top: 0.4rem; text-align: center; }
.booking-widget {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.booking-widget iframe {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 505px;
  border: none;
  border-radius: 14px;
  transition: height 0.25s ease;
}
@media (max-width: 600px) {
  .booking-card { padding: 1.1rem 0.85rem 0.7rem; border-radius: 16px; }
  .booking-widget iframe { max-width: 320px; height: 505px; }
}

/* ---------- FORM ---------- */
.enquiry-form { display: grid; gap: 1.1rem; max-width: 560px; }
.enquiry-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink-soft); }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus {
  outline: 2px solid var(--brick);
  outline-offset: 1px;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .row-2 { grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- FOOTER ---------- */
footer { background: var(--hedge-dark); color: rgba(255,253,249,0.75); padding: 3rem 0 2rem; margin-top: 3rem; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
footer a { color: var(--white); text-decoration: none; }
footer .foot-brand { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--white); display: flex; align-items: center; gap: 0.5rem; }
.foot-brand-icon { height: 28px; width: auto; display: block; }
footer .foot-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; list-style: none; padding: 0; font-size: 0.88rem; }
.fine { font-size: 0.78rem; margin-top: 2rem; color: rgba(255,253,249,0.45); }

/* ---------- COOKIE CONSENT ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--hedge-dark);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -8px 24px rgba(35,41,31,0.3);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.88rem; color: rgba(255,253,249,0.85); max-width: 60ch; }
.cookie-banner a { text-decoration: underline; color: var(--white); }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.65rem 1.1rem; font-size: 0.85rem; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,253,249,0.4); }
.btn-ghost:hover { background: rgba(255,253,249,0.1); }

.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(35,41,31,0.6);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cookie-modal-overlay.is-visible { display: flex; }
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
}
.cookie-modal h3 { margin-bottom: 0.3rem; }
.cookie-modal > p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.5rem; }
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--stone-dark);
}
.cookie-category:first-of-type { border-top: none; }
.cookie-category-text strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.cookie-category-text p { margin: 0; font-size: 0.85rem; color: var(--ink-soft); }
.cookie-toggle {
  position: relative;
  width: 42px; height: 24px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-track {
  position: absolute; inset: 0;
  background: var(--stone-dark);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle-track::before {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--hedge); }
.cookie-toggle input:checked + .cookie-toggle-track::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-track { background: var(--brass); cursor: not-allowed; opacity: 0.8; }
.cookie-modal-actions { display: flex; gap: 0.8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.cookie-modal-actions .btn { flex: 1; justify-content: center; }
.cookie-settings-link {
  background: none; border: none; padding: 0; cursor: pointer;
  color: inherit; text-decoration: none; font: inherit;
}

/* ---------- ACCESSIBILITY: SKIP LINK ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brick);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

.legal-content { max-width: 780px; }
/* Article bodies (legal pages, blog posts) stay left-aligned throughout,
   overriding the generic .wrap > p.lede centering rule for this context. */
.wrap.legal-content > p.lede { text-align: left; max-width: none; margin-left: 0; margin-right: 0; }
.legal-content h3 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 0.96rem; }
.legal-content ul { padding-left: 1.3rem; margin: 0.6rem 0; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-note {
  background: var(--white);
  border-left: 4px solid var(--brick);
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.legal-note strong { color: var(--brick); }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2.5rem; }
@media (max-width: 780px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(35,41,31,0.10);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(35,41,31,0.16); }
.blog-card-photo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.blog-card-body { padding: 1.6rem; }
.blog-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
  display: block;
  margin-bottom: 0.6rem;
}
.blog-card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.blog-card-body p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.blog-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1.5rem;
}
.blog-post-cta { margin: 2.5rem 0 1rem; text-align: center; }
.location-map {
  margin: 1.5rem 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(35,41,31,0.10);
  background: var(--stone-dark);
}
.location-map svg { display: block; width: 100%; height: auto; }
.location-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 0.9rem 0 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.location-map-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.location-map-legend .dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.location-map-legend .dot-property { background: var(--brick); }
.location-map-legend .dot-works { background: var(--ink-soft); border: 1px solid var(--ink-soft); }
.location-map-note { font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 1.8rem; }
.placeholder-tag {
  background: var(--stone);
  color: var(--brick);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  padding: 0.05em 0.35em;
  border-radius: 2px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}
@media (max-width: 780px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--hedge);
  box-shadow: 0 6px 18px rgba(35,41,31,0.06);
}
.testimonial-quote { font-style: italic; color: var(--ink); font-size: 0.95rem; margin: 0 0 0.8rem; }
.testimonial-attr { margin: 0; font-size: 0.85rem; color: var(--ink-soft); font-family: 'JetBrains Mono', monospace; }

/* ---------- STICKY MOBILE BOOK BAR ---------- */
.sticky-book-bar {
  display: none;
}
@media (max-width: 780px) {
  .sticky-book-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    background: var(--white);
    border-top: 1px solid var(--stone-dark);
    padding: 0.8rem 1rem;
    box-shadow: 0 -6px 20px rgba(35,41,31,0.12);
    gap: 0.7rem;
  }
  .sticky-book-bar .btn { flex: 1; justify-content: center; margin: 0; }
  body { padding-bottom: 72px; }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
