/* ═══════════════════════════════════════
   CHELSEA FARM — MASTER CSS FOR WORDPRESS
   Paste this entire file into:
   Appearance → Customize → Additional CSS
   ═══════════════════════════════════════ */


/* ───────── from: chelsea-farm-homepage.html ───────── */

  /* ═══════════════════════════════════════
     CSS VARIABLES — CHELSEA FARM PALETTE
     ═══════════════════════════════════════ */
  :root {
    --cream: #F7F3EC;
    --cream-light: #F7F4ED;
    --cream-warm: #F1E6D2;
    --stone: #E8DFC8;
    --stone-dark: #C9AF82;
    --sage: #C4A878;
    --sage-muted: #8A6E47;
    --sage-light: #DCC89C;
    --sage-pale: #F1E6CE;
    --charcoal: #3C2C1A;
    --charcoal-light: #6B5637;
    --charcoal-mid: #4A3620;
    --warm-white: #FDFBF7;
    --gold-muted: #8A6E47;
    --gold-light: #D9C39A;
    --border-fine: #E0D2AC;
    --border-light: #EDE1C8;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-accent: 'EB Garamond', serif;
  }

  /* ═══════════════════════════════════════
     RESET & BASE
     ═══════════════════════════════════════ */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream-light);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

  /* ═══════════════════════════════════════
     NAVIGATION
     ═══════════════════════════════════════ */
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-logo-img {
    height: 50px;
    width: auto;
  }

  /* Placeholder for logo image */
  .nav-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage-pale);
    border: 1px solid var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--sage);
    font-weight: 500;
  }

  .nav-site-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: var(--charcoal);
  }

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

  .nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-muted);
    transition: width 0.3s ease;
  }

  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { width: 100%; }

  .nav-links a.active {
    color: var(--sage);
  }
  .nav-links a.active::after {
    width: 100%;
    background: var(--sage);
  }

  /* ═══ GALLERY NAV DROPDOWN ═══ */
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .nav-dropdown-caret {
    font-size: 9px;
    color: currentColor;
    transition: transform 0.25s ease;
    position: relative;
    top: 1px;
  }
  .nav-dropdown:hover .nav-dropdown-caret,
  .nav-dropdown:focus-within .nav-dropdown-caret {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    margin-top: 14px;
    min-width: 230px;
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    box-shadow: 0 18px 36px rgba(28, 20, 11, 0.14);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-links .nav-dropdown-menu a {
    display: block;
    padding: 9px 22px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12.5px;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--charcoal-light);
    white-space: nowrap;
  }
  .nav-links .nav-dropdown-menu a::after {
    display: none;
  }
  .nav-links .nav-dropdown-menu a:hover {
    background: var(--cream-light);
    color: var(--charcoal);
  }
  .nav-dropdown-group-label {
    padding: 10px 22px 4px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
  }
  .nav-dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 8px 0;
  }

  @media (max-width: 900px) {
    .nav-dropdown-menu {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      margin-top: 0;
      min-width: 0;
      background: none;
      border: none;
      box-shadow: none;
      padding: 2px 0 6px 16px;
    }
    .nav-dropdown-caret {
      display: none;
    }
    .nav-links .nav-dropdown-menu a {
      padding: 7px 0;
      font-size: 12px;
    }
    .nav-dropdown-group-label {
      padding: 8px 0 2px;
    }
    .nav-dropdown-divider {
      margin: 6px 0;
    }
  }

  /* Mobile nav toggle */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: 0.3s;
  }

  /* ═══════════════════════════════════════
     SECTION 1 — HERO (full-bleed image, overlaid text)
     ═══════════════════════════════════════ */
  .home-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--charcoal);
  }
  .home-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,20,11,0.32) 0%, rgba(28,20,11,0.28) 35%, rgba(28,20,11,0.6) 68%, rgba(20,14,8,0.93) 100%);
  }
  .home-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 60px 40px 72px;
  }
  .home-hero .hero-ornament {
    color: var(--gold-light);
  }
  .home-hero .hero-est {
    color: var(--gold-light);
  }
  .home-hero .hero-title {
    color: var(--warm-white);
  }
  .home-hero .hero-divider {
    background: var(--gold-light);
  }
  .home-hero .hero-tagline {
    color: rgba(253, 251, 247, 0.88);
    max-width: 720px;
  }

  .hero-ornament {
    font-size: 20px;
    color: var(--sage-light);
    margin-bottom: 22px;
    letter-spacing: 0.5em;
  }

  .hero-est {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(50px, 7vw, 82px);
    letter-spacing: 0.05em;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 24px;
  }

  .hero-divider {
    width: 1px;
    height: 40px;
    background: var(--gold-muted);
    margin: 0 auto 24px;
  }

  .hero-tagline {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
  }

  .img-placeholder-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    z-index: 2;
  }

  .link-subtle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    border-bottom: 1px solid var(--sage-light);
    display: inline-block;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
  }
  .link-subtle:hover {
    color: var(--charcoal);
    border-color: var(--charcoal);
  }

  /* ═══════════════════════════════════════
     SECTION 2 — OUR STORY
     ═══════════════════════════════════════ */
  .story-section {
    padding: 90px 40px;
    text-align: center;
    background: var(--cream-light);
  }

  .story-inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 22px;
  }

  .section-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 14px;
  }

  .section-divider {
    width: 50px;
    height: 1px;
    background: var(--gold-muted);
    margin: 0 auto 28px;
  }

  .story-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 35px;
  }

  /* ═══ HOMEPAGE — OUR STORY (wide, two-column) ═══ */
  .home-story-section {
    padding: 100px 40px;
    background: var(--charcoal);
  }
  .home-story-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .home-story-image {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border: 3px solid var(--gold-muted);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }
  .home-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .home-story-text .section-label,
  .home-story-text .section-heading {
    text-align: left;
  }
  .home-story-text .section-label {
    color: var(--gold-light);
  }
  .home-story-text .section-heading {
    color: var(--warm-white);
  }
  .home-story-text .section-divider {
    margin: 0 0 28px;
    background: var(--gold-muted);
  }
  .home-story-text .story-text {
    text-align: left;
    font-size: 17px;
    color: rgba(253, 251, 247, 0.82);
  }
  .home-story-text .link-subtle {
    color: var(--gold-light);
    border-bottom-color: rgba(217, 195, 154, 0.5);
  }
  .home-story-text .link-subtle:hover {
    color: var(--warm-white);
    border-color: var(--warm-white);
  }
  /* ═══════════════════════════════════════
     SECTION 3 — THREE FEATURE CARDS
     ═══════════════════════════════════════ */
  .features-section {
    padding: 90px 40px;
    background: var(--cream-light);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    border-top: 3px solid transparent;
    transition: background 0.4s ease, border-top-color 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .feature-card:hover {
    background: var(--cream);
    border-top-color: var(--gold-muted);
  }

  .feature-img-wrap {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8B7355 0%, #6B5D4A 50%, #8A6E47 100%);
    border-bottom: 1px solid var(--border-fine);
  }
  .feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .feature-card:hover .feature-img-wrap img {
    transform: scale(1.03);
  }

  .feature-content {
    padding: 32px 30px 38px;
  }

  .feature-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 12px;
  }

  .feature-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .feature-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 22px;
  }

  /* ═══════════════════════════════════════
     SECTION 4 — PULL QUOTE
     ═══════════════════════════════════════ */
  .quote-section {
    padding: 38px 40px;
    background: var(--charcoal);
    text-align: center;
    position: relative;
  }

  /* Subtle texture overlay */
  .quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  /* Light variant — homepage quote, matches nav bar to frame the hero photo */
  .quote-section.quote-light {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-fine);
  }
  .quote-section.quote-light::before {
    display: none;
  }
  .quote-light .quote-mark {
    color: var(--gold-muted);
    opacity: 1;
  }
  .quote-light .quote-text {
    color: var(--charcoal);
  }
  .quote-light .quote-divider {
    background: var(--gold-muted);
    opacity: 1;
  }
  .quote-light .quote-attribution {
    color: var(--charcoal-light);
  }

  .quote-inner {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .quote-mark {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--gold-muted);
    line-height: 1;
    margin-bottom: 4px;
    opacity: 0.6;
  }

  .quote-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }

  .quote-divider {
    width: 40px;
    height: 1px;
    background: var(--gold-muted);
    margin: 0 auto 14px;
    opacity: 0.6;
  }

  .quote-attribution {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone-dark);
  }

  /* Prominent variant — extra visual weight for standalone/closing quotes
     (e.g. the Howard Tanner quote on the Rehabilitation page), scoped so
     it never affects the compact homepage quote which shares .quote-section */
  .quote-section.quote-prominent {
    padding: 64px 40px;
  }
  .quote-prominent .quote-inner {
    max-width: 1120px;
  }
  .quote-prominent .quote-mark {
    font-size: 52px;
    margin-bottom: 8px;
    opacity: 0.75;
  }
  .quote-prominent .quote-text {
    font-size: clamp(19px, 2.4vw, 25px);
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .quote-prominent .quote-divider {
    margin: 0 auto 16px;
    opacity: 0.75;
  }

  /* ═══════════════════════════════════════
     SECTION 5 — FOOTER
     ═══════════════════════════════════════ */
  .site-footer {
    background: var(--warm-white);
    border-top: 1px solid var(--border-fine);
    padding: 60px 50px 40px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .footer-brand {
    /* Left column */
  }

  .footer-brand-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    margin-bottom: 6px;
  }

  .footer-brand-est {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-dark);
    margin-bottom: 18px;
  }

  .footer-brand-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal-light);
    max-width: 280px;
  }

  .footer-nav {
    text-align: center;
  }

  .footer-nav-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 18px;
  }

  .footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-nav-links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--charcoal-light);
    transition: color 0.3s;
  }
  .footer-nav-links a:hover {
    color: var(--sage);
  }

  .footer-contact {
    text-align: right;
  }

  .footer-contact-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 18px;
  }

  .footer-contact-item {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal-light);
  }

  .footer-contact-item a {
    transition: color 0.3s;
  }
  .footer-contact-item a:hover {
    color: var(--sage);
  }

  .footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    color: var(--stone-dark);
    letter-spacing: 0.05em;
  }

  .footer-heritage {
    font-family: var(--font-accent);
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    color: var(--stone-dark);
  }

  /* ═══════════════════════════════════════
     IMAGE PLACEHOLDERS
     ═══════════════════════════════════════ */
  .placeholder {
    position: relative;
    overflow: hidden;
  }
  .placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 70%, rgba(122,139,111,0.25) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 25%, rgba(196,169,106,0.12) 0%, transparent 45%);
    pointer-events: none;
  }

  /* Variation colours for the 3 cards */
  .placeholder-history {
    background: linear-gradient(145deg, #A68F63 0%, #7A6142 40%, #6B5D4A 100%);
  }
  .placeholder-rehab {
    background: linear-gradient(145deg, #8A6E47 0%, #6B5637 40%, #4A3620 100%);
  }
  .placeholder-gallery {
    background: linear-gradient(145deg, #9B8560 0%, #7A6142 40%, #8B7355 100%);
  }

  /* ═══════════════════════════════════════
     ANIMATIONS
     ═══════════════════════════════════════ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .home-hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
  }
  .hero-ornament { animation-delay: 0.1s; }
  .hero-est { animation-delay: 0.25s; }
  .hero-title { animation-delay: 0.4s; }
  .hero-divider { animation-delay: 0.55s; }
  .hero-tagline { animation-delay: 0.65s; }

  /* ═══════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════ */
  @media (max-width: 900px) {
    .site-nav {
      padding: 16px 24px;
    }
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    /* Mobile menu */
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--warm-white);
      border-bottom: 1px solid var(--border-light);
      padding: 20px 24px 28px;
      gap: 16px;
    }

    .home-hero {
      min-height: 52vh;
    }
    .home-hero-content {
      padding: 40px 24px 48px;
    }

    .story-section {
      padding: 60px 24px;
    }

    .home-story-section {
      padding: 60px 24px;
    }
    .home-story-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .home-story-image {
      min-height: 280px;
    }

    .features-section {
      padding: 60px 24px;
    }
    .features-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .quote-section {
      padding: 60px 24px;
    }

    .site-footer {
      padding: 40px 24px 30px;
    }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
    .footer-brand-desc { margin: 0 auto; }
    .footer-contact { text-align: center; }
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }

  @media (max-width: 600px) {
    .feature-img-wrap { height: 200px; }
    .home-hero { min-height: 46vh; }
  }

/* ───────── from: chelsea-farm-history.html ───────── */

  /* ═══════════════════════════════════════
     CSS VARIABLES — CHELSEA FARM PALETTE
     ═══════════════════════════════════════ */
  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream-light);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ═══════════════════════════════════════
     NAVIGATION (same as homepage)
     ═══════════════════════════════════════ */
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .nav-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage-pale);
    border: 1px solid var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--sage);
    font-weight: 500;
  }
  .nav-site-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: var(--charcoal);
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-muted);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--sage); }
  .nav-links a.active::after { width: 100%; background: var(--sage); }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    margin: 5px 0;
  }

  /* ═══════════════════════════════════════
     PAGE HERO BANNER
     ═══════════════════════════════════════ */
  .page-hero {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-fine);
    position: relative;
  }

  .page-hero-inner {
    text-align: center;
    padding: 70px 40px 60px;
    position: relative;
  }

  .page-hero-inner::before,
  .page-hero-inner::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--border-light);
    border-style: solid;
  }
  .page-hero-inner::before {
    top: 25px; left: 25px;
    border-width: 1px 0 0 1px;
  }
  .page-hero-inner::after {
    top: 25px; right: 25px;
    border-width: 1px 1px 0 0;
  }

  .page-hero .hero-ornament {
    font-size: 20px;
    color: var(--sage-light);
    margin-bottom: 22px;
    letter-spacing: 0.5em;
  }

  .page-hero .hero-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 18px;
  }

  .page-hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
  }

  .page-hero .hero-divider {
    width: 1px;
    height: 35px;
    background: var(--gold-muted);
    margin: 0 auto 20px;
  }

  .page-hero .hero-subtitle {
    font-family: var(--font-accent);
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    color: var(--charcoal-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ═══════════════════════════════════════
     HERO IMAGE BAND
     ═══════════════════════════════════════ */
  .page-hero-image {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #8B7355 0%, #6B5D4A 30%, #5A4F3E 60%, #8A6E47 100%);
  }
  .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .img-placeholder-label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
  }

  /* ═══════════════════════════════════════
     PHOTO HERO BANNER (full-bleed image with
     overlay caption — used in place of the
     text page-hero on pages like History)
     ═══════════════════════════════════════ */
  .photo-hero-banner {
    position: relative;
    height: 58vh;
    min-height: 440px;
    max-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
  }
  .photo-hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .photo-hero-banner-scrim {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(18,13,7,0.42) 0%, rgba(18,13,7,0.22) 32%, rgba(18,13,7,0.38) 68%, rgba(14,10,5,0.72) 100%),
      radial-gradient(ellipse at center, rgba(18,13,7,0.05) 0%, rgba(18,13,7,0.3) 78%);
  }
  .photo-hero-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 40px;
  }
  .photo-hero-banner-eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
  }
  .photo-hero-banner-label {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(58px, 9vw, 104px);
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--warm-white);
    text-shadow: 0 4px 32px rgba(0,0,0,0.4);
    margin: 0;
  }
  .photo-hero-banner-divider {
    width: 1px;
    height: 46px;
    background: var(--gold-muted);
    margin: 28px auto 0;
  }

  @media (max-width: 900px) {
    .photo-hero-banner {
      height: 48vh;
      min-height: 380px;
    }
  }

  @media (max-width: 600px) {
    .photo-hero-banner {
      height: 40vh;
      min-height: 300px;
    }
    .photo-hero-banner-eyebrow {
      letter-spacing: 0.26em;
      font-size: 11px;
      margin-bottom: 16px;
    }
    .photo-hero-banner-divider {
      height: 34px;
      margin-top: 20px;
    }
  }

  /* ═══════════════════════════════════════
     CONTENT ARTICLE LAYOUT
     ═══════════════════════════════════════ */
  .article-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ─── Section Blocks ─── */
  .history-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .history-section:last-child {
    border-bottom: none;
    padding-bottom: 90px;
  }

  .history-section .section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 18px;
  }

  .history-section h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 38px);
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 12px;
  }

  .history-section h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 10px;
    margin-top: 40px;
  }

  .section-divider {
    width: 50px;
    height: 1px;
    background: var(--gold-muted);
    margin-bottom: 30px;
  }

  .history-section p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.85;
    color: #4E3D26;
    margin-bottom: 20px;
  }

  .history-section p:last-child {
    margin-bottom: 0;
  }

  /* Italic notes / emphasis */
  .history-section em {
    font-style: italic;
  }

  /* ─── Collapsible history sections (accordion) ─── */
  details.history-section {
    padding: 0;
    border-bottom: 1px solid var(--border-light);
  }
  details.history-section:last-child {
    border-bottom: none;
  }
  .history-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 0;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
  }
  .history-summary::-webkit-details-marker {
    display: none;
  }
  .history-summary::marker {
    content: '';
  }
  .history-summary .section-label {
    margin-bottom: 10px;
  }
  .history-summary h2 {
    margin-bottom: 0;
    transition: color 0.2s ease;
  }
  details.history-section:hover .history-summary h2 {
    color: var(--sage);
  }
  .history-summary-icon {
    flex-shrink: 0;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold-muted);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  details.history-section:hover .history-summary-icon {
    background: var(--cream);
  }
  .history-summary-icon::before,
  .history-summary-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--gold-muted);
    transform: translate(-50%, -50%);
  }
  .history-summary-icon::before {
    width: 13px;
    height: 1px;
  }
  .history-summary-icon::after {
    width: 1px;
    height: 13px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  details.history-section[open] .history-summary-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }
  .history-content {
    padding-bottom: 70px;
  }
  details.history-section:last-child .history-content {
    padding-bottom: 90px;
  }

  /* ─── Images within sections ─── */
  .section-image {
    margin: 35px 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border-light);
  }

  .section-image img {
    width: 100%;
    display: block;
  }

  /* Image placeholder */
  .section-image.placeholder-img {
    height: 320px;
    background: linear-gradient(145deg, #8B7355 0%, #6B5D4A 40%, #8A6E47 100%);
  }
  .section-image.placeholder-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 70%, rgba(122,139,111,0.2) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 25%, rgba(196,169,106,0.1) 0%, transparent 45%);
  }

  .image-caption {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    font-style: italic;
    color: var(--charcoal-light);
    line-height: 1.6;
    padding: 14px 18px;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
  }

  /* Side-by-side images */
  .image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 35px 0;
  }
  .image-pair .section-image {
    margin: 0;
  }

  /* ─── Intro summary block ─── */
  .intro-summary {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 19px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 20px;
  }

  /* ═══════════════════════════════════════
     FOOTER (same as homepage)
     ═══════════════════════════════════════ */
  .site-footer {
    background: var(--warm-white);
    border-top: 1px solid var(--border-fine);
    padding: 60px 50px 40px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .footer-brand-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    margin-bottom: 6px;
  }
  .footer-brand-est {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-dark);
    margin-bottom: 18px;
  }
  .footer-brand-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal-light);
    max-width: 280px;
  }
  .footer-nav { text-align: center; }
  .footer-nav-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 18px;
  }
  .footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-nav-links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--charcoal-light);
    transition: color 0.3s;
  }
  .footer-nav-links a:hover { color: var(--sage); }
  .footer-contact { text-align: right; }
  .footer-contact-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 18px;
  }
  .footer-contact-item {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal-light);
  }
  .footer-contact-item a { transition: color 0.3s; }
  .footer-contact-item a:hover { color: var(--sage); }
  .footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copyright {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    color: var(--stone-dark);
  }
  .footer-heritage {
    font-family: var(--font-accent);
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    color: var(--stone-dark);
  }

  /* ═══════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════ */
  @media (max-width: 900px) {
    .site-nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: var(--warm-white);
      border-bottom: 1px solid var(--border-light);
      padding: 20px 24px 28px;
      gap: 16px;
    }
    .page-hero-inner {
      padding: 50px 24px 45px;
    }
    .page-hero-inner::before,
    .page-hero-inner::after { display: none; }
    .page-hero-image { height: 260px; }
    .article-wrap { padding: 0 24px; }
    .history-section { padding: 50px 0; }
    .image-pair { grid-template-columns: 1fr; gap: 16px; }
    .site-footer { padding: 40px 24px 30px; }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
    .footer-brand-desc { margin: 0 auto; }
    .footer-contact { text-align: center; }
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }

