
  :root {
    --paper: #F4EFE6;
    --paper-warm: #EDE6D8;
    --ink: #1F1B17;
    --ink-soft: #3A332C;
    --patina: #6F9683;
    --patina-deep: #4E7160;
    --copper: #8C4A2B;
    --copper-light: #B8714A;
    --rule: rgba(31, 27, 23, 0.14);
    --display: 'Fraunces', 'Times New Roman', serif;
    --body: 'Cormorant Garamond', 'Georgia', serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;
    --measure: 36rem;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--patina); color: var(--paper); }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .farm-link {
    color: var(--copper);
    text-decoration: underline;
    text-underline-offset: 0.15em;
  }
  .farm-link:hover { opacity: 0.75; }

  /* ---- NAVIGATION ---- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, mix-blend-mode 0.25s ease;
  }

  /* Homepage hero nav — cream text, larger type; no background bar */
  .nav--hero {
    mix-blend-mode: normal;
    color: var(--paper);
    background: transparent;
    border-bottom: none;
    box-shadow: none;
  }
  .nav--hero .nav-mark {
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    color: var(--paper);
    text-shadow: 0 1px 3px rgba(31, 27, 23, 0.45);
  }
  .nav--hero .nav-list {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .nav--hero .nav-list a,
  .nav--hero .nav-hamburger {
    color: var(--paper);
    text-shadow: 0 1px 2px rgba(140, 74, 43, 0.75);
  }
  .nav--hero .nav-hamburger .bar {
    filter: drop-shadow(0 1px 2px rgba(107, 53, 32, 0.85));
  }
  .nav--hero.scrolled {
    mix-blend-mode: difference;
    color: var(--paper);
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .nav--hero.scrolled .nav-mark,
  .nav--hero.scrolled .nav-list a,
  .nav--hero.scrolled .nav-hamburger {
    color: var(--paper);
    text-shadow: none;
  }
  .nav--hero.scrolled .nav-hamburger .bar {
    filter: none;
  }

  /* Inner hero pages — cream wash over photography */
  .nav--difference {
    mix-blend-mode: normal;
    color: var(--ink);
    background: transparent;
    border-bottom: none;
  }
  .nav--difference:not(.scrolled)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(244, 239, 230, 0.9) 0%,
      rgba(244, 239, 230, 0.55) 70%,
      transparent 100%
    );
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.25s ease;
  }
  .nav--difference:not(.scrolled) .nav-mark,
  .nav--difference:not(.scrolled) .nav-list a,
  .nav--difference:not(.scrolled) .nav-hamburger {
    color: var(--ink);
    text-shadow: none;
  }
  .nav--difference:not(.scrolled) .nav-hamburger .bar {
    filter: none;
  }
  .nav--difference.scrolled {
    mix-blend-mode: normal;
    color: var(--ink);
    background: rgba(244, 239, 230, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  .nav--difference.scrolled::before {
    opacity: 0;
  }
  .nav--difference.scrolled .nav-mark,
  .nav--difference.scrolled .nav-list a,
  .nav--difference.scrolled .nav-hamburger {
    color: var(--ink);
    text-shadow: none;
  }
  .nav--difference.scrolled .nav-hamburger .bar {
    filter: none;
  }

  /* Ink variant — inquire */
  .nav--ink {
    background: transparent;
    border-bottom: none;
  }
  .nav--ink:not(.scrolled) .nav-mark {
    color: var(--paper);
    text-shadow: 0 1px 3px rgba(31, 27, 23, 0.45);
  }
  .nav--ink:not(.scrolled) .nav-list a {
    color: var(--paper);
    text-shadow: 0 1px 3px rgba(31, 27, 23, 0.45);
  }
  .nav--ink:not(.scrolled) .nav-hamburger {
    color: var(--paper);
  }
  .nav--ink:not(.scrolled) .nav-hamburger .bar {
    filter: drop-shadow(0 1px 2px rgba(107, 53, 32, 0.85));
  }
  .nav--ink.scrolled {
    background: rgba(244, 239, 230, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  .nav--ink.scrolled .nav-mark {
    color: var(--ink);
    text-shadow: none;
  }
  .nav--ink.scrolled .nav-list a {
    color: var(--ink-soft);
    text-shadow: none;
  }
  .nav--ink.scrolled .nav-hamburger {
    color: var(--ink);
  }
  .nav--ink.scrolled .nav-hamburger .bar {
    filter: none;
  }

  /* Solid variant — article pages */
  .nav--solid {
    mix-blend-mode: normal;
    color: var(--ink);
    background: rgba(244, 239, 230, 0.97);
    border-bottom: 1px solid var(--rule);
  }
  .nav-mark {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
  }
  .nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .nav-list a { position: relative; padding-bottom: 2px; transition: opacity 0.2s; }
  .nav-list a:hover { opacity: 0.6; }
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 201;
    color: inherit;
  }
  .nav-hamburger .bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  .nav-hamburger.is-open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.is-open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.is-open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }
  .hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(31,27,23,0.25) 0%,
      rgba(31,27,23,0.18) 30%,
      rgba(31,27,23,0.60) 70%,
      rgba(31,27,23,0.92) 100%);
    z-index: 1;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: contrast(1.05) brightness(0.90) sepia(0.08);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2.5rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-eyebrow {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 2rem;
    animation: fadeUp 1.4s ease-out 0.2s both;
  }
  .hero-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    animation: fadeUp 1.4s ease-out 0.4s both;
    font-variation-settings: "opsz" 144;
    max-width: 52rem;
  }
  .hero-sub {
    font-family: var(--body);
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    max-width: 44rem;
    opacity: 0.90;
    animation: fadeUp 1.4s ease-out 0.6s both;
    margin-bottom: 2.5rem;
  }
  .hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeUp 1.4s ease-out 0.8s both;
  }
  .btn-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--copper);
    color: var(--paper);
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    text-decoration: none;
  }
  .btn-primary:hover { background: #6B3520; }
  .btn-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(244,239,230,0.55);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    text-decoration: none;
  }
  .btn-secondary:hover { border-color: var(--paper); background: rgba(244,239,230,0.1); }
  .hero-caption {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 2;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.5;
    max-width: 22rem;
    text-align: right;
    line-height: 1.55;
  }

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

  /* ---- SECTIONS (shared) ---- */
  section { position: relative; }
  .section-eyebrow {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--patina-deep);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-eyebrow::before {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: var(--patina-deep);
    flex-shrink: 0;
  }

  /* ---- MEDIA FORTHCOMING ---- */
  .media-forthcoming {
    aspect-ratio: 4/3;
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--copper);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
  }
  .media-forthcoming-eyebrow {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.5rem;
  }
  .media-forthcoming-detail {
    font-family: var(--body);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .media-forthcoming--dark {
    background: rgba(244, 239, 230, 0.05);
    border-color: rgba(244, 239, 230, 0.12);
    border-left-color: var(--patina);
  }
  .media-forthcoming--dark .media-forthcoming-eyebrow {
    color: var(--patina);
  }
  .media-forthcoming--dark .media-forthcoming-detail {
    color: rgba(244, 239, 230, 0.55);
  }
  .media-forthcoming--map {
    aspect-ratio: auto;
    min-height: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
  }

  /* ---- FOOTER ---- */
  footer {
    background: var(--ink);
    color: var(--paper);
    padding: 6rem 2.5rem 2.5rem;
    border-top: 1px solid rgba(244,239,230,0.1);
  }
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(244,239,230,0.15);
  }
  .footer-mark {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .footer-tagline {
    font-family: var(--body);
    font-size: 1rem;
    font-style: italic;
    color: rgba(244,239,230,0.65);
    max-width: 22rem;
    line-height: 1.5;
  }
  .footer-col h4 {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--patina);
    margin-bottom: 1.25rem;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; font-size: 1rem; line-height: 1.9; }
  .footer-col a { color: rgba(244,239,230,0.8); transition: color 0.2s; }
  .footer-col a:hover { color: var(--paper); }
  .footer-acknowledgment {
    margin-top: 3rem;
    font-family: var(--body);
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(244,239,230,0.55);
    max-width: 50rem;
    line-height: 1.6;
  }
  .footer-bottom {
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(244,239,230,0.45);
  }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 1280px) {
    .nav { padding: 1.75rem 1.5rem; }
    .nav-list { gap: 1.25rem; letter-spacing: 0.11em; }
  }
  @media (max-width: 1100px) {
    .nav-list { gap: 1rem; font-size: 0.6rem; letter-spacing: 0.1em; }
    .nav--hero .nav-list { font-size: 0.68rem; letter-spacing: 0.12em; }
  }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  }
  @media (max-width: 1024px) {
    .nav-hamburger { display: flex; }
    .nav-list {
      position: fixed;
      inset: 0;
      background: var(--ink);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      mix-blend-mode: normal;
    }
    .nav-list.is-open { opacity: 1; pointer-events: auto; }
    .nav-list a { font-size: 0.8rem; letter-spacing: 0.18em; color: var(--paper); }
    .nav--hero.nav-open,
    .nav--difference.nav-open { mix-blend-mode: normal; color: var(--paper); }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-eyebrow, .hero-title, .hero-sub, .hero-ctas { animation: none; }
  }

  /* ---- LIGHTBOX (shared: gallery + film grids) ---- */
  .lb-trigger { cursor: zoom-in; }
  .lb-trigger:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }
  body.gallery-lightbox-open { overflow: hidden; }
  .gallery-lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 2rem; background: rgba(20, 17, 14, 0.94); backdrop-filter: blur(8px); }
  .gallery-lightbox[hidden] { display: none; }
  .gallery-lightbox-figure { max-width: min(1200px, 92vw); max-height: 88vh; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
  .gallery-lightbox-img { max-width: 100%; max-height: calc(88vh - 3rem); width: auto; height: auto; object-fit: contain; display: block; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45); }
  .gallery-lightbox-caption { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244, 239, 230, 0.72); text-align: center; line-height: 1.6; }
  .gallery-lightbox-caption[hidden] { display: none; }
  .gallery-lightbox-close, .gallery-lightbox-prev, .gallery-lightbox-next { position: absolute; border: 1px solid rgba(244, 239, 230, 0.28); border-radius: 999px; background: rgba(31, 27, 23, 0.55); color: var(--paper); font-family: var(--mono); line-height: 1; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease; backdrop-filter: blur(6px); }
  .gallery-lightbox-close:hover, .gallery-lightbox-close:focus-visible, .gallery-lightbox-prev:hover, .gallery-lightbox-prev:focus-visible, .gallery-lightbox-next:hover, .gallery-lightbox-next:focus-visible { background: rgba(31, 27, 23, 0.78); border-color: rgba(244, 239, 230, 0.5); outline: none; }
  .gallery-lightbox-close { top: 1.25rem; right: 1.25rem; width: 2.5rem; height: 2.5rem; font-size: 1.35rem; }
  .gallery-lightbox-prev, .gallery-lightbox-next { top: 50%; transform: translateY(-50%); width: 2.75rem; height: 2.75rem; font-size: 1.6rem; }
  .gallery-lightbox-prev { left: 1rem; }
  .gallery-lightbox-next { right: 1rem; }
  .gallery-lightbox-prev[hidden], .gallery-lightbox-next[hidden] { display: none; }
  @media (max-width: 600px) {
    .gallery-lightbox { padding: 1rem; }
    .gallery-lightbox-prev { left: 0.5rem; }
    .gallery-lightbox-next { right: 0.5rem; }
    .gallery-lightbox-close { top: 0.75rem; right: 0.75rem; }
  }
