/* ==========================================================================
   OFF-LEAD DESIGN SYSTEM
   Single source of truth for all visual styling.
   Edit colours, fonts, and spacing here to update the whole site.
   ========================================================================== */

:root {
  /* --- Colours --- */
  --cream: #F4EFE6;
  --paper: #FBF9F3;
  --ink: #1F2A1E;
  --ink-soft: rgba(31, 42, 30, 0.65);
  --moss: #3D4F3A;
  --moss-deep: #2A3826;
  --clay: #B86F4D;
  --clay-soft: #D89A7E;
  --stone: #DDD5C5;
  --hairline: rgba(31, 42, 30, 0.12);
  --hairline-light: rgba(31, 42, 30, 0.06);

  /* --- Type scale --- */
  --display-1: clamp(48px, 9vw, 120px);
  --display-2: clamp(40px, 6vw, 72px);
  --display-3: clamp(32px, 4.5vw, 56px);
  --heading-1: clamp(28px, 3.5vw, 40px);
  --heading-2: 24px;
  --body-large: 19px;
  --body: 16px;
  --body-small: 14px;
  --caption: 12px;
  --label: 11px;

  /* --- Spacing --- */
  --space-section: clamp(80px, 12vw, 140px);
  --space-section-tight: clamp(60px, 9vw, 100px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle texture overlay across the site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 111, 77, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(61, 79, 58, 0.04) 0%, transparent 40%);
  z-index: 1;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 0;
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* Homepage transparent nav state */
nav.site-nav.nav-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

nav.site-nav.nav-transparent .logo,
nav.site-nav.nav-transparent .nav-link {
  color: var(--paper);
}

nav.site-nav.nav-transparent .logo em,
nav.site-nav.nav-transparent .nav-link.active {
  color: var(--clay);
}

nav.site-nav.nav-transparent .nav-cta {
  background: rgba(251, 249, 243, 0.15);
  border-color: rgba(251, 249, 243, 0.35);
  color: var(--paper);
}

nav.site-nav.nav-transparent .nav-cta:hover {
  background: var(--clay);
  border-color: var(--clay);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo em {
  font-style: italic;
  font-weight: 300;
  color: var(--moss);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 1 !important;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--moss);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 32px 24px;
    border-bottom: 1px solid var(--hairline);
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-toggle {
    display: block;
  }
}

/* ==========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================== */

.section-label {
  font-size: var(--label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-block;
}

.section-label::before {
  content: '— ';
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

h1 {
  font-size: var(--display-1);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--display-2);
}

h3 {
  font-size: var(--heading-1);
  line-height: 1.1;
}

h4 {
  font-size: var(--heading-2);
  line-height: 1.2;
}

em {
  font-style: italic;
}

.serif-italic {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: var(--body-small);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 100px;
}

.btn:hover {
  background: var(--moss);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 14px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--clay);
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: var(--body-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hairline);
  transition: border-color 0.3s, color 0.3s;
}

.text-link:hover {
  border-color: var(--ink);
  color: var(--moss);
}

/* ==========================================================================
   HERO PATTERNS (reusable across pages)
   ========================================================================== */

.hero-page {
  padding: 180px 0 80px;
  position: relative;
}

.hero-page .hero-eyebrow {
  font-size: var(--label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 32px;
}

.hero-page .hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--moss);
  margin-right: 16px;
  vertical-align: middle;
}

.hero-page h1 {
  margin-bottom: 32px;
  max-width: 900px;
}

.hero-page h1 em {
  color: var(--moss);
  font-weight: 300;
}

.hero-page-sub {
  font-size: var(--body-large);
  line-height: 1.5;
  max-width: 620px;
  color: var(--ink-soft);
}

/* ==========================================================================
   MOOD CARDS
   ========================================================================== */

.mood-card {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  display: block;
}

.mood-card:hover {
  transform: translateY(-6px);
}

.mood-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mood-card:hover .mood-card-bg {
  transform: scale(1.05);
}