/* ───────── from: chelsea-farm-rehabilitation.html ───────── */

  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream-light);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ═══ NAVIGATION ═══ */
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .nav-logo-placeholder {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--sage-pale);
    border: 1px solid var(--sage-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 18px; color: var(--sage); font-weight: 500;
  }
  .nav-site-name {
    font-family: var(--font-display);
    font-weight: 500; font-size: 20px;
    letter-spacing: 0.06em; color: var(--charcoal);
  }
  .nav-links {
    display: flex; align-items: center; gap: 35px;
  }
  .nav-links a {
    font-family: var(--font-body); font-weight: 400; font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--charcoal-light); transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold-muted); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--sage); }
  .nav-links a.active::after { width: 100%; background: var(--sage); }
  .nav-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--charcoal); margin: 5px 0;
  }

  /* ═══ PAGE HERO ═══ */
  .page-hero {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-fine);
  }
  .page-hero-inner {
    text-align: center;
    padding: 70px 40px 60px;
    position: relative;
  }
  .page-hero-inner::before,
  .page-hero-inner::after {
    content: ''; position: absolute; width: 30px; height: 30px;
    border-color: var(--border-light); border-style: solid;
  }
  .page-hero-inner::before { top: 25px; left: 25px; border-width: 1px 0 0 1px; }
  .page-hero-inner::after { top: 25px; right: 25px; border-width: 1px 1px 0 0; }
  .hero-ornament {
    font-size: 20px; color: var(--sage-light); margin-bottom: 22px; letter-spacing: 0.5em;
  }
  .hero-label {
    font-family: var(--font-body); font-weight: 400; font-size: 11px;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .page-hero h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(36px, 5vw, 58px); letter-spacing: 0.04em;
    line-height: 1.15; color: var(--charcoal); margin-bottom: 20px;
  }
  .hero-divider {
    width: 1px; height: 35px; background: var(--gold-muted); margin: 0 auto 20px;
  }
  .hero-subtitle {
    font-family: var(--font-accent); font-weight: 400; font-style: italic;
    font-size: 16px; color: var(--charcoal-light); line-height: 1.7;
    max-width: 560px; margin: 0 auto;
  }

  /* ═══ HERO IMAGE BAND ═══ */
  .page-hero-image {
    width: 100%; height: 380px; position: relative; overflow: hidden;
    background: linear-gradient(160deg, #8A6E47 0%, #6B5637 30%, #4A3620 60%, #8B7355 100%);
  }
  .page-hero-image img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .img-placeholder-label {
    position: absolute; bottom: 16px; left: 20px;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); font-family: var(--font-body);
  }

  /* ═══ SPLIT CONTENT SECTION ═══ */
  .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-fine);
  }
  .split-image {
    position: relative; overflow: hidden;
    background: linear-gradient(145deg, #8B7355 0%, #6B5D4A 40%, #8A6E47 100%);
  }
  .split-image img {
    width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  }
  /* A small stack of framed photos that floats near the middle of a long
     text column and scrolls normally with the page, with a gap on both sides */
  .split-image.split-photo-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    align-self: center;
    position: static;
    overflow: visible;
    background: none;
    margin: 48px 40px 48px 64px;
  }
  .split-photo-block {
    margin: 0;
  }
  .split-photo-card {
    margin: 0;
    border: 3px solid var(--gold-muted);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: var(--warm-white);
  }
  .split-photo-stack .split-photo-card img {
    position: static;
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .split-photo-stack .split-photo-card--garden img {
    height: 300px;
  }
  .split-photo-stack .split-photo-card--restoration img {
    height: 460px;
  }
  .split-photo-caption {
    margin: 10px 0 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    font-size: 13px;
    line-height: 1.6;
    color: var(--charcoal-light);
    text-align: left;
  }
  .split-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 55px;
  }
  .split-text .section-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .split-text h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(28px, 3.5vw, 38px); letter-spacing: 0.02em;
    line-height: 1.25; color: var(--charcoal); margin-bottom: 12px;
  }
  .section-divider {
    width: 50px; height: 1px; background: var(--gold-muted); margin-bottom: 28px;
  }
  .split-text p {
    font-family: var(--font-body); font-weight: 300; font-size: 16px;
    line-height: 1.85; color: var(--charcoal-light); margin-bottom: 18px;
  }
  .split-text p:last-of-type { margin-bottom: 0; }

  .image-caption {
    font-family: var(--font-body); font-weight: 300; font-size: 13px;
    font-style: italic; color: var(--charcoal-light); line-height: 1.6;
    padding: 14px 18px; background: var(--cream); border-top: 1px solid var(--border-light);
  }

  /* ═══ CENTRED STORY SECTION ═══ */
  .story-section {
    padding: 80px 40px;
    background: var(--cream-light);
    text-align: center;
  }
  .story-inner {
    max-width: 700px;
    margin: 0 auto;
  }
  .story-inner .section-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .story-inner h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(28px, 3.5vw, 38px); letter-spacing: 0.02em;
    line-height: 1.25; color: var(--charcoal); margin-bottom: 12px;
  }
  .story-inner p {
    font-family: var(--font-body); font-weight: 300; font-size: 16px;
    line-height: 1.85; color: var(--charcoal-light); margin-bottom: 20px;
    text-align: left;
  }
  .story-inner p:last-of-type { margin-bottom: 0; }

  /* ═══ CLOSING QUOTE ═══ */
  .quote-section {
    padding: 38px 40px;
    background: var(--charcoal);
    text-align: center;
    position: relative;
  }
  .quote-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .quote-inner {
    max-width: 960px; margin: 0 auto; position: relative; z-index: 1;
  }
  .quote-mark {
    font-family: var(--font-display); font-size: 40px;
    color: var(--gold-muted); line-height: 1; margin-bottom: 4px; opacity: 0.6;
  }
  .quote-text {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(20px, 2.4vw, 26px); line-height: 1.5;
    color: var(--cream); margin-bottom: 16px;
  }
  .quote-divider {
    width: 40px; height: 1px; background: var(--gold-muted); margin: 0 auto 14px; opacity: 0.6;
  }
  .quote-attribution {
    font-family: var(--font-body); font-weight: 400; font-size: 13px;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone-dark);
  }

  /* ═══ LINK BUTTON ═══ */
  .link-subtle {
    font-family: var(--font-body); font-weight: 500; font-size: 12px;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
    border-bottom: 1px solid var(--sage-light); display: inline-block;
    padding-bottom: 3px; transition: color 0.3s, border-color 0.3s;
    margin-top: 28px;
  }
  .link-subtle:hover { color: var(--charcoal); border-color: var(--charcoal); }

  /* ═══ FOOTER ═══ */
  .site-footer {
    background: var(--warm-white);
    border-top: 1px solid var(--border-fine);
    padding: 60px 50px 40px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start;
  }
  .footer-brand-name {
    font-family: var(--font-display); font-weight: 500; font-size: 22px;
    letter-spacing: 0.05em; color: var(--charcoal); margin-bottom: 6px;
  }
  .footer-brand-est {
    font-family: var(--font-body); font-weight: 300; font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-dark); margin-bottom: 18px;
  }
  .footer-brand-desc {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    line-height: 1.7; color: var(--charcoal-light); max-width: 280px;
  }
  .footer-nav { text-align: center; }
  .footer-nav-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .footer-nav-links {
    display: flex; flex-direction: column; gap: 10px; align-items: center;
  }
  .footer-nav-links a {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    color: var(--charcoal-light); transition: color 0.3s;
  }
  .footer-nav-links a:hover { color: var(--sage); }
  .footer-contact { text-align: right; }
  .footer-contact-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .footer-contact-item {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    line-height: 1.8; color: var(--charcoal-light);
  }
  .footer-contact-item a { transition: color 0.3s; }
  .footer-contact-item a:hover { color: var(--sage); }
  .footer-bottom {
    max-width: 1100px; margin: 40px auto 0; padding-top: 25px;
    border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copyright {
    font-family: var(--font-body); font-weight: 300; font-size: 12px; color: var(--stone-dark);
  }
  .footer-heritage {
    font-family: var(--font-accent); font-weight: 400; font-style: italic;
    font-size: 12px; color: var(--stone-dark);
  }

  /* ═══ RESPONSIVE ═══ */
  @media (max-width: 900px) {
    .site-nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
      display: flex; flex-direction: column; position: absolute;
      top: 100%; left: 0; right: 0; background: var(--warm-white);
      border-bottom: 1px solid var(--border-light); padding: 20px 24px 28px; gap: 16px;
    }
    .page-hero-inner { padding: 50px 24px 45px; }
    .page-hero-inner::before, .page-hero-inner::after { display: none; }
    .page-hero-image { height: 260px; }
    .split-section { grid-template-columns: 1fr; }
    .split-image { min-height: 300px; }
    .split-image.split-photo-stack { margin: 24px 24px 0; align-self: center; gap: 24px; }
    .split-photo-stack .split-photo-card--garden img { height: 240px; }
    .split-photo-stack .split-photo-card--restoration img { height: 340px; }
    .split-text { padding: 40px 24px; }
    .story-section { padding: 60px 24px; }
    .quote-section { padding: 60px 24px; }
    .site-footer { padding: 40px 24px 30px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand-desc { margin: 0 auto; }
    .footer-contact { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

/* ───────── from: chelsea-farm-gallery.html ───────── */

  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream-light);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ═══ NAVIGATION ═══ */
  .site-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 50px; background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky; top: 0; z-index: 100;
  }
  .nav-logo-wrap { display: flex; align-items: center; gap: 14px; }
  .nav-logo-placeholder {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--sage-pale); border: 1px solid var(--sage-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 18px; color: var(--sage); font-weight: 500;
  }
  .nav-site-name {
    font-family: var(--font-display); font-weight: 500; font-size: 20px;
    letter-spacing: 0.06em; color: var(--charcoal);
  }
  .nav-links { display: flex; align-items: center; gap: 35px; }
  .nav-links a {
    font-family: var(--font-body); font-weight: 400; font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--charcoal-light); transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold-muted); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--sage); }
  .nav-links a.active::after { width: 100%; background: var(--sage); }
  .nav-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--charcoal); margin: 5px 0;
  }

  /* ═══ PAGE HERO ═══ */
  .page-hero {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-fine);
  }
  .page-hero-inner {
    text-align: center; padding: 70px 40px 60px; position: relative;
  }
  .page-hero-inner::before,
  .page-hero-inner::after {
    content: ''; position: absolute; width: 30px; height: 30px;
    border-color: var(--border-light); border-style: solid;
  }
  .page-hero-inner::before { top: 25px; left: 25px; border-width: 1px 0 0 1px; }
  .page-hero-inner::after { top: 25px; right: 25px; border-width: 1px 1px 0 0; }
  .hero-ornament {
    font-size: 20px; color: var(--sage-light); margin-bottom: 22px; letter-spacing: 0.5em;
  }
  .hero-label {
    font-family: var(--font-body); font-weight: 400; font-size: 11px;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .page-hero h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(36px, 5vw, 58px); letter-spacing: 0.04em;
    line-height: 1.15; color: var(--charcoal); margin-bottom: 20px;
  }
  .hero-divider {
    width: 1px; height: 35px; background: var(--gold-muted); margin: 0 auto 20px;
  }
  .hero-subtitle {
    font-family: var(--font-accent); font-weight: 400; font-style: italic;
    font-size: 16px; color: var(--charcoal-light); line-height: 1.7;
    max-width: 520px; margin: 0 auto;
  }

  /* ═══ GALLERY GRID ═══ */
  .gallery-section {
    padding: 70px 40px 90px;
    background: var(--cream-light);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* When there are 3 cards, the grid still works as 2-col with the 3rd centred.
     When there are 4+, they fill naturally. Easy to scale. */

  .gallery-card {
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    overflow: hidden;
    transition: background 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  .gallery-card:hover {
    background: var(--cream);
  }

  .gallery-card-img {
    height: 340px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-fine);
  }
  .gallery-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .gallery-card:hover .gallery-card-img img {
    transform: scale(1.03);
  }

  /* Placeholders */
  .gallery-card-img.placeholder-ajws {
    background: linear-gradient(145deg, #A68F63 0%, #7A6142 30%, #6B5D4A 70%, #5A4F3E 100%);
  }
  .gallery-card-img.placeholder-ajws::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 40% 60%, rgba(196,169,106,0.15) 0%, transparent 55%);
    pointer-events: none;
  }
  .gallery-card-img.placeholder-cf {
    background: linear-gradient(145deg, #8A6E47 0%, #6B5637 30%, #4A3620 70%, #8B7355 100%);
  }
  .gallery-card-img.placeholder-cf::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(122,139,111,0.2) 0%, transparent 55%);
    pointer-events: none;
  }
  .img-placeholder-label {
    position: absolute; bottom: 16px; left: 20px;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); font-family: var(--font-body); z-index: 2;
  }

  .gallery-card-content {
    padding: 35px 32px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .gallery-card-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 12px;
  }

  .gallery-card-title {
    font-family: var(--font-display); font-weight: 500;
    font-size: 26px; letter-spacing: 0.02em;
    color: var(--charcoal); margin-bottom: 14px; line-height: 1.3;
  }

  .gallery-card-desc {
    font-family: var(--font-body); font-weight: 300; font-size: 15px;
    line-height: 1.75; color: var(--charcoal-light);
    margin-bottom: 28px; flex: 1;
  }

  .link-subtle {
    font-family: var(--font-body); font-weight: 500; font-size: 12px;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
    border-bottom: 1px solid var(--sage-light); display: inline-block;
    padding-bottom: 3px; transition: color 0.3s, border-color 0.3s;
    align-self: flex-start;
  }
  .link-subtle:hover { color: var(--charcoal); border-color: var(--charcoal); }

  /* ═══ FOOTER ═══ */
  .site-footer {
    background: var(--warm-white);
    border-top: 1px solid var(--border-fine);
    padding: 60px 50px 40px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start;
  }
  .footer-brand-name {
    font-family: var(--font-display); font-weight: 500; font-size: 22px;
    letter-spacing: 0.05em; color: var(--charcoal); margin-bottom: 6px;
  }
  .footer-brand-est {
    font-family: var(--font-body); font-weight: 300; font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-dark); margin-bottom: 18px;
  }
  .footer-brand-desc {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    line-height: 1.7; color: var(--charcoal-light); max-width: 280px;
  }
  .footer-nav { text-align: center; }
  .footer-nav-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .footer-nav-links {
    display: flex; flex-direction: column; gap: 10px; align-items: center;
  }
  .footer-nav-links a {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    color: var(--charcoal-light); transition: color 0.3s;
  }
  .footer-nav-links a:hover { color: var(--sage); }
  .footer-contact { text-align: right; }
  .footer-contact-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .footer-contact-item {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    line-height: 1.8; color: var(--charcoal-light);
  }
  .footer-contact-item a { transition: color 0.3s; }
  .footer-contact-item a:hover { color: var(--sage); }
  .footer-bottom {
    max-width: 1100px; margin: 40px auto 0; padding-top: 25px;
    border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copyright {
    font-family: var(--font-body); font-weight: 300; font-size: 12px; color: var(--stone-dark);
  }
  .footer-heritage {
    font-family: var(--font-accent); font-weight: 400; font-style: italic;
    font-size: 12px; color: var(--stone-dark);
  }

  /* ═══ RESPONSIVE ═══ */
  @media (max-width: 900px) {
    .site-nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
      display: flex; flex-direction: column; position: absolute;
      top: 100%; left: 0; right: 0; background: var(--warm-white);
      border-bottom: 1px solid var(--border-light); padding: 20px 24px 28px; gap: 16px;
    }
    .page-hero-inner { padding: 50px 24px 45px; }
    .page-hero-inner::before, .page-hero-inner::after { display: none; }
    .gallery-section { padding: 50px 24px 60px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 24px; }
    .gallery-card-img { height: 260px; }
    .site-footer { padding: 40px 24px 30px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand-desc { margin: 0 auto; }
    .footer-contact { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

/* ───────── from: chelsea-farm-contact.html ───────── */

  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream-light);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }

  /* ═══ NAVIGATION ═══ */
  .site-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 50px; background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky; top: 0; z-index: 100;
  }
  .nav-logo-wrap { display: flex; align-items: center; gap: 14px; }
  .nav-logo-placeholder {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--sage-pale); border: 1px solid var(--sage-light);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 18px; color: var(--sage); font-weight: 500;
  }
  .nav-site-name {
    font-family: var(--font-display); font-weight: 500; font-size: 20px;
    letter-spacing: 0.06em; color: var(--charcoal);
  }
  .nav-links { display: flex; align-items: center; gap: 35px; }
  .nav-links a {
    font-family: var(--font-body); font-weight: 400; font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--charcoal-light); transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold-muted); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--sage); }
  .nav-links a.active::after { width: 100%; background: var(--sage); }
  .nav-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--charcoal); margin: 5px 0;
  }

  /* ═══ PAGE HERO ═══ */
  .page-hero {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-fine);
  }
  .page-hero-inner {
    text-align: center; padding: 70px 40px 60px; position: relative;
  }
  .page-hero-inner::before,
  .page-hero-inner::after {
    content: ''; position: absolute; width: 30px; height: 30px;
    border-color: var(--border-light); border-style: solid;
  }
  .page-hero-inner::before { top: 25px; left: 25px; border-width: 1px 0 0 1px; }
  .page-hero-inner::after { top: 25px; right: 25px; border-width: 1px 1px 0 0; }
  .hero-ornament {
    font-size: 20px; color: var(--sage-light); margin-bottom: 22px; letter-spacing: 0.5em;
  }
  .hero-label {
    font-family: var(--font-body); font-weight: 400; font-size: 11px;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .page-hero h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(36px, 5vw, 58px); letter-spacing: 0.04em;
    line-height: 1.15; color: var(--charcoal); margin-bottom: 20px;
  }
  .hero-divider {
    width: 1px; height: 35px; background: var(--gold-muted); margin: 0 auto 20px;
  }
  .hero-subtitle {
    font-family: var(--font-accent); font-weight: 400; font-style: italic;
    font-size: 16px; color: var(--charcoal-light); line-height: 1.7;
    max-width: 480px; margin: 0 auto;
  }

  /* ═══ CONTACT CONTENT ═══ */
  .contact-section {
    padding: 70px 40px 90px;
    background: var(--cream-light);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-fine);
    background: var(--warm-white);
  }

  /* Left — Contact Details */
  .contact-details {
    padding: 55px 50px;
    border-right: 1px solid var(--border-fine);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-details .section-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 18px;
  }

  .contact-details h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: 32px; letter-spacing: 0.02em;
    line-height: 1.25; color: var(--charcoal); margin-bottom: 12px;
  }

  .section-divider {
    width: 50px; height: 1px; background: var(--gold-muted); margin-bottom: 30px;
  }

  .contact-block {
    margin-bottom: 28px;
  }
  .contact-block:last-child {
    margin-bottom: 0;
  }

  .contact-block-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 8px;
  }

  .contact-block p,
  .contact-block a {
    font-family: var(--font-body); font-weight: 300; font-size: 16px;
    line-height: 1.75; color: var(--charcoal-light);
  }

  .contact-block a {
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
  }
  .contact-block a:hover {
    color: var(--sage);
    border-bottom-color: var(--sage-light);
  }

  /* Right — Map or Image */
  .contact-map {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: var(--cream);
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: none;
    filter: saturate(0.7) contrast(0.95);
  }

  .contact-map-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #E8DFC8 0%, #C9AF82 40%, #E0D2AC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .contact-map-placeholder span {
    font-family: var(--font-body); font-weight: 400; font-size: 12px;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal-light);
  }
  .contact-map-placeholder .map-pin {
    font-size: 28px;
    color: var(--charcoal-light);
    opacity: 0.5;
  }

  /* Right — Contact Form */
  .contact-form-wrap {
    padding: 55px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .contact-form-field {
    margin-bottom: 18px;
  }
  .contact-form-field label {
    display: block;
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage);
    margin-bottom: 8px;
  }
  .contact-form-field label .required {
    text-transform: none;
    letter-spacing: normal;
    color: var(--charcoal-light);
    font-weight: 300;
    font-size: 11px;
  }
  .contact-form-field input,
  .contact-form-field textarea {
    width: 100%;
    font-family: var(--font-body); font-weight: 300; font-size: 15px;
    color: var(--charcoal);
    background: var(--cream-light);
    border: 1px solid var(--border-fine);
    padding: 11px 14px;
  }
  .contact-form-field textarea {
    min-height: 110px;
    resize: vertical;
  }
  .contact-form-field input:focus,
  .contact-form-field textarea:focus {
    outline: none;
    border-color: var(--sage);
  }
  .contact-form-submit {
    display: inline-block;
    font-family: var(--font-body); font-weight: 500; font-size: 12px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--warm-white);
    background: var(--charcoal);
    border: none;
    padding: 13px 32px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .contact-form-submit:hover {
    background: var(--sage);
  }

  /* ═══ FOOTER ═══ */
  .site-footer {
    background: var(--warm-white);
    border-top: 1px solid var(--border-fine);
    padding: 60px 50px 40px;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start;
  }
  .footer-brand-name {
    font-family: var(--font-display); font-weight: 500; font-size: 22px;
    letter-spacing: 0.05em; color: var(--charcoal); margin-bottom: 6px;
  }
  .footer-brand-est {
    font-family: var(--font-body); font-weight: 300; font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-dark); margin-bottom: 18px;
  }
  .footer-brand-desc {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    line-height: 1.7; color: var(--charcoal-light); max-width: 280px;
  }
  .footer-nav { text-align: center; }
  .footer-nav-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .footer-nav-links {
    display: flex; flex-direction: column; gap: 10px; align-items: center;
  }
  .footer-nav-links a {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    color: var(--charcoal-light); transition: color 0.3s;
  }
  .footer-nav-links a:hover { color: var(--sage); }
  .footer-contact { text-align: right; }
  .footer-contact-label {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px;
  }
  .footer-contact-item {
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    line-height: 1.8; color: var(--charcoal-light);
  }
  .footer-contact-item a { transition: color 0.3s; }
  .footer-contact-item a:hover { color: var(--sage); }
  .footer-bottom {
    max-width: 1100px; margin: 40px auto 0; padding-top: 25px;
    border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copyright {
    font-family: var(--font-body); font-weight: 300; font-size: 12px; color: var(--stone-dark);
  }
  .footer-heritage {
    font-family: var(--font-accent); font-weight: 400; font-style: italic;
    font-size: 12px; color: var(--stone-dark);
  }

  /* ═══ RESPONSIVE ═══ */
  @media (max-width: 900px) {
    .site-nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
      display: flex; flex-direction: column; position: absolute;
      top: 100%; left: 0; right: 0; background: var(--warm-white);
      border-bottom: 1px solid var(--border-light); padding: 20px 24px 28px; gap: 16px;
    }
    .page-hero-inner { padding: 50px 24px 45px; }
    .page-hero-inner::before, .page-hero-inner::after { display: none; }
    .contact-section { padding: 50px 24px 60px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-details {
      border-right: none;
      border-bottom: 1px solid var(--border-fine);
      padding: 40px 30px;
    }
    .contact-map { min-height: 300px; }
    .site-footer { padding: 40px 24px 30px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand-desc { margin: 0 auto; }
    .footer-contact { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

/* ───────── shared additions: timeline / light quote / photo grid ─────────
   Used across index.html, pages/history.html, pages/rehabilitation.html,
   and the new pages/gallery-*.html photo-album pages. */

  /* ═══ TIMELINE (History page) ═══ */
  .timeline-section {
    padding: 80px 40px 90px;
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
  }
  .timeline-inner {
    max-width: 780px;
    margin: 0 auto;
  }
  .timeline-heading {
    text-align: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 50px;
  }
  .timeline {
    position: relative;
    padding-left: 130px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 78px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--border-fine);
  }
  .timeline-item {
    position: relative;
    padding-bottom: 42px;
  }
  .timeline-item:last-child {
    padding-bottom: 0;
  }
  .timeline-year {
    position: absolute;
    left: -136px;
    top: 0;
    width: 70px;
    text-align: right;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 19px;
    color: var(--sage);
    letter-spacing: 0.02em;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 2px solid var(--gold-muted);
  }
  .timeline-item h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 21px;
    letter-spacing: 0.01em;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .timeline-item p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
    color: var(--charcoal-light);
  }

  @media (max-width: 600px) {
    .timeline { padding-left: 54px; }
    .timeline::before { left: 20px; }
    .timeline-year {
      position: static;
      display: block;
      text-align: left;
      width: auto;
      margin-bottom: 6px;
    }
    .timeline-item::before { left: -34px; }
  }

  /* ═══ LIGHT QUOTE BLOCK (e.g. Rehabilitation preservation quote) ═══ */
  .quote-section-light {
    padding: 96px 40px;
    background: var(--warm-white);
    text-align: center;
    border-bottom: 1px solid var(--border-fine);
  }
  .quote-light-inner {
    max-width: 780px;
    margin: 0 auto;
  }
  .quote-light-mark {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    color: var(--gold-muted);
    opacity: 0.7;
    margin-bottom: 14px;
  }
  .quote-light-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(23px, 3vw, 31px);
    line-height: 1.55;
    color: var(--charcoal);
    margin-bottom: 22px;
  }
  .quote-light-divider {
    width: 40px;
    height: 1px;
    background: var(--gold-muted);
    margin: 0 auto 18px;
    opacity: 0.7;
  }
  .quote-light-attribution {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-light);
  }

  /* ═══ SIMPLE PHOTO GRID (Gallery sub-album pages) ═══ */
  .photo-grid-hero {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-fine);
    text-align: center;
    padding: 60px 40px 45px;
  }
  .photo-grid-hero .hero-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
  }
  .photo-grid-hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: 16px;
  }
  .photo-grid-hero p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
    color: var(--charcoal-light);
    max-width: 620px;
    margin: 0 auto;
  }
  .photo-grid-hero .back-link {
    display: inline-block;
    margin-top: 22px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    border-bottom: 1px solid var(--sage-light);
    padding-bottom: 3px;
  }
  .photo-grid-hero .back-link:hover { color: var(--charcoal); border-color: var(--charcoal); }

  .photo-grid-section {
    padding: 60px 40px 90px;
    background: var(--cream-light);
  }
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .photo-grid figure {
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    overflow: hidden;
  }
  .photo-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .photo-grid a:hover img { transform: scale(1.04); }
  .photo-grid figcaption {
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--stone-dark);
    border-top: 1px solid var(--border-light);
  }

  /* Before/after colourised pairs */
  .photo-pair-grid {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
  }
  .photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    padding: 16px;
  }
  .photo-pair figure { position: relative; }
  .photo-pair img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }
  .photo-pair figcaption {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(58,54,50,0.72);
    color: var(--cream-light);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 9px;
  }
  .photo-grid-note {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    color: var(--charcoal-light);
    line-height: 1.7;
  }

  @media (max-width: 900px) {
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .photo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .photo-grid img { height: 160px; }
    .photo-pair { grid-template-columns: 1fr; }
    .photo-grid-hero { padding: 45px 24px 35px; }
    .photo-grid-section { padding: 40px 20px 60px; }
  }

  /* ═══ SHARED SECTION EYEBROW (small centred label used above the
     carousel and above the full photo grid) ═══ */
  .section-eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    text-align: center;
    margin-bottom: 28px;
  }

  /* ═══ FEATURED PHOTO CAROUSEL (auto-advancing) ═══
     The mount is a fixed-size "matte" — its edges never move, so the
     arrows anchored to it stay put. The stage inside it is fluid: it
     resizes to each photo's own aspect ratio (up to the mount's usable
     area) so every photo is shown whole, never cropped. ═══ */
  .carousel-section {
    padding: 60px 40px 16px;
    background: var(--cream-light);
    text-align: center;
  }
  .photo-carousel {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    outline: none;
  }
  .carousel-mount {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    box-sizing: border-box;
    overflow: hidden;
    background: var(--stone);
    border: 1px solid var(--border-fine);
    box-shadow: inset 0 0 30px rgba(60, 44, 26, 0.08);
  }
  /* Very faint aged-paper grain over the matte — barely-there texture,
     not a visible pattern */
  .carousel-mount::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.24 0 0 0 0 0.17 0 0 0 0 0.09 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
  }
  .carousel-stage {
    position: relative;
    width: 480px;
    height: 480px;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    background: var(--warm-white);
    border: 3px solid var(--gold-muted);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    transition: width 0.5s ease, height 0.5s ease;
  }
  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  .carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(20, 14, 8, 0.45);
    border: 1px solid rgba(253, 251, 247, 0.5);
    color: var(--warm-white);
    font-size: 20px;
    font-family: var(--font-body);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
    z-index: 3;
    padding: 0;
  }
  .carousel-arrow:hover {
    background: rgba(20, 14, 8, 0.7);
    border-color: var(--gold-light);
  }
  .carousel-arrow--prev { left: 18px; }
  .carousel-arrow--next { right: 18px; }
  .carousel-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px 0;
  }
  .carousel-counter {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-light);
  }
  .carousel-progress {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 12px;
    height: 2px;
    background: rgba(60, 44, 26, 0.12);
    z-index: 2;
  }
  .carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold-muted);
    transition-property: width;
    transition-timing-function: linear;
    transition-duration: 0ms;
  }

  @media (max-width: 600px) {
    .carousel-section { padding: 40px 20px 10px; }
    .carousel-mount { height: 380px; padding: 18px; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 16px; }
    .carousel-arrow--prev { left: 8px; }
    .carousel-arrow--next { right: 8px; }
  }

