  :root {
    /* Dark greens + blues, per Tiff */
    --midnight:       #0a1f3d;
    --midnight-2:     #061630;
    --midnight-3:     #030c1e;
    --forest:         #1a3d34;
    --forest-2:       #0e2a23;
    --ocean:          #184860;
    --ocean-2:        #0e2f42;
    --moss:           #2d5a4c;
    --sea-glass:      #7aa8a8;
    --sea-glass-soft: #a9c9c6;
    --gold:           #c9a35b;
    --gold-soft:      #e0c388;
    --gold-deep:      #8e6d32;
    --cream:          #f4ede0;
    --cream-dim:      #d9d1c2;
    --paper:          #ffffff;
    --ink:            #0a1f3d;
    --rule:           #2d5a4c;
    --rule-light:     #d9cfb8;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    font-weight: 300;
    color: var(--cream);
    background: var(--midnight-3);
    line-height: 1.6;
    font-size: 14px;
  }
  h1, h2, h3, h4, .display {
    font-family: 'Italiana', 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.005em;
  }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
  .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 400;
  }

  /* ==== STARFIELD OVERLAY (reusable) ==== */
  .stars {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1px 1px at 12% 14%, rgba(255,255,255,0.9), transparent 50%),
      radial-gradient(1px 1px at 78% 22%, rgba(255,255,255,0.65), transparent 50%),
      radial-gradient(1.5px 1.5px at 43% 68%, rgba(255,255,255,0.85), transparent 50%),
      radial-gradient(1px 1px at 91% 79%, rgba(255,255,255,0.55), transparent 50%),
      radial-gradient(2px 2px at 8% 86%, rgba(201,163,91,0.9), transparent 50%),
      radial-gradient(1px 1px at 34% 31%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(1.5px 1.5px at 65% 54%, rgba(255,255,255,0.75), transparent 50%),
      radial-gradient(1px 1px at 19% 48%, rgba(255,255,255,0.6), transparent 50%),
      radial-gradient(1px 1px at 54% 17%, rgba(255,255,255,0.45), transparent 50%),
      radial-gradient(1.5px 1.5px at 82% 63%, rgba(224,195,136,0.7), transparent 50%),
      radial-gradient(1px 1px at 27% 92%, rgba(255,255,255,0.7), transparent 50%),
      radial-gradient(1px 1px at 71% 89%, rgba(255,255,255,0.4), transparent 50%),
      radial-gradient(1px 1px at 95% 10%, rgba(255,255,255,0.65), transparent 50%),
      radial-gradient(1px 1px at 5% 58%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(2px 2px at 49% 40%, rgba(255,255,255,0.9), transparent 55%);
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
  }
  .stars.dense {
    background-image:
      radial-gradient(1px 1px at 7% 11%, rgba(255,255,255,0.8), transparent 50%),
      radial-gradient(1px 1px at 23% 41%, rgba(255,255,255,0.6), transparent 50%),
      radial-gradient(1.5px 1.5px at 36% 79%, rgba(255,255,255,0.85), transparent 50%),
      radial-gradient(1px 1px at 48% 23%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(1px 1px at 61% 57%, rgba(255,255,255,0.7), transparent 50%),
      radial-gradient(2px 2px at 74% 88%, rgba(201,163,91,0.9), transparent 55%),
      radial-gradient(1px 1px at 88% 32%, rgba(255,255,255,0.55), transparent 50%),
      radial-gradient(1.5px 1.5px at 94% 71%, rgba(255,255,255,0.75), transparent 50%),
      radial-gradient(1px 1px at 15% 94%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(1.5px 1.5px at 42% 6%, rgba(255,255,255,0.9), transparent 50%),
      radial-gradient(1px 1px at 67% 14%, rgba(255,255,255,0.6), transparent 50%),
      radial-gradient(1px 1px at 3% 36%, rgba(255,255,255,0.5), transparent 50%),
      radial-gradient(2px 2px at 56% 72%, rgba(224,195,136,0.7), transparent 55%),
      radial-gradient(1px 1px at 29% 63%, rgba(255,255,255,0.65), transparent 50%),
      radial-gradient(1px 1px at 81% 49%, rgba(255,255,255,0.4), transparent 50%),
      radial-gradient(1.5px 1.5px at 11% 72%, rgba(255,255,255,0.85), transparent 50%);
    background-repeat: no-repeat;
  }

  /* ==== PALMETTO silhouette (reusable) ==== */
  .palm-silhouette {
    position: absolute;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
  }
  .palm-silhouette svg { display: block; }

  /* ==== NAV ==== */
  nav.top {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 26px 40px;
    display: flex; align-items: center; justify-content: space-between;
    color: var(--cream);
    background: linear-gradient(to bottom, rgba(3,12,30,0.55), transparent);
  }
  nav.top ul {
    display: flex; gap: 40px; list-style: none;
    flex: 1; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 400;
    letter-spacing: 0.04em;
  }
  nav.top ul li { cursor: pointer; padding-bottom: 3px; border-bottom: 1px solid transparent; }
  nav.top ul li.active { border-bottom-color: var(--gold); color: var(--gold-soft); }
  .nav-logo {
    font-family: 'Italiana', serif;
    font-size: 20px; letter-spacing: 0.04em;
    min-width: 210px;
  }
  .weather {
    font-size: 12px; letter-spacing: 0.1em;
    min-width: 210px; text-align: right;
    display: flex; align-items: center; gap: 10px; justify-content: flex-end;
    color: var(--gold-soft);
  }

  /* ==== HERO: deep midnight blue with starfield + watermark ==== */
  .hero {
    height: 100vh; min-height: 720px;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    /* Photo (if present) sits on top of the gradient; gradient shows if photo missing */
    background:
      linear-gradient(180deg, rgba(3,12,30,0.4) 0%, rgba(3,12,30,0.7) 100%),
      url('/assets/images/hero.jpg') center/cover no-repeat,
      radial-gradient(ellipse at 50% 40%, #1a3d5a 0%, #0a1f3d 45%, #030c1e 100%);
    color: var(--cream);
  }
  .hero .bg-mark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Italiana', serif;
    font-size: clamp(120px, 18vw, 280px);
    color: rgba(201,163,91,0.08);
    letter-spacing: 0.01em;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    z-index: 1;
  }
  .hero .hero-content {
    position: relative; z-index: 3;
    text-align: center;
  }
  .hero h1 {
    font-family: 'Italiana', serif;
    font-size: clamp(48px, 6vw, 86px);
    color: var(--cream);
    letter-spacing: 0.005em;
    margin-bottom: 22px;
    font-weight: 400;
  }
  .hero h1 em { font-style: italic; color: var(--gold-soft); }
  .hero .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--sea-glass-soft);
    max-width: 42ch; margin: 0 auto;
  }
  .hero .moongate-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(480px, 58vw, 820px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
  }
  .hero .moongate-bg svg { display: block; width: 100%; height: auto; }
  .hero .palm-left {
    left: 2vw; bottom: 0; height: 80%;
    width: 200px;
  }
  .hero .palm-right {
    right: 2vw; bottom: 0; height: 80%;
    width: 200px;
    transform: scaleX(-1);
  }
  .hero .palm-left svg, .hero .palm-right svg {
    width: 100%; height: 100%; display: block;
  }
  .triangle-scroll {
    position: absolute;
    bottom: 48px; left: 50%; transform: translateX(-50%);
    z-index: 3;
  }

  /* ==== FULL-BLEED dark sections ==== */
  .bleed {
    height: 100vh; min-height: 640px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--cream);
  }
  /* Block 2 ocean bleed: Tiff-supplied Background.png, wired 2026-05-14 */
  .bleed.ocean {
    background:
      linear-gradient(180deg, rgba(3,12,30,0.45) 0%, rgba(3,12,30,0.7) 100%),
      url('/assets/images/block2-bg.jpg') center/cover no-repeat,
      radial-gradient(ellipse at 40% 50%, #245876 0%, #184860 50%, #0a2638 100%);
  }
  /* Forest moon-lit garden */
  .bleed.forest {
    background:
      radial-gradient(ellipse at 60% 55%, #2d6050 0%, #1a3d34 50%, #0a2018 100%);
  }
  /* Midnight stage */
  .bleed.stage-night {
    background:
      radial-gradient(ellipse at 50% 70%, #1a3d5a 0%, #0a1f3d 55%, #030c1e 100%);
  }
  /* Bay: uses photos/wedding.jpg if present (Host a Private Event) */
  .bleed.bay {
    background:
      linear-gradient(180deg, rgba(3,12,30,0.4) 0%, rgba(3,12,30,0.7) 100%),
      url('/assets/images/wedding.jpg') center/cover no-repeat,
      linear-gradient(170deg, #1a3d34 0%, #184860 60%, #0a2638 100%);
  }

  .bleed .overlay {
    position: absolute;
    color: rgba(224,195,136,0.7);
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.1em;
    border: 1px dashed rgba(201,163,91,0.35);
    padding: 8px 18px;
    top: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(3,12,30,0.4);
    z-index: 2;
  }
  .bleed-copy {
    position: relative; z-index: 3;
    text-align: center;
    max-width: 720px;
    padding: 0 40px;
  }
  .bleed-copy .eyebrow { color: var(--gold-soft); margin-bottom: 22px; display: block; }
  .bleed-copy h2 {
    font-size: clamp(42px, 5.2vw, 76px);
    color: var(--cream); margin-bottom: 22px;
    font-weight: 400;
  }
  .bleed-copy h2 em { font-style: italic; color: var(--gold-soft); }
  .bleed-copy p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 21px;
    color: var(--sea-glass-soft);
    max-width: 48ch;
    margin: 0 auto;
  }

  /* ==== MOONGATE FEATURE SECTION (now uses kissing wedding photo) ==== */
  .moongate-feature {
    background:
      linear-gradient(180deg, rgba(3,12,30,0.65) 0%, rgba(3,12,30,0.15) 35%, rgba(3,12,30,0.55) 100%),
      url('/assets/images/moongate.jpg') center/cover no-repeat,
      radial-gradient(ellipse at 50% 60%, #2d6050 0%, #1a3d34 55%, #061f17 100%);
    padding: 80px 40px 100px;
    color: var(--cream);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .moongate-feature .copy {
    position: relative; z-index: 3;
    max-width: 640px;
    margin: 0 auto;
  }
  .moongate-feature h2 {
    font-size: clamp(32px, 3.4vw, 48px);
    color: var(--cream); margin-bottom: 18px;
  }
  .moongate-feature h2 em { font-style: italic; color: var(--gold-soft); }
  .moongate-feature p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--sea-glass-soft);
    max-width: 48ch;
    margin: 0 auto;
  }
  .moongate-svg {
    width: 100%; max-width: 640px;
    margin: 48px auto 0;
    display: block;
    position: relative; z-index: 2;
  }
  .moongate-feature .eyebrow { color: var(--gold-soft); display: block; margin-bottom: 22px; }
  .moongate-feature h2 {
    font-size: clamp(44px, 5.4vw, 76px);
    color: var(--cream); margin-bottom: 22px;
    position: relative; z-index: 2;
  }
  .moongate-feature h2 em { font-style: italic; color: var(--gold-soft); }
  .moongate-feature p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--sea-glass-soft);
    max-width: 54ch;
    margin: 0 auto;
    position: relative; z-index: 2;
  }

  /* ==== PAPER intro (keeps some breathing light) ==== */
  .paper {
    background: var(--cream);
    color: var(--ink);
    padding: 140px 40px;
    position: relative;
  }
  .paper .intro {
    max-width: 820px;
    margin: 0 auto 100px;
    text-align: center;
  }
  .paper .intro .eyebrow { color: var(--forest); margin-bottom: 22px; display: block; }
  .paper .intro h2 {
    font-size: clamp(40px, 4.8vw, 64px);
    margin-bottom: 28px;
    color: var(--ink);
  }
  .paper .intro h2 em { font-style: italic; color: var(--forest); }
  .paper .intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.7;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1240px; margin: 0 auto;
  }
  .gallery-card {
    aspect-ratio: 4/5;
    position: relative;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s;
    color: var(--cream);
  }
  .gallery-card:hover { transform: translateY(-4px); }
  .gallery-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(10,31,61,0.15) 40%, rgba(3,12,30,0.9) 100%),
                url('/assets/images/tempest-2025.jpg') center/cover no-repeat,
                radial-gradient(ellipse at center, #245876 0%, #0a2638 70%);
  }
  .gallery-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(10,31,61,0.15) 40%, rgba(10,32,24,0.9) 100%),
                url('/assets/images/romeo-juliet-2025.jpg') center/cover no-repeat,
                radial-gradient(ellipse at center, #2d6050 0%, #0a2018 70%);
  }
  .gallery-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(10,31,61,0.15) 40%, rgba(3,12,30,0.9) 100%),
                url('/assets/images/venue-night.jpg') center/cover no-repeat,
                radial-gradient(ellipse at center, #1a3d5a 0%, #030c1e 70%);
  }
  .gallery-card .icon {
    position: absolute;
    top: 38%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(201,163,91,0.5);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    font-size: 22px;
  }
  .gallery-card h3 {
    font-size: 28px;
    color: var(--cream);
    margin-bottom: 6px;
    position: relative; z-index: 2;
  }
  .gallery-card .dates {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 16px;
    color: var(--gold-soft);
    margin-bottom: 14px;
    position: relative; z-index: 2;
  }
  .gallery-card .view {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 15px;
    color: var(--cream);
    position: relative; z-index: 2;
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 2px;
    align-self: flex-start;
  }

  /* ==== WHAT'S ON (midnight with starfield) ==== */
  .listings {
    background:
      radial-gradient(ellipse at 20% 30%, #122c4a 0%, #0a1f3d 50%, #030c1e 100%);
    color: var(--cream);
    padding: 140px 40px;
    position: relative; overflow: hidden;
  }
  .listings .section-head {
    text-align: center; margin-bottom: 72px;
    position: relative; z-index: 3;
  }
  .listings .section-head .eyebrow { color: var(--gold-soft); display: block; margin-bottom: 18px; }
  .listings .section-head h2 {
    font-size: clamp(44px, 5.4vw, 72px);
    color: var(--cream);
  }
  .listings .section-head h2 em { font-style: italic; color: var(--gold-soft); }
  .listing-row {
    max-width: 1080px; margin: 0 auto;
    position: relative; z-index: 3;
  }
  .listing {
    display: grid;
    grid-template-columns: 130px 1fr 180px 140px;
    gap: 32px;
    align-items: baseline;
    padding: 30px 0;
    border-top: 1px solid rgba(201,163,91,0.18);
  }
  .listing:last-child { border-bottom: 1px solid rgba(201,163,91,0.18); }
  .listing .date {
    font-family: 'Italiana', serif;
    font-size: 26px; color: var(--gold-soft);
  }
  .listing .title { font-family: 'Italiana', serif; font-size: 32px; color: var(--cream); font-weight: 400; }
  .listing .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 16px;
    color: var(--sea-glass-soft); margin-top: 4px;
  }
  .listing .category {
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--sea-glass);
  }
  .listing .cta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 17px;
    color: var(--gold-soft); text-align: right;
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 2px;
    justify-self: end;
  }
  /* Expand-to-see-rest of programme */
  .more-listings { margin: 0; padding: 0; }
  .more-listings > summary {
    list-style: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gold-soft);
    padding: 36px 0 8px;
    transition: color 0.2s;
  }
  .more-listings > summary::-webkit-details-marker { display: none; }
  .more-listings > summary::after {
    content: ' ↓';
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s;
  }
  .more-listings[open] > summary::after { transform: rotate(180deg); margin-left: 6px; }
  .more-listings[open] > summary { color: var(--cream); }
  .more-listings > summary:hover { color: var(--cream); }

  /* ==== DIRECTOR section (forest, warm) ==== */
  .director-section {
    background:
      radial-gradient(ellipse at 30% 40%, #2d5a4c 0%, #1a3d34 55%, #0a2018 100%);
    color: var(--cream);
    padding: 140px 40px;
    position: relative; overflow: hidden;
  }
  .director-section .split {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
    max-width: 1240px; margin: 0 auto;
    align-items: center;
    position: relative; z-index: 3;
  }
  .director-section .portrait {
    aspect-ratio: 4/5;
    background:
      url('/assets/images/seamus.jpg') center/cover no-repeat,
      radial-gradient(ellipse at center, #2d5a4c 0%, #0e2a23 80%);
    border: 1px solid rgba(201,163,91,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    font-size: 12px; font-style: italic; text-align: center; padding: 20px;
  }
  .director-section .eyebrow { color: var(--gold-soft); display: block; margin-bottom: 20px; }
  .director-section h2 {
    font-size: clamp(38px, 4.6vw, 60px);
    color: var(--cream); margin-bottom: 32px;
  }
  .director-section h2 em { font-style: italic; color: var(--gold-soft); }
  .director-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; line-height: 1.75;
    color: var(--sea-glass-soft);
    margin-bottom: 20px;
  }
  .director-section .sign-off {
    font-family: 'Italiana', serif;
    font-size: 26px; color: var(--cream); margin-top: 36px;
  }
  .director-section .credits {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sea-glass);
    margin-top: 10px;
  }

  /* ==== GUEST SERVICES + SUPPLIES ==== */
  .split-paper {
    background: var(--cream);
    color: var(--ink);
    padding: 140px 40px;
  }
  .split-paper .split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
    max-width: 1240px; margin: 0 auto;
    align-items: flex-start;
  }
  .split-paper .eyebrow { color: var(--forest); margin-bottom: 20px; display: block; }
  .split-paper h2 {
    font-size: clamp(36px, 4.4vw, 56px);
    color: var(--ink); margin-bottom: 28px;
  }
  .split-paper h2 em { font-style: italic; color: var(--forest); }
  .split-paper p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.75;
  }
  .supplies-list {
    list-style: none;
    border-top: 1px solid var(--rule-light);
    margin-top: 8px;
  }
  .supplies-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-light);
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
  }
  .supplies-list li span.qty {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-deep);
  }

  /* ==== RESERVE (deep blue, starfield) ==== */
  .reserve-full {
    position: relative; overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 45%, #1a3d5a 0%, #0a1f3d 55%, #030c1e 100%);
    color: var(--cream);
    padding: 180px 40px;
    text-align: center;
  }
  .reserve-full .eyebrow { color: var(--gold-soft); display: block; margin-bottom: 24px; position: relative; z-index: 3; }
  .reserve-full h2 {
    font-size: clamp(44px, 5.4vw, 76px);
    max-width: 22ch; margin: 0 auto 40px;
    color: var(--cream);
    position: relative; z-index: 3;
  }
  .reserve-full h2 em { font-style: italic; color: var(--gold-soft); }
  .reserve-full p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-style: italic;
    color: var(--sea-glass-soft);
    max-width: 60ch; margin: 0 auto 60px;
    line-height: 1.7;
    position: relative; z-index: 3;
  }
  .reserve-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; max-width: 1000px; margin: 0 auto;
    position: relative; z-index: 3;
  }
  .reserve-stat strong {
    font-family: 'Italiana', serif;
    font-size: 64px; display: block;
    color: var(--gold-soft);
  }
  .reserve-stat span {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sea-glass);
  }

  /* ==== OUR STORY (forest) ==== */
  .story {
    background:
      radial-gradient(ellipse at 50% 40%, #1a3d34 0%, #0e2a23 55%, #061f17 100%);
    color: var(--cream);
    padding: 140px 40px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .story .wrap { max-width: 820px; margin: 0 auto; position: relative; z-index: 3; }
  .story .eyebrow { color: var(--gold-soft); display: block; margin-bottom: 22px; }
  .story h2 {
    font-size: clamp(40px, 4.8vw, 64px);
    color: var(--cream);
    margin-bottom: 36px;
  }
  .story h2 em { font-style: italic; color: var(--gold-soft); }
  .story p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-style: italic;
    color: var(--sea-glass-soft);
    margin-bottom: 22px;
    line-height: 1.75;
  }

  /* ==== GET INVOLVED (cream, light section break) ==== */
  .involved {
    background: var(--cream);
    color: var(--ink);
    padding: 140px 40px;
  }
  .involved .wrap { max-width: 1240px; margin: 0 auto; }
  .involved .section-head {
    text-align: center; margin-bottom: 72px;
  }
  .involved .section-head .eyebrow { color: var(--forest); display: block; margin-bottom: 20px; }
  .involved .section-head h2 {
    font-size: clamp(40px, 4.8vw, 64px);
    color: var(--ink);
  }
  .involved .section-head h2 em { font-style: italic; color: var(--forest); }
  .involved-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
  .involved-item h3 {
    font-size: 28px; color: var(--ink);
    margin-bottom: 14px;
  }
  .involved-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.65;
  }
  .involved-item .more {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--forest);
    font-size: 15px;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 2px;
  }

  /* ==== PARTNERS ==== */
  .partners {
    background: var(--cream);
    padding: 100px 40px;
    text-align: center;
    border-top: 1px solid var(--rule-light);
  }
  .partners .eyebrow { color: var(--forest); display: block; margin-bottom: 14px; }
  .partners h3 {
    font-size: 36px; margin-bottom: 50px;
    color: var(--ink);
  }
  .partner-row {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 64px; max-width: 1240px; margin: 0 auto;
  }
  .partner-logo {
    font-family: 'Italiana', serif;
    font-size: 22px; color: var(--gold-deep);
    padding: 10px 0;
  }

  /* ==== PREV / NEXT (parent-site pattern) ==== */
  .prevnext {
    background: var(--cream);
    padding: 64px 40px;
    border-top: 1px solid var(--rule-light);
  }
  .prevnext .wrap {
    max-width: 1240px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1px 1fr;
    gap: 0;
  }
  .prevnext .cell { padding: 24px 40px; cursor: pointer; }
  .prevnext .cell:first-child { text-align: right; }
  .prevnext .cell:last-child { text-align: left; }
  .prevnext .divider { background: var(--rule-light); height: 80px; align-self: center; }
  .prevnext .cell small {
    display: block;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold-deep); margin-bottom: 10px;
  }
  .prevnext .cell .link {
    font-family: 'Italiana', serif;
    font-size: 34px; color: var(--ink);
  }

  /* ==== FOOTER (deepest midnight) ==== */
  footer {
    background: linear-gradient(180deg, #0a1f3d 0%, #030c1e 100%);
    color: var(--sea-glass-soft);
    padding: 100px 40px 40px;
    position: relative; overflow: hidden;
  }
  .foot-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1240px; margin: 0 auto 60px;
    position: relative; z-index: 3;
  }
  footer .brand .mark {
    font-family: 'Italiana', serif;
    font-size: 30px; color: var(--cream);
    margin-bottom: 16px;
  }
  footer .brand p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-style: italic;
    max-width: 32ch;
    color: var(--sea-glass-soft);
  }
  footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold-soft); margin-bottom: 20px;
    font-weight: 500;
  }
  footer ul { list-style: none; }
  footer ul li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; margin-bottom: 10px;
    color: var(--sea-glass-soft);
  }
  .foot-legal {
    max-width: 1240px; margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(122,168,168,0.2);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sea-glass);
    position: relative; z-index: 3;
  }

  .mockup-tag {
    position: fixed; bottom: 20px; right: 20px;
    background: var(--gold); color: var(--midnight-3);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    padding: 9px 16px;
    z-index: 100;
  }

  @media (max-width: 900px) {
    nav.top ul { display: none; }
    nav.top .weather { display: none; }
    .gallery { grid-template-columns: 1fr; }
    .listing { grid-template-columns: 1fr; gap: 6px; }
    .listing .cta { text-align: left; justify-self: start; }
    .director-section .split, .split-paper .split { grid-template-columns: 1fr; gap: 48px; }
    .reserve-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
    .involved-grid { grid-template-columns: 1fr 1fr; }
    .prevnext .wrap { grid-template-columns: 1fr; }
    .prevnext .divider { display: none; }
    .prevnext .cell, .prevnext .cell:first-child, .prevnext .cell:last-child { text-align: center; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .hero .palm-left, .hero .palm-right { display: none; }
  }

/* ============ SHARED SUB-PAGE STYLES ============ */
/* Shared styles for Direction D sub-pages.
   Home page (direction-d-stars-palmettos.html / index.html) has its own inline CSS: this file is for sub-pages. */

:root {
  --midnight: #0a1f3d;
  --midnight-2: #061630;
  --midnight-3: #030c1e;
  --forest: #1a3d34;
  --forest-2: #0e2a23;
  --ocean: #184860;
  --moss: #2d5a4c;
  --sea-glass: #7aa8a8;
  --sea-glass-soft: #a9c9c6;
  --gold: #c9a35b;
  --gold-soft: #e0c388;
  --gold-deep: #8e6d32;
  --cream: #f4ede0;
  --cream-dim: #d9d1c2;
  --paper: #ffffff;
  --rule: #2d5a4c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--cream);
  background: var(--midnight-3);
  line-height: 1.6;
  font-size: 14px;
}
h1, h2, h3, h4 {
  font-family: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
em { font-style: italic; color: var(--gold-soft); }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-soft);
}