.mood-wild .mood-card-bg {
  background:
    linear-gradient(180deg, rgba(31, 42, 30, 0.25) 0%, rgba(31, 42, 30, 0.72) 100%),
    url('../images/properties/combesgate-view-exterior-mortehoe-devon-05.jpg') center/cover no-repeat;
}

.mood-cosy .mood-card-bg {
  background:
    linear-gradient(180deg, rgba(31, 22, 14, 0.2) 0%, rgba(74, 38, 22, 0.72) 100%),
    url('../images/properties/chyventon-garden-falmouth-cornwall-02.jpg') center/cover no-repeat;
}

.mood-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.mood-card-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
}

.mood-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: var(--body-small);
  opacity: 0.7;
}

.mood-name {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.mood-desc {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 280px;
  margin-bottom: 32px;
}

.mood-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(251, 249, 243, 0.4);
  width: fit-content;
  transition: border-color 0.3s;
}

.mood-card:hover .mood-link {
  border-color: var(--paper);
}

/* ==========================================================================
   PROPERTY CARDS
   ========================================================================== */

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.property-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-card:hover {
  transform: translateY(-4px);
}

.property-image {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.property-image-bg {
  position: absolute;
  inset: 0;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-card:hover .property-image-bg {
  transform: scale(1.04);
}

.property-image-bg.wild-bg {
  background: linear-gradient(135deg, #5a6e5d 0%, #2a3826 50%, #1a2418 100%);
}

.property-image-bg.cosy-bg {
  background: linear-gradient(135deg, #d4a574 0%, #b86f4d 50%, #6b3a22 100%);
}

.property-mood-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(251, 249, 243, 0.95);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 100px;
}

.property-meta {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
}

.property-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 0;
}

.property-pill {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-soft);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ===== Shared filter dropdowns (wild + cosy) ===== */
.filter-select {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 7px 28px 7px 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231F2A1E' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}
.filter-select:focus {
  outline: none;
  border-color: var(--moss);
}
.filter-reset {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  display: none;
}
.filter-reset.visible { display: inline; }
.filter-reset:hover { color: var(--moss); }
.property-card.filter-hidden { display: none; }
.filter-empty {
  display: none;
  grid-column: 1 / -1;
  padding: 48px 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.filter-empty.visible { display: block; }

.property-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.property-desc {
  font-size: var(--body-small);
  color: var(--ink-soft);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-price {
  margin-top: 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .property-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .property-name { font-size: 22px; }
}

@media (max-width: 560px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   FORM
   ========================================================================== */

.form-section {
  padding: var(--space-section) 0;
  background: var(--moss-deep);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(184, 111, 77, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(90, 110, 93, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.form-section .container {
  position: relative;
  z-index: 2;
}

.form-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.form-header .section-label {
  color: var(--clay);
  margin-bottom: 20px;
}

.form-header h2 {
  color: var(--paper);
  margin-bottom: 20px;
}

.form-header h2 em {
  color: var(--clay);
}

.form-header p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(251, 249, 243, 0.7);
  max-width: 480px;
  margin: 0 auto;
}

.form-card {
  background: rgba(251, 249, 243, 0.06);
  padding: 56px 64px;
  border-radius: 4px;
  border: 1px solid rgba(251, 249, 243, 0.12);
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}

.form-q {
  font-size: var(--label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}

.form-q span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 8px;
  opacity: 0.6;
  color: rgba(251, 249, 243, 0.6);
}

.mood-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.mood-pill {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(251, 249, 243, 0.2);
  border-radius: 100px;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(251, 249, 243, 0.75);
}

.mood-pill:hover,
.mood-pill.selected {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--paper);
}

.mood-pill em {
  font-style: italic;
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid rgba(251, 249, 243, 0.2);
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: var(--body);
  color: var(--paper);
  margin-bottom: 36px;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--clay);
}

.form-input::placeholder {
  color: rgba(251, 249, 243, 0.35);
}

/* Light variant — for forms on cream/paper backgrounds */
.form-input-light {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: var(--body);
  color: var(--ink);
  margin-bottom: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: block;
}

.form-input-light:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61, 79, 58, 0.08);
}

.form-input-light::placeholder {
  color: rgba(31, 42, 30, 0.35);
}

textarea.form-input-light {
  resize: vertical;
  line-height: 1.6;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  background: var(--clay);
  border-color: var(--clay);
}

.form-submit:hover {
  background: #9a5c3a;
  border-color: #9a5c3a;
}

.form-note {
  font-size: var(--caption);
  color: rgba(251, 249, 243, 0.5);
  margin-top: 20px;
  text-align: center;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* Success message */
.form-success {
  text-align: center;
  padding: 48px 0;
  display: none;
}

.form-success h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--paper);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 15px;
  color: rgba(251, 249, 243, 0.65);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .form-card {
    padding: 40px 32px;
  }
  .mood-pills {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .form-card {
    padding: 32px 24px;
  }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

footer.site-footer {
  padding: 80px 0 40px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--paper);
  text-decoration: none;
  display: block;
}

.footer-brand em {
  font-style: italic;
  color: var(--clay);
}

.footer-tag {
  font-size: var(--body-small);
  opacity: 0.6;
  max-width: 320px;
  line-height: 1.5;
}

.footer-col-title {
  font-size: var(--label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--paper);
  text-decoration: none;
  font-size: var(--body-small);
  opacity: 0.7;
  margin-bottom: 12px;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 249, 243, 0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--caption);
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-hosting {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.01em;
  opacity: 1;
  text-align: center;
  flex: 1;
}

.poochouse-link {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 249, 243, 0.4);
  padding-bottom: 2px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal-on-scroll animation - progressive enhancement.
   Content is visible by default. Only when JS confirms it's running
   (by adding the .js class to <html>) do we hide elements ready to fade in.
   This means content always shows, even if JS fails to load. */
.reveal {
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ARTICLE / EDITORIAL TYPOGRAPHY
   ========================================================================== */

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 64px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.article-body h2 em,
.article-body h3 em {
  color: var(--moss);
}

.article-body a {
  color: var(--moss);
  border-bottom: 1px solid var(--moss);
  text-decoration: none;
  padding-bottom: 1px;
  transition: color 0.3s;
}

.article-body a:hover {
  color: var(--clay);
  border-color: var(--clay);
}

.article-body blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 48px 0;
  padding-left: 32px;
  border-left: 2px solid var(--clay);
  color: var(--ink);
}

.article-body ul {
  margin: 24px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 12px;
}

.article-body strong {
  font-weight: 600;
  color: var(--ink);
}

.article-body .first-letter::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 4.5em;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--moss);
}

/* ==========================================================================
   UTILITY
   ========================================================================== */

.divider {
  height: 1px;
  background: var(--hairline);
  border: none;
  margin: 0;
}

.text-center { text-align: center; }
.mt-section { margin-top: var(--space-section); }
.mb-section { margin-bottom: var(--space-section); }

/* ==========================================================================
   PROPERTY PAGE COMPONENTS
   Components unique to individual property listing pages.
   Property pages reuse the standard heading/spacing rhythm from
   cosy.html and wild.html (eyebrow + h2 + content with inline styles).
   ========================================================================== */

/* --- Facts row --- */
.facts-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 56px;
}

.fact-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fact-item:last-child {
  border-right: none;
}

.fact-icon {
  width: 36px;
  height: 36px;
  color: var(--moss);
  margin-bottom: 14px;
  opacity: 0.85;
}

.fact-icon svg {
  width: 100%;
  height: 100%;
}

.fact-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
  opacity: 0.8;
}