/* ───────── The Letters — index + individual letter pages ───────── */

  /* ═══ LETTERS INDEX GRID ═══ */
  .letters-section {
    padding: 70px 40px 90px;
    background: var(--cream-light);
  }
  .letters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1150px;
    margin: 0 auto;
  }
  .letter-card {
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    padding: 30px 26px;
    transition: background 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .letter-card:hover {
    background: var(--cream);
    border-color: var(--gold-muted);
  }
  .letter-card-number {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 10px;
  }
  .letter-card-date {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    color: var(--stone-dark);
    margin-bottom: 10px;
  }
  .letter-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--charcoal);
  }

  @media (max-width: 900px) {
    .letters-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .letters-grid { grid-template-columns: 1fr; }
    .letters-section { padding: 50px 20px 60px; }
  }

  /* ═══ INDIVIDUAL LETTER PAGE ═══ */
  .letter-body-section {
    padding: 70px 40px 40px;
    background: var(--cream-light);
  }
  .letter-body-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1150px;
    margin: 0 auto;
    align-items: start;
  }
  .letter-transcript-col .section-label,
  .letter-images-col .section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
  }
  .letter-transcript {
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    padding: 40px 42px;
  }
  .letter-transcript p {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 20px;
  }
  .letter-transcript p:last-child { margin-bottom: 0; }
  .letter-transcript p.page-marker {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin: 26px 0 10px;
  }
  .letter-transcript .letter-note {
    font-style: italic;
    color: var(--charcoal-light);
  }

  .letter-plant-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 24px;
    font-family: var(--font-body);
    font-size: 13px;
  }
  .letter-plant-table th,
  .letter-plant-table td {
    text-align: left;
    padding: 7px 10px;
    border-bottom: 1px solid var(--border-light);
    color: var(--charcoal-light);
  }
  .letter-plant-table th {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--sage);
  }

  .letter-images-col figure {
    background: var(--warm-white);
    border: 1px solid var(--border-fine);
    margin-bottom: 22px;
    overflow: hidden;
  }
  .letter-images-col figure:last-child { margin-bottom: 0; }
  .letter-images-col img {
    width: 100%;
    display: block;
  }
  .letter-images-col figcaption {
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stone-dark);
    border-top: 1px solid var(--border-light);
  }

  .letter-nav-section {
    padding: 40px 40px 90px;
    background: var(--cream-light);
    border-top: 1px solid var(--border-light);
    margin-top: 40px;
  }
  .letter-nav-inner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 40px;
  }
  .letter-nav-inner .link-subtle { white-space: nowrap; }
  .letter-nav-center {
    display: flex;
    gap: 26px;
  }

  @media (max-width: 900px) {
    .letter-body-inner { grid-template-columns: 1fr; gap: 40px; }
    .letter-body-section { padding: 50px 24px 20px; }
    .letter-transcript { padding: 30px 24px; }
    .letter-nav-section { padding: 30px 24px 60px; }
    .letter-nav-inner { justify-content: center; text-align: center; }
  }
