/* ============================================================
   SANDSGATE — Stylesheet
   Editorial minimalism · Fraunces + Manrope · Dartmoor palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bone: #F5F1EA;
  --paper: #FAF8F4;
  --ink: #1C1C1A;
  --ink-soft: #2A2A27;
  --stone: #6B6760;
  --stone-soft: #9C9890;
  --moss: #3D5240;
  --moss-deep: #2C3D2F;
  --clay: #B7906A;
  --line: #E5DFD4;
  --line-soft: #EDE8DD;

  --container: 1400px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Typography ===== */
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.display-italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
}
.rule {
  width: 32px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  margin-right: 12px;
  flex-shrink: 0;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.divider { height: 1px; background: var(--line); width: 100%; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.btn:hover { background: var(--moss-deep); border-color: var(--moss-deep); color: var(--bone); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-on-dark { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-on-dark:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-block { width: 100%; justify-content: center; }

/* ===== Underline link ===== */
.link {
  position: relative;
  display: inline-block;
  transition: color .25s ease;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s cubic-bezier(.5,.05,.2,1);
}
.link:hover::after { transform: scaleX(1); transform-origin: left center; }

/* ===== Cards / image frames ===== */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
}
.img-frame {
  overflow: hidden;
  position: relative;
  background: var(--line);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.img-frame:hover img { transform: scale(1.04); }

/* ===== Reveal animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 1.2s cubic-bezier(.2,.7,.2,1) both; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav.scrolled,
.nav.solid {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.nav-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
}
.nav.transparent .nav-mark,
.nav.transparent .nav-links a,
.nav.transparent .nav-burger { color: var(--bone); }
.nav.scrolled .nav-mark,
.nav.scrolled .nav-links a,
.nav.scrolled .nav-burger { color: var(--ink); }

.nav-links { display: none; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-burger {
  display: inline-flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 768px) { .nav-burger { display: none; } }

.nav-mobile {
  display: none;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 64px;
  color: var(--bone);
}
@media (min-width: 768px) { .hero-content { padding: 0 40px 96px; } }

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  margin-top: 24px;
  max-width: 980px;
}
.hero p.lead {
  max-width: 540px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.92);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero .eyebrow { color: rgba(245, 241, 234, 0.85); }
.hero .eyebrow .rule { background: rgba(245, 241, 234, 0.85); }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
}
.scroll-cue::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(245, 241, 234, 0.5);
}
@media (min-width: 768px) { .scroll-cue { display: flex; } }

/* ===== Generic sections ===== */
.section {
  padding: 96px 0;
}
@media (min-width: 768px) { .section { padding: 144px 0; } }
.section-tight { padding: 72px 0; }
@media (min-width: 768px) { .section-tight { padding: 96px 0; } }

.section-dark { background: var(--ink); color: var(--bone); }
.section-dark .eyebrow { color: rgba(245, 241, 234, 0.7); }
.section-dark .eyebrow .rule { background: rgba(245, 241, 234, 0.7); }

/* ===== Property cards (home) ===== */
.props-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .props-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }

.prop-card {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.prop-card .img-frame { aspect-ratio: 4/3; }
.prop-card-body {
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.prop-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.prop-card .tagline {
  margin-top: 12px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.55;
  max-width: 460px;
}
.prop-card .stats {
  margin-top: 20px;
  font-size: 13px;
  color: var(--stone-soft);
}
.prop-card .price {
  text-align: right;
  flex-shrink: 0;
}
.prop-card .price .price-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1;
}
.prop-card .price .price-sub {
  font-size: 12px;
  color: var(--stone-soft);
  margin-top: 4px;
}
.prop-card .cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Dartmoor section ===== */
.dartmoor-grid {
  display: grid;
  gap: 1px;
  background: rgba(245, 241, 234, 0.12);
}
@media (min-width: 768px) { .dartmoor-grid { grid-template-columns: repeat(3, 1fr); } }
.dartmoor-cell {
  background: var(--ink);
  padding: 40px 32px;
}
.dartmoor-cell .icon { color: var(--clay); }
.dartmoor-cell h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 24px;
  color: var(--bone);
}
.dartmoor-cell p {
  margin-top: 12px;
  color: rgba(245, 241, 234, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.travel-grid {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 241, 234, 0.18);
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) { .travel-grid { grid-template-columns: repeat(3, 1fr); margin-top: 112px; } }
.travel-grid .eyebrow { color: rgba(245, 241, 234, 0.6); }
.travel-grid p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.85);
}

/* ===== Quote ===== */
.quote-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}
@media (min-width: 768px) { .quote-section { padding: 144px 40px; } }
.quote-stars { display: inline-flex; gap: 4px; }
.quote-stars svg { color: var(--clay); fill: var(--clay); }
.quote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.25;
  margin-top: 32px;
}
.quote-attr { margin-top: 32px; }

/* ===== Property page hero photo grid (Airbnb style) ===== */
.property-page { padding-top: 92px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none; border: none; padding: 0;
  color: var(--stone);
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-bottom: 24px;
}
.property-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.property-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  font-size: 14px;
}
.property-meta .sep { color: var(--stone-soft); }
.property-meta .stars { display: inline-flex; align-items: center; gap: 6px; }
.property-meta .stars svg { color: var(--clay); fill: var(--clay); }
.property-meta .loc { display: inline-flex; align-items: center; gap: 6px; color: var(--stone); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  position: relative;
}
.photo-grid > button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.photo-grid > *:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    max-height: none;
  }
  .photo-grid > *:nth-child(1) { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .photo-grid > *:nth-child(n+2) { display: none; }
}
.photo-grid > .img-frame { background: var(--line); }