.fact-value {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  font-style: italic;
  white-space: nowrap;
}

.fact-value em {
  font-style: italic;
  font-weight: 400;
}

/* --- Gallery --- */
.gallery-wrap {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-family: 'Fraunces', serif;
}

.gallery-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.gallery-buttons {
  display: flex;
  gap: 12px;
}

.gallery-counter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}

/* --- Interior / Exterior accordion --- */
.room-section {
  border-top: 1px solid var(--hairline);
  padding: 28px 0;
}

.room-section:last-of-type {
  border-bottom: 1px solid var(--hairline);
}

.room-section summary {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.room-section summary::-webkit-details-marker {
  display: none;
}

.room-section summary .toggle-mark {
  font-style: italic;
  color: var(--moss);
  font-size: 22px;
  transition: transform 0.3s;
}

.room-section[open] summary .toggle-mark {
  transform: rotate(45deg);
}

.room-section-content {
  margin-top: 20px;
}

.room-section-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--ink);
  font-size: 14px;
}

/* --- FAQ accordion --- */
.faq-item {
  border-top: 1px solid var(--hairline);
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-item summary {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  font-style: italic;
  color: var(--moss);
  font-size: 20px;
  flex-shrink: 0;
}

.faq-item p {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 14px;
}

/* --- Two paths CTA --- */
.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.two-paths-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.path-card {
  padding: 56px 48px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.path-card-direct {
  background: var(--paper);
  border: 1px solid var(--hairline);
  color: var(--ink);
}

.path-card-curated {
  background: var(--moss-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.path-card-curated::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(184, 111, 77, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.path-card > * {
  position: relative;
  z-index: 2;
}

.path-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.path-card-direct .path-eyebrow { color: var(--moss); }
.path-card-curated .path-eyebrow { color: var(--clay); }

.path-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.path-card-direct .path-title em { color: var(--moss); }
.path-card-curated .path-title em { color: var(--clay); }

.path-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.path-card-direct .path-desc { color: var(--ink-soft); }
.path-card-curated .path-desc { opacity: 0.85; }

.path-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.path-bottom-link {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid;
  width: fit-content;
  transition: opacity 0.3s;
}

.path-card-direct .path-bottom-link {
  color: var(--ink-soft);
  border-color: var(--hairline);
}

.path-card-curated .path-bottom-link {
  color: var(--paper);
  border-color: rgba(251, 249, 243, 0.4);
  opacity: 0.8;
}

.path-bottom-link:hover { opacity: 1; }

/* ==========================================================================
   PROPERTY PAGE RESPONSIVE
   ========================================================================== */

/* Facts row: tablet 3-col, mobile 2-col */
@media (max-width: 900px) {
  .facts-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 0;
  }
  .fact-item {
    padding: 16px 12px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .fact-item:nth-child(3n) { border-right: none; }
  .fact-item:nth-child(n+4) { border-bottom: none; }

  .two-paths { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 720px) {
  .prop-hero { padding: 100px 0 0; }

  .path-card {
    padding: 36px 28px;
    min-height: auto;
  }

  .path-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .path-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .two-paths-heading {
    text-align: left;
    margin: 0;
  }

  .room-section summary { font-size: 22px; }
  .room-section summary .toggle-mark { font-size: 18px; }

  .faq-item summary { font-size: 17px; gap: 12px; }
}

@media (max-width: 560px) {
  .facts-row {
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
    margin-bottom: 40px;
  }
  .fact-item {
    padding: 18px 8px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .fact-item:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .fact-item:nth-child(2n) { border-right: none; }
  .fact-item:nth-child(5),
  .fact-item:nth-child(6) { border-bottom: none; }

  .fact-icon { width: 28px; height: 28px; margin-bottom: 10px; }
  .fact-label { font-size: 9px; letter-spacing: 0.25em; }
  .fact-value { font-size: 16px; }
}

/* ==========================================================================
   IMAGE MOMENTS GRID
   Asymmetric magazine-style image grid for property pages.
   ========================================================================== */

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.moment {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper);
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.moment:hover img {
  transform: scale(1.03);
}

/* Tall: spans 2 columns wide AND 2 rows tall (the hero of the grid, top-left) */
.moment-tall {
  grid-column: span 2;
  grid-row: span 2;
}

/* Wide: spans 2 columns, 1 row (sits top-right) */
.moment-wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* The two regular moments below the wide one fill the bottom-right corner */

/* Tablet */
@media (max-width: 900px) {
  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .moment-tall {
    grid-column: span 2;
    grid-row: span 1;
  }
  .moment-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .moments-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 10px;
  }
  .moment-tall,
  .moment-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ==========================================================================
   JOURNAL ARTICLE — EDITORIAL LAYOUT
   ========================================================================== */

/* Article hero — full-bleed image with caption beneath */
.article-hero-figure {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 720px;
  overflow: hidden;
}

.article-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-caption {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
  padding: 12px 24px 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Two-column body with sticky TOC */
.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  font-size: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}

.article-toc-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
}

.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.article-toc li {
  margin-bottom: 12px;
  counter-increment: toc;
  line-height: 1.4;
}

.article-toc a {
  color: var(--ink-soft);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.3s;
  border: none;
  font-size: 12px;
}

.article-toc a::before {
  content: counter(toc, decimal-leading-zero) "  ";
  color: var(--moss);
  font-variant-numeric: tabular-nums;
}

.article-toc a:hover {
  color: var(--ink);
}

.article-toc a.active {
  color: var(--ink);
  font-weight: 500;
}

/* Editorial body adjustments — slightly larger, more breathing room */
.article-body-editorial {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}

.article-body-editorial p {
  margin-bottom: 24px;
}

.article-body-editorial h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 80px;
  margin-bottom: 28px;
  scroll-margin-top: 100px;
}

.article-body-editorial h2 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 300;
}

.article-body-editorial h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--ink);
}

.article-body-editorial a {
  color: var(--moss);
  border-bottom: 1px solid var(--moss);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}

.article-body-editorial a:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.article-body-editorial strong {
  font-weight: 600;
  color: var(--ink);
}

/* Pull quote — large, serif, full-bleed-ish */
.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 64px -40px;
  padding: 0 40px;
  border-left: 2px solid var(--clay);
}

@media (max-width: 720px) {
  .pull-quote {
    margin: 48px 0;
    padding-left: 24px;
    font-size: 24px;
  }
}

/* Key takeaway / TL;DR card at top of article */
.key-takeaway {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--moss);
  padding: 28px 32px;
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.6;
}