/* === STARFIELD overlay === */
.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 14%, rgba(255,255,255,0.9), transparent 50%),
    radial-gradient(1px 1px at 78% 22%, rgba(255,255,255,0.65), transparent 50%),
    radial-gradient(1.5px 1.5px at 43% 68%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 91% 79%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(2px 2px at 8% 86%, rgba(201,163,91,0.9), transparent 50%),
    radial-gradient(1px 1px at 34% 31%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 65% 54%, rgba(255,255,255,0.75), transparent 50%),
    radial-gradient(1px 1px at 19% 48%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 54% 17%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1.5px 1.5px at 82% 63%, rgba(224,195,136,0.7), transparent 50%);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* === NAV === */
nav.top {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(3,12,30,0.85), rgba(3,12,30,0.5));
  backdrop-filter: blur(8px);
}
nav.top .nav-logo {
  font-family: 'Italiana', serif;
  font-size: 20px; letter-spacing: 0.04em;
}
nav.top ul {
  display: flex; gap: 32px; list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 400; letter-spacing: 0.04em;
}
nav.top ul a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
nav.top ul a:hover { color: var(--gold-soft); }
nav.top ul a.active {
  border-bottom-color: var(--gold);
  color: var(--gold-soft);
}

/* === PAGE HERO (slim, gradient bg, no full photo) === */
.page-hero {
  padding: 180px 40px 100px;
  text-align: center;
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3,12,30,0.4) 0%, rgba(3,12,30,0.85) 100%),
    radial-gradient(ellipse at 50% 30%, #1a3d5a 0%, #0a1f3d 50%, #030c1e 100%);
}
.page-hero .eyebrow { display: block; margin-bottom: 18px; }
.page-hero h1 {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.page-hero p.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--sea-glass-soft);
  max-width: 56ch;
  margin: 0 auto;
  position: relative; z-index: 2;
}

