
    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:       #fafaf8;
      --cream:       #f3f0eb;
      --black:       #1c1c1c;
      --grey:        #6b6b6b;
      --light-grey:  #a0a0a0;
      --border:      #e0ddd8;
      --green:       #3d5a4f;
      --green-mid:   #4f7a6a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      background: var(--white);
      color: var(--black);
      line-height: 1.85;
    }

    /* ── Typography ── */
    h1, h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      letter-spacing: 0.01em;
    }
    h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1.12; }
    h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
    p  { font-size: 0.93rem; color: var(--grey); margin-bottom: 1rem; line-height: 1.9; }

    /* ── Layout ── */
    .container { max-width: 920px; margin: 0 auto; padding: 0 2.5rem; }
    section { padding: 8rem 0; }

    /* ── Section label ── */
    .label {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 1.25rem;
    }

    /* ── Rule ── */
    .rule { width: 32px; height: 1px; background: var(--border); margin: 2rem 0; }

    /* ── Navigation ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      padding: 1.25rem 0;
      transition: background 0.35s, border-color 0.35s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(250, 250, 248, 0.96);
      backdrop-filter: blur(10px);
      border-bottom-color: var(--border);
    }
    nav .container { display: flex; justify-content: space-between; align-items: center; }
    .nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo {
      height: 48px;
      width: auto;
      display: block;
      /* On dark hero: white bg blends with a subtle pill */
      background: rgba(255,255,255,0.12);
      border-radius: 4px;
      padding: 4px 8px;
      transition: background 0.35s;
    }
    nav.scrolled .nav-logo {
      background: transparent;
      padding: 0;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.6);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.2s;
    }
    nav.scrolled .nav-links a { color: var(--light-grey); }
    .nav-links a:hover { color: var(--black); }
    @media (max-width: 640px) { .nav-links { display: none; } }

    /* ── Hero ── */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(8,12,10,0.55) 0%, rgba(8,12,10,0.15) 55%, rgba(8,12,10,0.4) 100%),
        url('website_background.jpg') center/cover no-repeat;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 0 2rem;
    }
    .hero-inner { max-width: 680px; }
    .hero-eyebrow {
      display: block;
      color: rgba(255,255,255,0.45);
      font-size: 0.62rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      font-weight: 400;
      margin-bottom: 3rem;
    }
    .hero-line {
      width: 1px; height: 64px;
      background: rgba(255,255,255,0.25);
      margin: 0 auto 3rem;
    }
    .hero-inner h1 {
      color: #fff;
      font-style: italic;
      margin-bottom: 2rem;
    }
    .hero-inner p {
      color: rgba(255,255,255,0.6);
      font-size: 0.88rem;
      max-width: 460px;
      margin: 0 auto 3.5rem;
      letter-spacing: 0.03em;
    }
    .btn {
      display: inline-block;
      padding: 0.9rem 2.6rem;
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 400;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }
    .btn-dark {
      border-color: var(--black);
      color: var(--black);
    }
    .btn-dark:hover { background: var(--black); color: var(--white); }
    .btn-filled {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }
    .btn-filled:hover { background: var(--green-mid); border-color: var(--green-mid); }

    /* ── About ── */
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
    @media (max-width: 680px) { .two-col { grid-template-columns: 1fr; gap: 3.5rem; } }

    /* ── Quotes ── */
    .zen-quote {
      padding: 1.75rem 0;
      border-top: 1px solid var(--border);
    }
    .zen-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
      font-weight: 300;
      color: var(--black);
      line-height: 1.6;
      margin-bottom: 0.6rem;
    }
    .zen-quote cite {
      font-size: 0.65rem;
      color: var(--light-grey);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-style: normal;
    }

    /* ── Schedule ── */
    .schedule-list { list-style: none; margin-top: 2.5rem; }
    .schedule-list li {
      display: flex; gap: 2rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--border);
      align-items: baseline;
    }
    .schedule-list .time {
      min-width: 145px;
      font-size: 0.7rem;
      color: var(--green);
      letter-spacing: 0.05em;
      font-weight: 400;
      flex-shrink: 0;
    }
    .schedule-list .activity { font-size: 0.88rem; color: var(--grey); }
    .silence-mark {
      display: inline-block;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--light-grey);
      border: 1px solid var(--border);
      padding: 0.12rem 0.5rem;
      margin-left: 0.75rem;
      vertical-align: middle;
    }

    /* ── Silence ── */
    .silence-hours { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 2rem 0; }
    .silence-hour {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: var(--black);
      border: 1px solid var(--border);
      padding: 0.65rem 1.3rem;
      font-weight: 400;
    }
    .silence-rules { list-style: none; margin-top: 0.5rem; }
    .silence-rules li {
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.88rem;
      color: var(--grey);
    }
    .silence-rules li:first-child { border-top: 1px solid var(--border); }

    /* ── Guidelines grid ── */
    .guidelines-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
      margin-top: 2.5rem;
    }
    @media (max-width: 640px) { .guidelines-grid { grid-template-columns: 1fr; } }
    .guideline-card {
      padding: 2rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .guideline-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--border);
      line-height: 1;
      margin-bottom: 0.75rem;
    }
    .guideline-card p { font-size: 0.86rem; margin: 0; }
    .guideline-card.featured { background: var(--green); border-color: var(--green); }
    .guideline-card.featured .guideline-num { color: rgba(255,255,255,0.18); }
    .guideline-card.featured p { color: rgba(255,255,255,0.75); }

    /* ── Features (App) ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
      margin-top: 2.5rem;
    }
    .feature-card {
      padding: 2rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .feature-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 0.6rem;
    }
    .feature-card p { font-size: 0.86rem; margin: 0; }

    /* ── Status table ── */
    .status-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
    .status-table th {
      text-align: left;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--light-grey);
      padding: 0.8rem 1rem;
      border-bottom: 1px solid var(--border);
      font-weight: 400;
    }
    .status-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); color: var(--grey); font-size: 0.88rem; }
    .status-table tr:last-child td { border-bottom: none; }
    .badge {
      display: inline-block;
      font-size: 0.62rem;
      padding: 0.22rem 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 400;
    }
    .badge-submitted { border: 1px solid #c7d8f5; color: #3b6abf; background: #f0f5fd; }
    .badge-review    { border: 1px solid #e5d49a; color: #8a6820; background: #fdf8ec; }
    .badge-approved  { border: 1px solid #a5d5b2; color: #2a7248; background: #f0faf4; }
    .badge-rejected  { border: 1px solid #efbebe; color: #b03030; background: #fdf0f0; }
    .badge-cancelled { border: 1px solid var(--border); color: var(--light-grey); }

    /* ── Location ── */
    .location-item {
      display: flex; gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }
    .location-item:first-of-type { border-top: 1px solid var(--border); }
    .location-icon { font-size: 0.9rem; line-height: 1.9; width: 1.5rem; flex-shrink: 0; text-align: center; }
    .location-item p { margin: 0; font-size: 0.88rem; }

    /* ── For Whom ── */
    .forwhom-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .forwhom-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 2rem 1.8rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .forwhom-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    }
    .forwhom-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--green);
      opacity: 0.55;
      margin-bottom: 0.75rem;
      line-height: 1;
    }
    .forwhom-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.25rem;
      color: var(--black);
      margin-bottom: 0.6rem;
      letter-spacing: 0.01em;
      line-height: 1.3;
    }
    .forwhom-card p {
      margin: 0;
      font-size: 0.86rem;
      line-height: 1.7;
    }

    /* ── Apply Form ── */
    .apply-form { max-width: 640px; margin: 0 auto; }
    .form-row { margin-bottom: 1.5rem; }
    .form-row label {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--black);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 2px;
      transition: border-color 0.2s;
    }
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: var(--green);
    }
    .form-row textarea { resize: vertical; line-height: 1.6; }
    button.btn { cursor: pointer; font-family: inherit; }

    /* ── Illustrated view of the valley ── */
    .valley-figure { margin: 4.5rem 0 0; text-align: center; }
    .valley-figure img {
      width: 100%;
      max-width: 860px;
      height: auto;
      display: block;
      margin: 0 auto;
      /* The watercolour is painted on white paper — multiply drops the paper
         and lets its feathered edge dissolve into the page. */
      mix-blend-mode: multiply;
    }

    /* ── Photo Gallery ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .gallery-tile {
      aspect-ratio: 4 / 3;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-tile:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .gallery-tile img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.45s ease;
    }
    .gallery-tile:hover img { transform: scale(1.04); }
    .gallery-placeholder {
      color: var(--light-grey);
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    /* ── Lightbox ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8,12,10,0.92);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 92vw;
      max-height: 88vh;
      object-fit: contain;
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }
    .lightbox-close {
      position: absolute;
      top: 1.2rem; right: 1.8rem;
      color: rgba(255,255,255,0.85);
      font-size: 2.2rem;
      cursor: pointer;
      line-height: 1;
      font-weight: 300;
      transition: color 0.2s;
    }
    .lightbox-close:hover { color: #fff; }

    /* ── Calendar ── */
    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .calendar-month {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 1.5rem;
    }
    .calendar-month h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }
    .calendar-event {
      padding: 0.65rem 0;
      border-top: 1px solid var(--border);
      font-size: 0.82rem;
      color: var(--grey);
      line-height: 1.5;
    }
    .calendar-event:last-child { padding-bottom: 0; }
    .calendar-event .ev-tag {
      display: inline-block;
      font-size: 0.58rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 0.15rem 0.55rem;
      margin-right: 0.5rem;
      vertical-align: middle;
    }
    .ev-cycling { background: var(--green); color: #fff; }
    .ev-fullmoon { background: var(--cream); color: var(--green); border: 1px solid var(--border); }
    .ev-newmoon { background: #1c1c1c; color: rgba(255,255,255,0.82); border: 1px solid #1c1c1c; }
    .calendar-legend {
      display: flex; gap: 1rem; flex-wrap: wrap;
      margin-top: 1.5rem; font-size: 0.75rem; color: var(--grey);
    }
    .calendar-legend .ev-tag { margin-right: 0.4rem; }

    .cycling-note {
      margin-top: 1.75rem;
      padding: 1.25rem 1.5rem;
      background: var(--white);
      border-left: 2px solid var(--green);
    }
    .cycling-note p {
      margin: 0;
      font-size: 0.88rem;
      color: var(--grey);
    }
    .cycling-note a {
      color: var(--green);
      text-decoration: none;
      border-bottom: 1px solid var(--green-mid);
      font-weight: 400;
    }
    .cycling-note a:hover { color: var(--black); border-bottom-color: var(--black); }

    /* ── Contribution ── */
    .contribution-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .contribution-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 2rem 1.8rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .contribution-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    }
    .contribution-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--green);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .contribution-unit {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--light-grey);
      margin-bottom: 1.25rem;
    }
    .contribution-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.2rem;
      color: var(--black);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .contribution-card p { margin: 0; font-size: 0.86rem; line-height: 1.7; }

    /* ── Practical Matters ── */
    .practical-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
      margin-top: 2.5rem;
    }
    .practical-card {
      padding: 2rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .practical-icon {
      font-size: 1.4rem;
      color: var(--green);
      opacity: 0.6;
      line-height: 1;
      margin-bottom: 0.9rem;
    }
    .practical-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.2rem;
      color: var(--black);
      margin-bottom: 0.5rem;
    }
    .practical-card p { margin: 0; font-size: 0.86rem; line-height: 1.7; }

    /* ── Footer ── */
    footer {
      background: #111312;
      color: rgba(255,255,255,0.28);
      padding: 4.5rem 0;
      text-align: center;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      font-size: 1.05rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .footer-links {
      display: flex; gap: 2.5rem;
      justify-content: center;
      list-style: none;
      margin: 2rem 0 1.5rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: rgba(255,255,255,0.28);
      text-decoration: none;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.65); }
    footer p { font-size: 0.72rem; }

    /* ── Map embed ── */
    .map-embed {
      width: 100%;
      border: 1px solid var(--border);
      margin-top: 2.5rem;
    }
    .map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }
    .map-links { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.25rem; }
    .map-links a {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: var(--green);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }
    .map-links a:hover { color: var(--black); border-bottom-color: var(--black); }

    /* ── Sub-page hero (Sightseeing / Birds) ── */
    .subpage-hero {
      padding: 9rem 0 4rem;
      background: var(--cream);
      text-align: center;
    }
    .subpage-hero .label { display: block; margin-bottom: 1rem; }
    .subpage-hero p { max-width: 520px; margin: 0 auto; }
    .back-link {
      display: inline-block;
      margin-top: 1.5rem;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--light-grey);
      text-decoration: none;
    }
    .back-link:hover { color: var(--green); }

    /* ── Sight / Bird cards ── */
    .sight-grid, .bird-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .sight-card, .bird-card {
      background: var(--white);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .sight-card:hover, .bird-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    }
    .sight-photo, .bird-photo {
      aspect-ratio: 4 / 3;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .sight-photo img, .bird-photo img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .sight-photo .gallery-placeholder, .bird-photo .gallery-placeholder {
      text-align: center; padding: 0 1rem;
    }
    .sight-card-body, .bird-card-body { padding: 1.5rem 1.6rem; }
    .sight-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      color: var(--light-grey);
      margin-bottom: 0.35rem;
    }
    .sight-card h4, .bird-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.2rem;
      color: var(--black);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .bird-card .bird-latin {
      display: block;
      font-style: italic;
      font-size: 0.72rem;
      color: var(--light-grey);
      margin-bottom: 0.6rem;
    }
    .sight-card p, .bird-card p { margin: 0 0 0.9rem; font-size: 0.85rem; }
    .sight-card a.map-link, .bird-card .bird-tag {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .sight-card a.map-link {
      color: var(--green);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }
    .sight-card a.map-link:hover { color: var(--black); border-bottom-color: var(--black); }
    .bird-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
    .bird-tag {
      display: inline-block;
      color: var(--green);
      border: 1px solid var(--border);
      padding: 0.15rem 0.55rem;
    }

    /* ── Form warning ── */
    .form-warning {
      display: none;
      margin-top: 0.75rem;
      padding: 0.85rem 1rem;
      background: #fdf8ec;
      border: 1px solid #e5d49a;
      color: #8a6820;
      font-size: 0.82rem;
      line-height: 1.6;
    }
    .form-warning.show { display: block; }
    .ev-ecoprint { background: #7a5230; color: #fff; }

    /* ── Testimonials (auto-scrolling) ── */
    .testimonial-marquee {
      margin-top: 2.5rem;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
              mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    }
    .testimonial-track {
      display: flex;
      gap: 1.5rem;
      width: max-content;
      animation: testimonial-scroll 60s linear infinite;
    }
    .testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }
    @keyframes testimonial-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .testimonial-card {
      flex: 0 0 auto;
      width: 340px;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 2rem 1.8rem;
    }
    .testimonial-card.has-image { padding: 0 0 1.5rem; overflow: hidden; }
    .testimonial-card .testimonial-img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      display: block;
      margin-bottom: 1.25rem;
    }
    .testimonial-card.has-image p.quote,
    .testimonial-card.has-image .attribution { padding: 0 1.8rem; }
    .testimonial-card p.quote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--black);
      line-height: 1.65;
      margin-bottom: 1.25rem;
    }
    .testimonial-card .attribution {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--light-grey);
    }
    @media (prefers-reduced-motion: reduce) {
      .testimonial-track { animation: none; overflow-x: auto; }
    }

