    /* =============================================
       DESIGN TOKENS
       ============================================= */
    :root {
      --ink:              #1f241b;
      --ink-soft:         #3b433a;
      --parchment:        #f3ecdc;
      --parchment-deep:   #ead8b5;
      --stone:            #8b8071;
      --stone-dark:       #4a4640;
      --terracotta:       #c15a34;
      --terracotta-dark:  #9a4627;
      --moss:             #3d4a35;
      --gold:             #b28941;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Hanken Grotesk', system-ui, sans-serif;

      --max-w: 1200px;
      --gap:   2rem;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ink);
      background: var(--parchment);
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--terracotta); text-decoration: none; transition: color .2s; }
    a:hover { color: var(--terracotta-dark); }

    .container {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--gap);
    }

    /* =============================================
       TYPOGRAPHY
       ============================================= */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 500;
      line-height: 1.2;
      color: var(--ink);
    }
    h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
    h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
    h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
    h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

    .eyebrow {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: .8rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--stone);
    }

    .section-intro {
      max-width: 680px;
      margin: 0 auto 3rem;
      text-align: center;
      color: var(--ink-soft);
      font-size: 1.1rem;
    }

    /* =============================================
       BUTTONS
       ============================================= */
    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .85em 2em;
      border-radius: 3px;
      transition: background .25s, color .25s, box-shadow .25s;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: var(--terracotta);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--terracotta-dark);
      color: #fff;
    }
    .btn-secondary {
      background: transparent;
      color: var(--terracotta);
      border: 2px solid var(--terracotta);
    }
    .btn-secondary:hover {
      background: var(--terracotta);
      color: #fff;
    }
    .btn-gold {
      background: var(--gold);
      color: #fff;
    }
    .btn-gold:hover {
      background: #966f2e;
      color: #fff;
    }
    .btn-white {
      background: #fff;
      color: var(--ink);
    }
    .btn-white:hover {
      background: var(--parchment);
      color: var(--ink);
    }

    /* =============================================
       EMERGENCY BAR
       ============================================= */
    .emergency-bar {
      background: var(--terracotta);
      color: #fff;
      text-align: center;
      padding: .6rem var(--gap);
      font-size: .88rem;
      font-weight: 500;
    }
    .emergency-bar a {
      color: #fff;
      text-decoration: underline;
      font-weight: 700;
    }
    .emergency-bar a:hover { color: var(--parchment-deep); }

    /* =============================================
       HEADER / NAV
       ============================================= */
    .site-header {
      background: var(--parchment-deep);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 6px rgba(0,0,0,.08);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .8rem 0;
    }
    .logo {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.5rem;
      color: var(--ink);
      line-height: 1.15;
    }
    .logo small {
      display: block;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--stone);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: .5rem;
    }
    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--ink);
      margin: 6px 0;
      transition: transform .3s, opacity .3s;
    }

    .main-nav ul {
      display: flex;
      list-style: none;
      gap: 1.8rem;
      align-items: center;
    }
    .main-nav a {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: .78rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: .3rem 0;
      position: relative;
    }
    .main-nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--terracotta);
      transition: width .3s;
    }
    .main-nav a:hover { color: var(--terracotta); }
    .main-nav a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--terracotta);
      color: #fff !important;
      padding: .55rem 1.2rem !important;
      border-radius: 3px;
      letter-spacing: .15em !important;
    }
    .nav-cta:hover { background: var(--terracotta-dark); }
    .nav-cta::after { display: none !important; }

    /* =============================================
       HERO
       ============================================= */
    .hero {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(31,36,27,.82) 0%, rgba(31,36,27,.45) 50%, transparent 75%);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      padding: 4rem 0;
    }
    .hero h1 {
      color: #fff;
      margin-bottom: .6rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--parchment-deep);
    }
    .hero .eyebrow {
      color: var(--parchment-deep);
      margin-bottom: 1rem;
    }
    .hero p {
      color: rgba(255,255,255,.88);
      font-size: 1.15rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* =============================================
       MISSION BANNER
       ============================================= */
    .mission-banner {
      position: relative;
      padding: 6rem 0;
      text-align: center;
      overflow: hidden;
    }
    .mission-banner .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .mission-banner .hero-overlay {
      background: rgba(31,36,27,.72);
    }
    .mission-banner .container {
      position: relative;
      z-index: 2;
    }
    .mission-banner h2 {
      color: #fff;
      margin-bottom: 1rem;
    }
    .mission-banner h2 em {
      font-style: italic;
      color: var(--parchment-deep);
    }
    .mission-banner p {
      color: rgba(255,255,255,.85);
      max-width: 720px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
    }
    .mission-banner .eyebrow {
      color: var(--gold);
      margin-bottom: 1rem;
    }

    /* =============================================
       INTRO / WELCOME
       ============================================= */
    .intro {
      padding: 5rem 0;
      text-align: center;
    }
    .intro .eyebrow { margin-bottom: 1rem; }
    .intro h2 { margin-bottom: 1.5rem; }
    .intro p {
      max-width: 760px;
      margin: 0 auto;
      color: var(--ink-soft);
      font-size: 1.05rem;
    }

    /* =============================================
       WORK GRID (6 cards)
       ============================================= */
    .work-section {
      padding: 5rem 0;
      background: #fff;
    }
    .work-section .eyebrow {
      text-align: center;
      margin-bottom: .8rem;
    }
    .work-section h2 {
      text-align: center;
      margin-bottom: 1rem;
    }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.8rem;
      margin-top: 3rem;
    }
    .work-card {
      background: var(--parchment);
      border-radius: 6px;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }
    .work-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,.1);
    }
    .work-card-img {
      height: 220px;
      overflow: hidden;
    }
    .work-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
    }
    .work-card:hover .work-card-img img { transform: scale(1.05); }
    .work-card-body {
      padding: 1.5rem;
    }
    .work-card h3 {
      font-size: 1.35rem;
      margin-bottom: .5rem;
    }
    .work-card p {
      color: var(--ink-soft);
      font-size: .95rem;
      margin-bottom: 1rem;
    }
    .card-link {
      font-weight: 600;
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--terracotta);
    }
    .card-link:hover { color: var(--terracotta-dark); }

    /* =============================================
       STATS BAND
       ============================================= */
    .stats-band {
      background: var(--stone-dark);
      padding: 3.5rem 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-item strong {
      display: block;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--parchment-deep);
      line-height: 1.1;
    }
    .stat-item span {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: .85rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
    }

    /* =============================================
       TEAM
       ============================================= */
    .team-section {
      padding: 5rem 0;
    }
    .team-section .eyebrow { text-align: center; margin-bottom: .8rem; }
    .team-section h2 { text-align: center; margin-bottom: 1rem; }
    .team-banner {
      max-width: 800px;
      margin: 2rem auto 0;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
    }
    .team-banner img {
      width: 100%;
      height: auto;
      display: block;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2.5rem;
    }
    .team-card {
      text-align: center;
      padding: 2rem 1.5rem;
      background: #fff;
      border-radius: 6px;
      border: 1px solid rgba(0,0,0,.06);
    }
    .team-card h3 {
      font-size: 1.4rem;
      margin-bottom: .25rem;
    }
    .team-card .role {
      font-weight: 600;
      font-size: .82rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: .7rem;
    }
    .team-card p {
      color: var(--ink-soft);
      font-size: .95rem;
      max-width: 340px;
      margin: 0 auto;
    }

    /* =============================================
       VISIT / BESUCH PLANEN (dark green section)
       ============================================= */
    .visit-section {
      background: var(--moss);
      color: #fff;
      padding: 5rem 0;
    }
    .visit-section .eyebrow {
      color: var(--gold);
      text-align: center;
      margin-bottom: .8rem;
    }
    .visit-section h2 {
      color: #fff;
      text-align: center;
      margin-bottom: 1rem;
    }
    .visit-section .section-intro {
      color: rgba(255,255,255,.8);
    }
    .visit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .visit-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 6px;
      padding: 2rem;
    }
    .visit-card h3 {
      color: var(--parchment-deep);
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    .visit-card p, .visit-card li {
      color: rgba(255,255,255,.82);
      font-size: .95rem;
    }
    .visit-card ul {
      list-style: none;
      padding: 0;
    }
    .visit-card ul li {
      padding: .4rem 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .visit-card ul li:last-child { border-bottom: none; }
    .visit-card .highlight {
      color: var(--gold);
      font-weight: 600;
    }
    .notice-box {
      background: rgba(255,255,255,.12);
      border-left: 4px solid var(--gold);
      padding: 1.2rem 1.5rem;
      border-radius: 0 6px 6px 0;
      margin-top: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .notice-box p {
      color: rgba(255,255,255,.9);
      font-size: .95rem;
    }
    .notice-box strong { color: var(--gold); }

    /* =============================================
       SUPPORT / UNTERSTÜTZEN
       ============================================= */
    .support-section {
      padding: 5rem 0;
      background: #fff;
    }
    .support-section .eyebrow { text-align: center; margin-bottom: .8rem; }
    .support-section h2 { text-align: center; margin-bottom: 1rem; }
    .support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.8rem;
      margin-top: 3rem;
    }
    .support-card {
      text-align: center;
      padding: 2.5rem 1.8rem;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 6px;
      transition: box-shadow .3s;
    }
    .support-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
    .support-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--parchment);
      color: var(--terracotta);
      font-size: 1.5rem;
    }
    .support-card h3 {
      font-size: 1.2rem;
      margin-bottom: .6rem;
    }
    .support-card p {
      color: var(--ink-soft);
      font-size: .92rem;
    }

    /* =============================================
       ENGAGE / ENGAGIEREN
       ============================================= */
    .engage-section {
      padding: 5rem 0;
    }
    .engage-section .eyebrow { text-align: center; margin-bottom: .8rem; }
    .engage-section h2 { text-align: center; margin-bottom: 1rem; }
    .engage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .engage-card {
      padding: 2rem;
      background: #fff;
      border-radius: 6px;
      border: 1px solid rgba(0,0,0,.06);
    }
    .engage-card h3 {
      font-size: 1.2rem;
      margin-bottom: .6rem;
    }
    .engage-card p {
      color: var(--ink-soft);
      font-size: .95rem;
      margin-bottom: 1rem;
    }

    /* =============================================
       CONTACT BAND
       ============================================= */
    .contact-section {
      padding: 5rem 0;
      background: var(--parchment-deep);
    }
    .contact-section .eyebrow { text-align: center; margin-bottom: .8rem; }
    .contact-section h2 { text-align: center; margin-bottom: 1.5rem; }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }
    .contact-info h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .contact-info p {
      color: var(--ink-soft);
      margin-bottom: .5rem;
    }
    .contact-info a { font-weight: 600; }
    .emergency-box {
      background: var(--terracotta);
      color: #fff;
      padding: 2rem;
      border-radius: 6px;
    }
    .emergency-box h3 {
      color: #fff;
      font-size: 1.3rem;
      margin-bottom: .8rem;
    }
    .emergency-box p {
      color: rgba(255,255,255,.9);
      font-size: .95rem;
      margin-bottom: .6rem;
    }
    .emergency-box a {
      color: #fff;
      font-weight: 700;
      text-decoration: underline;
    }

    /* =============================================
       PARTNER BAND
       ============================================= */
    .partner-band {
      padding: 3rem 0;
      background: #fff;
      text-align: center;
    }
    .partner-band .eyebrow { margin-bottom: 1.5rem; }
    .partner-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
      opacity: .6;
    }
    .partner-logos span {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--stone-dark);
    }

    /* =============================================
       FOOTER
       ============================================= */
    .site-footer {
      background: var(--ink);
      color: rgba(255,255,255,.6);
      padding: 3.5rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .foot-social .social-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 6px;
      padding: 10px 18px;
      background: #1877F2;
      color: #fff;
      font-size: .9rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 4px;
      transition: background .2s;
    }
    .foot-social .social-link:hover { background: #166FE5; color: #fff; }
    .foot-social .social-link svg { display: block; width: 22px; height: 22px; }
    .footer-brand .logo {
      color: var(--parchment-deep);
      margin-bottom: .8rem;
    }
    .footer-brand .logo small { color: var(--stone); }
    .footer-brand p {
      font-size: .9rem;
      line-height: 1.6;
      max-width: 300px;
    }
    .site-footer h4 {
      color: var(--parchment-deep);
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }
    .site-footer ul {
      list-style: none;
    }
    .site-footer ul li { margin-bottom: .45rem; }
    .site-footer ul a {
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      transition: color .2s;
    }
    .site-footer ul a:hover { color: var(--parchment-deep); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: .82rem;
    }
    .footer-bottom a { color: rgba(255,255,255,.6); }
    .footer-bottom a:hover { color: var(--parchment-deep); }
    .photo-credits {
      font-size: .78rem;
      color: rgba(255,255,255,.4);
    }

    /* =============================================
       RESPONSIVE
       ============================================= */
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .foot-social { grid-column: 1 / -1; }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .nav-toggle { display: block; }
      .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--parchment-deep);
        padding: 5rem 2rem 2rem;
        transition: right .35s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,.15);
        z-index: 200;
      }
      .main-nav.open { right: 0; }
      .main-nav ul {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
      }
      .hero { min-height: 70vh; }
      .hero-content { padding: 3rem 0; }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .hero-buttons { flex-direction: column; }
    }

    /* =============================================
       DROPDOWN NAV
       ============================================= */
    .has-dropdown { position: relative; }
    .has-dropdown > a::after {
      content: ' ▾';
      font-size: .6em;
    }
    .has-dropdown > .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--parchment-deep);
      border-radius: 0 0 6px 6px;
      box-shadow: 0 8px 24px rgba(0,0,0,.12);
      min-width: 240px;
      padding: .5rem 0;
      z-index: 300;
      flex-direction: column;
      gap: 0;
    }
    @media (hover: hover) {
      .has-dropdown:hover .dropdown { display: flex; }
    }
    .has-dropdown.open .dropdown { display: flex; }
    .dropdown li { margin: 0; }
    .dropdown a {
      display: block;
      padding: .5rem 1.2rem !important;
      font-size: .72rem !important;
      letter-spacing: .18em !important;
      white-space: nowrap;
    }
    .dropdown a:hover {
      background: rgba(0,0,0,.04);
    }
    .dropdown a::after { display: none !important; }

    @media (max-width: 768px) {
      .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
      }
    }

    /* =============================================
       SUBPAGE CONTENT
       ============================================= */
    .page-header {
      background: var(--parchment-deep);
      padding: 3rem 0 2rem;
      text-align: center;
    }
    .page-header .eyebrow { margin-bottom: .8rem; }
    .page-header h1 { margin-bottom: 0; }

    .page-content {
      padding: 3rem 0 5rem;
    }
    .page-content .container {
      max-width: 860px;
    }
    .page-content h2 {
      margin-top: 2.5rem;
      margin-bottom: 1rem;
    }

    .legal-content {
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.85;
    }
    .legal-content h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      margin-top: 2.5rem;
      margin-bottom: .8rem;
    }
    .legal-content h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      margin-top: 2rem;
      margin-bottom: .6rem;
    }
    .legal-content p {
      margin-bottom: 1rem;
    }
    .legal-content ul {
      margin: .5rem 0 1rem 1.5rem;
    }
    .legal-content li {
      margin-bottom: .3rem;
    }
    .legal-content table {
      border-collapse: collapse;
      margin: .5rem 0 1rem;
    }
    .legal-content td {
      padding: .2rem .8rem .2rem 0;
      vertical-align: top;
    }
    .legal-content a {
      color: var(--terracotta);
      text-decoration: underline;
    }
    .legal-content a:hover {
      color: var(--terracotta-dark);
    }
    .page-content h3 {
      margin-top: 2rem;
      margin-bottom: .8rem;
    }
    .page-content p {
      margin-bottom: 1rem;
      color: var(--ink-soft);
    }
    .page-content ul, .page-content ol {
      margin-bottom: 1rem;
      padding-left: 1.5rem;
      color: var(--ink-soft);
    }
    .page-content li { margin-bottom: .4rem; }
    .page-content table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1.5rem;
    }
    .page-content table td,
    .page-content table th {
      padding: .5rem .8rem;
      text-align: left;
      border-bottom: 1px solid rgba(0,0,0,.08);
      color: var(--ink-soft);
    }
    .page-content strong { color: var(--ink); }
    .page-content img {
      border-radius: 6px;
      margin: 1.5rem 0;
    }
    .page-content .img-caption {
      font-size: .88rem;
      color: var(--stone);
      font-style: italic;
      margin-top: -.8rem;
      margin-bottom: 1.5rem;
    }
    .page-content .img-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .page-content .img-grid img {
      margin: 0;
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    /* Gallery page */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1rem;
      margin: 2rem 0;
    }
    .gallery-item {
      overflow: hidden;
      border-radius: 6px;
    }
    .gallery-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      margin: 0;
      transition: transform .4s;
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item figcaption {
      padding: .6rem .8rem;
      font-size: .85rem;
      color: var(--ink-soft);
      background: #fff;
    }

    /* =============================================
       SUBPAGE HERO STRIP
       ============================================= */
    .hero-strip {
      position: relative;
      height: 320px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero-strip .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-strip .hero-overlay {
      background: linear-gradient(0deg, rgba(31,36,27,.78) 0%, rgba(31,36,27,.25) 60%, transparent 100%);
    }
    .hero-strip .container {
      position: relative;
      z-index: 2;
      padding-bottom: 2rem;
    }
    .hero-strip h1 { color: #fff; margin-bottom: .3rem; font-size: clamp(2rem, 4vw, 3rem); }
    .hero-strip .lead { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0; }

    /* =============================================
       BREADCRUMBS
       ============================================= */
    .breadcrumbs {
      padding: .8rem 0;
      font-size: .78rem;
      color: var(--stone);
    }
    .breadcrumbs a { color: var(--stone); }
    .breadcrumbs a:hover { color: var(--terracotta); }
    .breadcrumbs span { margin: 0 .4rem; }

    /* =============================================
       ALTERNATING 2-COL SECTIONS
       ============================================= */
    .content-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      padding: 3rem 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .content-block:last-of-type { border-bottom: none; }
    .content-block.reverse .content-text { order: 2; }
    .content-block.reverse .content-media { order: 1; }
    .content-text h2 { margin-top: 0; }
    .content-text p { color: var(--ink-soft); }
    .content-media img {
      width: 100%;
      border-radius: 6px;
      box-shadow: 0 4px 16px rgba(0,0,0,.08);
    }
    .content-media .img-caption {
      font-size: .85rem;
      color: var(--stone);
      font-style: italic;
      margin-top: .5rem;
    }

    @media (max-width: 768px) {
      .content-block { grid-template-columns: 1fr; gap: 1.5rem; }
      .content-block.reverse .content-text { order: 1; }
      .content-block.reverse .content-media { order: 2; }
    }

    /* =============================================
       SUBPAGE CTA BAND
       ============================================= */
    .cta-band {
      background: var(--moss);
      padding: 3.5rem 0;
      text-align: center;
    }
    .cta-band h2 { color: #fff; margin-bottom: .8rem; }
    .cta-band p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
    .cta-band .btn { margin: 0 .5rem; }

    .cta-band--emergency { background: var(--terracotta); }
    .cta-band--emergency h2 { color: #fff; }
    .cta-band--emergency p { color: rgba(255,255,255,.9); }

    /* =============================================
       LINKS PAGE
       ============================================= */
    .links-category { margin-bottom: 2.5rem; }
    .links-category h2 { margin-bottom: 1rem; }
    .links-category ul { list-style: none; padding: 0; }
    .links-category li {
      padding: .6rem 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .links-category li:last-child { border-bottom: none; }
    .links-category a { font-weight: 500; }

    /* =============================================
       PARTNER BAND UPGRADED
       ============================================= */
    .partner-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 6px;
      padding: 1.5rem;
      text-align: left;
    }
    .partner-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
    .partner-card p { font-size: .9rem; color: var(--ink-soft); margin-bottom: .6rem; }
    .partner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