/* === SECTIONS === */
.section {
  padding: 100px 40px;
  position: relative;
}
.section.dark { background: var(--midnight-3); }
.section.forest { background: radial-gradient(ellipse at 50% 50%, var(--moss) 0%, var(--forest) 50%, var(--forest-2) 100%); }
.section.ocean { background: radial-gradient(ellipse at 50% 50%, var(--ocean) 0%, var(--midnight) 60%, var(--midnight-3) 100%); }

/* Cream body block: light background, dark serif text: for breathing room between dark sections */
.section.cream {
  background: var(--cream);
  color: #2b2926;
}
.section.cream h2 { color: #2b2926; }
.section.cream h3 { color: #2b2926; }
.section.cream p {
  color: #433d3d;
}
.section.cream em { color: var(--gold-deep); }
.section.cream .eyebrow { color: var(--gold-deep); }
.section.cream a.cta {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.section.cream a.cta:hover { color: #2b2926; border-bottom-color: #2b2926; }
.section.cream .stats .stat strong { color: var(--gold-deep); }
.section.cream .stats .stat span { color: #6a6258; }
.section.cream .supplies-list { border-top-color: rgba(142,109,50,0.35); }
.section.cream .supplies-list li {
  color: #2b2926;
  border-bottom-color: rgba(142,109,50,0.22);
}
.section.cream .supplies-list li span.qty { color: var(--gold-deep); }
.section.cream .listing { border-top-color: rgba(142,109,50,0.22); }
.section.cream .listing:last-child { border-bottom-color: rgba(142,109,50,0.22); }
.section.cream .listing .date { color: var(--gold-deep); }
.section.cream .listing .title { color: #2b2926; }
.section.cream .listing .sub { color: #6a6258; }
.section.cream .listing .category { color: var(--gold-deep); }
.section.cream .listing .cta-link {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.section.cream .gallery-grid .slot {
  background: linear-gradient(135deg, #e6ddcc 0%, #d4c8af 100%);
  border-color: rgba(142,109,50,0.25);
  color: var(--gold-deep);
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.section h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--cream);
  position: relative; z-index: 2;
}
.section p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--sea-glass-soft);
  margin-bottom: 18px;
  line-height: 1.75;
  position: relative; z-index: 2;
}
.section .eyebrow { display: block; margin-bottom: 18px; }
.section .wrap { position: relative; z-index: 2; }

/* === LINKS / CTAS === */
a.cta {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  margin-top: 8px;
}
a.cta:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* === VIDEO EMBED === */
.video-embed {
  position: relative;
  max-width: 960px;
  margin: 40px auto 0;
  aspect-ratio: 16/9;
  border: 1px solid rgba(201,163,91,0.25);
  background: var(--midnight-2);
}
.video-embed iframe {
  width: 100%; height: 100%; border: 0;
}

/* === IMAGE GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.gallery-grid .slot {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--forest) 0%, var(--midnight-3) 80%);
  border: 1px solid rgba(201,163,91,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(224,195,136,0.5);
  font-style: italic;
  font-size: 12px;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  padding: 16px;
}

/* === SUPPLIES LIST === */
.supplies-list {
  list-style: none;
  max-width: 720px;
  margin: 28px auto 0;
  border-top: 1px solid rgba(201,163,91,0.25);
  position: relative; z-index: 2;
}
.supplies-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,163,91,0.18);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--cream);
}
.supplies-list li span.qty {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft);
}

/* === PROGRAMME LISTING === */
.listing-row { max-width: 1080px; margin: 0 auto; }
.listing {
  display: grid;
  grid-template-columns: 130px 1fr 180px 140px;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid rgba(201,163,91,0.18);
}
.listing:last-child { border-bottom: 1px solid rgba(201,163,91,0.18); }
.listing .date { font-family: 'Italiana', serif; font-size: 24px; color: var(--gold-soft); }
.listing .title { font-family: 'Italiana', serif; font-size: 28px; color: var(--cream); }
.listing .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px;
  color: var(--sea-glass-soft); margin-top: 4px;
}
.listing .category {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sea-glass);
}
.listing .cta-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: var(--gold-soft);
  text-align: right;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  justify-self: end;
}