.view-all-photos {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
@media (min-width: 768px) { .view-all-photos { display: inline-flex; } }

/* ===== Two-column property layout ===== */
.prop-cols {
  display: grid;
  gap: 48px;
  margin-top: 72px;
}
@media (min-width: 1024px) { .prop-cols { grid-template-columns: 7fr 5fr; } }

.prop-cols section { padding: 40px 0; border-bottom: 1px solid var(--line); }
.prop-cols section:first-child { padding-top: 0; }

.prop-summary {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
}
.prop-quick-stats {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 14px;
  color: var(--stone);
}
.prop-quick-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.prop-description p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prop-description p + p { margin-top: 18px; }

.amenities {
  display: grid;
  gap: 16px 32px;
}
@media (min-width: 640px) { .amenities { grid-template-columns: 1fr 1fr; } }
.amenities li {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 8px 0;
}
.amenities .icon { color: var(--moss); flex-shrink: 0; }
.amenities span { font-size: 15px; color: var(--ink-soft); }

.amenities-toggle { margin-top: 24px; }
.amenities-hidden { display: none; }
.amenities.show-all .amenities-hidden { display: flex; }

.section-h {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 32px;
}

/* Rooms */
.rooms { display: flex; flex-direction: column; gap: 48px; }
.room {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) { .room { grid-template-columns: 7fr 5fr; gap: 32px; } }
.room .img-frame { aspect-ratio: 4/3; }
.room-info { padding-top: 0; }
@media (min-width: 768px) { .room-info { padding-top: 24px; } }
.room-info h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin-top: 12px;
}
.room-info p {
  margin-top: 16px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.7;
}

/* Booking sidebar */
.booking-sticky {
  position: relative;
}
@media (min-width: 1024px) {
  .booking-sticky { position: sticky; top: 100px; }
}
.booking-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.booking-card .price-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
}
.booking-card .price-sub {
  color: var(--stone);
  font-size: 14px;
  margin-left: 6px;
}
.booking-card .rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.booking-card .rating svg { color: var(--clay); fill: var(--clay); }
.booking-card .rating .count { color: var(--stone-soft); }

.booking-fields {
  margin-top: 24px;
  border: 1px solid var(--line);
}
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.booking-field {
  padding: 12px 16px;
  cursor: pointer;
  display: block;
  border-right: 1px solid var(--line);
}
.booking-field:last-child { border-right: none; }
.booking-field input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  margin-top: 2px;
  width: 100%;
  outline: none;
  padding: 0;
}
.booking-guests {
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking-guests .label-text { margin-top: 2px; font-size: 14px; }
.guest-counter { display: flex; align-items: center; gap: 12px; }
.guest-counter button {
  background: none;
  border: 1px solid var(--line);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.guest-counter button:disabled { opacity: 0.4; cursor: not-allowed; }

.booking-disclaimer {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--stone-soft);
  line-height: 1.5;
}
.booking-includes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--stone);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-includes div { display: flex; align-items: center; gap: 8px; }

/* Perfect for */
.perfect-grid {
  display: grid;
  gap: 40px 48px;
}
@media (min-width: 768px) { .perfect-grid { grid-template-columns: 1fr 1fr; } }
.perfect-item { display: flex; gap: 24px; }
.perfect-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--clay);
  line-height: 1;
  padding-top: 4px;
}
.perfect-item h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
}
.perfect-item p {
  margin-top: 12px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.65;
}

/* Review block */
.review-block {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) { .review-block { grid-template-columns: 4fr 8fr; } }
.review-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
}
.review-stars { display: inline-flex; gap: 2px; margin-top: 12px; }
.review-stars svg { color: var(--clay); fill: var(--clay); }

/* Cross-link to other property */
.cross-link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
.cross-link-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}
@media (min-width: 768px) { .cross-link-grid { grid-template-columns: 5fr 7fr; } }
.cross-link .img-frame { aspect-ratio: 16/10; }
.cross-link h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
}
.cross-link p {
  margin-top: 12px;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
}
.cross-link .cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.95);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  animation: lb-fade .25s ease;
}
.lightbox.open { display: flex; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(245, 241, 234, 0.1);
  border: none;
  color: var(--bone);
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lb-close { top: 24px; right: 24px; background: none; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 241, 234, 0.7);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ===== Footer ===== */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  gap: 40px;
  padding: 80px 0;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 5fr 3fr 4fr; } }
.footer h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  margin-top: 16px;
  max-width: 420px;
}
.footer .body-text {
  margin-top: 24px;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 420px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 15px; }
.footer .what3words { color: var(--clay); font-family: 'Fraunces', Georgia, serif; }
.footer-cta { display: flex; gap: 12px; margin-top: 32px; }
.footer-cta .btn { flex: 1; justify-content: center; font-size: 12px; padding: 14px 18px; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--stone-soft);
}

/* ===== Generic helpers ===== */
.grid { display: grid; }
.flex { display: flex; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.gap-md { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }

.intro-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 4fr 8fr; }
}
.intro-grid h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.intro-grid p.body {
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 720px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.section-head p {
  max-width: 380px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.6;
}

.dartmoor-head {
  display: grid;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .dartmoor-head { grid-template-columns: 5fr 7fr; }
}
.dartmoor-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.dartmoor-head p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 241, 234, 0.78);
}

.perfect-head {
  margin-bottom: 48px;
}
.perfect-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

/* Lock body when lightbox open */
body.lb-open { overflow: hidden; }