.key-takeaway-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}

.key-takeaway p {
  margin: 0;
  color: var(--ink);
}

.key-takeaway p + p {
  margin-top: 12px;
}

/* Checklist module — scannable, distinct from prose lists */
.checklist {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 40px 44px;
  margin: 56px 0;
  border-radius: 2px;
}

.checklist-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
}

.checklist-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline-light);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.checklist li:first-child {
  border-top: none;
  padding-top: 0;
}

.checklist li::before {
  content: "→";
  color: var(--moss);
  font-size: 14px;
  line-height: 24px;
  font-variant-numeric: tabular-nums;
}

.checklist li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--ink);
}

.checklist li span {
  color: var(--ink-soft);
  font-size: 14px;
}

/* "From our collection" — embedded property cards inside article */
.collection-embed {
  margin: 72px 0;
}

.collection-embed-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}

.collection-embed-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
}

.collection-embed-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.collection-embed-link {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--moss);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  padding-bottom: 2px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: none;
}

.collection-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--stone);
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.04);
}

.collection-card-meta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.collection-card-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}

.collection-card-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Region cards inside article */
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 48px;
}

.region-card {
  border: 1px solid var(--hairline);
  padding: 24px;
  background: var(--paper);
}

.region-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
}

.region-card-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.region-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 720px) {
  .region-grid {
    grid-template-columns: 1fr;
  }
}

/* Article meta bar — author, date, read time */
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 40px 0;
  flex-wrap: wrap;
}

.article-meta-bar > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-meta-bar > span:not(:last-child)::after {
  content: "·";
  margin-left: 20px;
  opacity: 0.5;
}

/* Hide TOC on smaller screens */
@media (max-width: 1000px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 720px;
  }
  .article-toc {
    display: none;
  }
}

/* Article header — tighter, more editorial */
.article-header {
  padding: 160px 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.article-header .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.article-header .breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border: none;
}

.article-header .breadcrumb a:hover {
  color: var(--ink);
}

.article-header .category {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 24px;
  display: inline-block;
}

.article-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
}

.article-header h1 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 300;
}

.article-header .standfirst {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 640px;
  letter-spacing: -0.005em;
}