/* === STATS BLOCK === */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  position: relative; z-index: 2;
}
.stats .stat strong {
  font-family: 'Italiana', serif;
  font-size: 56px; display: block;
  color: var(--gold-soft);
}
.stats .stat span {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sea-glass);
}

/* === CONTACT BLOCK === */
.contact-block {
  text-align: center;
  max-width: 600px; margin: 0 auto;
  padding: 60px 0;
  position: relative; z-index: 2;
}
.contact-block h2 { margin-bottom: 14px; }
.contact-block .contact-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--cream);
  margin: 18px 0;
}
.contact-block .contact-line a { border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; }

/* === FOOTER === */
footer {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-3) 100%);
  color: var(--sea-glass-soft);
  padding: 80px 40px 40px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1240px; margin: 0 auto 48px;
}
footer .brand .mark {
  font-family: 'Italiana', serif;
  font-size: 28px; color: var(--cream);
  margin-bottom: 14px;
}
footer .brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic;
  max-width: 32ch;
  color: var(--sea-glass-soft);
}
footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 18px;
  font-weight: 500;
}
footer ul { list-style: none; }
footer ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; margin-bottom: 8px;
  color: var(--sea-glass-soft);
}
footer ul a:hover { color: var(--cream); }
.foot-legal {
  max-width: 1240px; margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(122,168,168,0.2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sea-glass);
}

@media (max-width: 900px) {
  nav.top ul { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .listing { grid-template-columns: 1fr; gap: 6px; }
  .listing .cta-link { text-align: left; justify-self: start; }
  .stats { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Koenig editor content classes (Ghost)
   Required by gscan. Used when Tiff inserts wide / full-bleed
   images, galleries, embeds, or bookmark cards inside a post or
   page using the Ghost editor.
   --------------------------------------------------------------- */
.post-content,
.kg-card-markdown {
  max-width: 760px;
  margin: 0 auto;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 22px;
  color: var(--midnight);
}

.post-content h2,
.post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin: 36px 0 14px;
  color: var(--midnight);
}

.post-content img,
.post-content figure {
  max-width: 100%;
  height: auto;
}

.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-wide img,
.kg-width-wide figure,
.kg-width-wide .kg-image {
  width: 100%;
  height: auto;
}

.kg-width-full {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: none;
}

.kg-width-full img,
.kg-width-full figure,
.kg-width-full .kg-image {
  width: 100vw;
  max-width: 100vw;
  height: auto;
}

.kg-image-card {
  margin: 28px 0;
}

.kg-image-card figcaption {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea-glass);
  text-align: center;
  margin-top: 10px;
}

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  margin: 28px 0;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}

.kg-embed-card,
.kg-bookmark-card,
.kg-video-card,
.kg-audio-card,
.kg-file-card {
  margin: 28px auto;
  max-width: 100%;
}

.kg-bookmark-container {
  display: flex;
  border: 1px solid rgba(122,168,168,0.25);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--midnight);
}

.kg-bookmark-content {
  padding: 18px;
  flex: 1;
}

.kg-bookmark-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 6px;
}

.kg-bookmark-description {
  font-size: 14px;
  color: var(--sea-glass);
  margin-bottom: 10px;
}

.kg-bookmark-thumbnail img {
  display: block;
  width: 200px;
  height: 100%;
  object-fit: cover;
}

/* Tighten Koenig content on smaller screens */
@media (max-width: 700px) {
  .kg-width-wide,
  .kg-width-full {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .kg-bookmark-container { flex-direction: column-reverse; }
  .kg-bookmark-thumbnail img { width: 100%; height: 180px; }
}
