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

    /* ─── THEME TOKENS ─────────────────────────────────────────── */
    :root { --fs-scale: 1; } /* JS sets 0.88 | 1 | 1.18 — must be on :root only */

    :root, [data-theme="light"] {
      --bg:          #f5f2ee;
      --bg-card:     #ffffff;
      --bg-header:   rgba(245,242,238,0.96);
      --ink:         #1a1714;
      --ink-mid:     #3d3830;
      --ink-faint:   #7a736a;
      --gold:        #b8a06a;
      --divider:     rgba(26,23,20,0.12);
      --nav-text:    rgba(26,23,20,0.72);
      --footer-bg:   #797876;
      --search-bg:   rgba(20,17,14,0.97);
    }

    [data-theme="dark"] {
      --bg:          #111009;
      --bg-card:     #1c1a17;
      --bg-header:   rgba(17,16,9,0.96);
      --ink:         #ede8e0;
      --ink-mid:     #c8c0b2;
      --ink-faint:   #8a8070;
      --gold:        #c8a86a;
      --divider:     rgba(237,232,224,0.12);
      --nav-text:    rgba(237,232,224,0.68);
      --footer-bg:   #0a0908;
      --search-bg:   rgba(8,7,5,0.98);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'EB Garamond', Georgia, serif;
      background: var(--bg);
      color: var(--ink);
      overflow-x: hidden;
      transition: background 0.4s, color 0.4s;
    }

    /* ════════════════════════════════════════════════════════════
       LOGO ADMIN PANEL  (preview / dev only — remove in production)
    ════════════════════════════════════════════════════════════ */
    #logo-admin {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 9000;
    }

    #logo-admin-toggle {
      display: flex; align-items: center; gap: 8px;
      background: var(--ink); color: var(--bg);
      border: none; border-radius: 24px;
      padding: 9px 18px 9px 14px;
      font-family: 'Cormorant SC', serif;
      font-size: 10px; letter-spacing: 0.22em;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      transition: background 0.3s, color 0.3s;
      white-space: nowrap; margin-left: auto;
    }

    #logo-admin-toggle svg { width: 14px; height: 14px; flex-shrink: 0; }

    #logo-admin-panel {
      background: var(--bg-card);
      border: 1px solid var(--divider);
      border-radius: 12px;
      padding: 24px; width: 340px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
      margin-bottom: 12px;
      display: none; flex-direction: column; gap: 20px;
    }

    #logo-admin-panel.open { display: flex; }

    .admin-panel-title {
      font-family: 'Cormorant SC', serif;
      font-size: 11px; letter-spacing: 0.28em;
      color: var(--gold); text-transform: uppercase;
      padding-bottom: 14px; border-bottom: 1px solid var(--divider);
    }

    .logo-slot { display: flex; flex-direction: column; gap: 10px; }

    .logo-slot-label {
      font-family: 'Cormorant SC', serif;
      font-size: 10px; letter-spacing: 0.22em;
      color: var(--ink-mid);
      display: flex; align-items: center; gap: 8px;
    }

    .logo-slot-label .swatch {
      width: 14px; height: 14px;
      border-radius: 50%; border: 1px solid var(--divider); flex-shrink: 0;
    }

    .swatch-light { background: #f5f2ee; }
    .swatch-dark  { background: #111009; }

    .logo-slot-formats {
      font-family: 'EB Garamond', serif;
      font-size: calc(12px * var(--fs-scale)); color: var(--ink-faint);
      display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    }

    .fmt-badge {
      font-family: 'Cormorant SC', serif;
      font-size: 9px; letter-spacing: 0.15em;
      padding: 2px 7px; border-radius: 3px;
      border: 1px solid var(--divider);
      color: var(--ink-mid);
    }

    .fmt-badge.recommended {
      border-color: var(--gold);
      color: var(--gold);
    }

    .logo-dropzone {
      position: relative;
      border: 1.5px dashed var(--divider);
      border-radius: 8px; height: 80px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; overflow: hidden;
      transition: border-color 0.2s, background 0.2s;
    }

    .logo-dropzone:hover, .logo-dropzone.dragover {
      border-color: var(--gold);
      background: rgba(184,160,106,0.06);
    }

    .logo-dropzone input[type="file"] {
      position: absolute; inset: 0;
      opacity: 0; cursor: pointer; width: 100%; height: 100%;
    }

    .dz-hint {
      display: flex; flex-direction: column; align-items: center; gap: 5px;
      pointer-events: none;
    }

    .dz-hint svg { width: 18px; height: 18px; opacity: 0.32; }

    .dz-hint span {
      font-family: 'Cormorant SC', serif;
      font-size: 9px; letter-spacing: 0.2em; color: var(--ink-faint);
    }

    .dz-hint .dz-formats {
      font-size: 8px; letter-spacing: 0.14em;
      color: var(--ink-faint); opacity: 0.7;
    }

    .logo-dropzone .dz-preview {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      padding: 8px 16px; background: var(--bg-card);
    }

    .logo-dropzone .dz-preview img {
      max-height: 56px; max-width: 100%; object-fit: contain;
    }

    .logo-meta {
      font-family: 'Cormorant SC', serif;
      font-size: 8.5px; letter-spacing: 0.14em;
      color: var(--ink-faint);
      display: none; justify-content: space-between; align-items: center;
    }

    .logo-meta.visible { display: flex; }

    .logo-meta-info { display: flex; gap: 8px; }

    .logo-clear {
      background: none; border: none;
      font-family: 'Cormorant SC', serif;
      font-size: 9px; letter-spacing: 0.18em;
      color: var(--ink-faint); cursor: pointer;
      transition: color 0.2s;
    }

    .logo-clear:hover { color: var(--ink); }

    /* WP ACF note box */
    .admin-acf-note {
      background: rgba(184,160,106,0.07);
      border-left: 2px solid var(--gold);
      border-radius: 4px;
      padding: 11px 13px;
      font-family: 'EB Garamond', serif;
      font-size: calc(13px * var(--fs-scale)); line-height: 1.65;
      color: var(--ink-mid);
    }

    .admin-acf-note .note-label {
      font-family: 'Cormorant SC', serif;
      font-size: 9px; letter-spacing: 0.22em;
      color: var(--gold); display: block; margin-bottom: 5px;
    }

    .admin-acf-note code {
      font-family: monospace; font-size: 11px;
      background: rgba(0,0,0,0.06); padding: 1px 5px; border-radius: 3px;
    }

    /* ─── HEADER ─────────────────────────────────────────────── */
    #site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; flex-direction: column; align-items: center;
      background: transparent;
      transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }

    #site-header.scrolled {
      background: var(--bg-header);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 12px rgba(0,0,0,0.08), 0 1px 0 var(--divider);
    }

    /* Tighten header padding once scrolled */
    /* header-top padding controlled by base rule only */

    /* #site-header.hidden — hide-on-scroll disabled; header is always visible */

    .header-top {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between; padding: 1px 36px 0;
    }

    .header-left { display: flex; align-items: center; min-width: 160px; }

    /* Hamburger — hidden on desktop */
    .menu-btn {
      display: none; align-items: center; gap: 10px;
      background: none; border: none; color: inherit;
      font-family: 'Cormorant SC', serif; font-size: 11px;
      letter-spacing: 0.18em; cursor: pointer; text-transform: uppercase;
    }

    .menu-btn .lines { display: flex; flex-direction: column; gap: 5px; width: 22px; }
    .menu-btn .lines .line { display: block; height: 1.5px; background: currentColor; transition: transform 0.3s, opacity 0.3s, width 0.3s; }
    .menu-btn .lines .line-1 { width: 22px; }
    .menu-btn .lines .line-2 { width: 16px; }
    .menu-btn .lines .line-3 { width: 22px; }
    /* Animate to X when drawer is open */
    body.drawer-open .menu-btn .line-1 { transform: translateY(6.5px) rotate(45deg); width: 22px; }
    body.drawer-open .menu-btn .line-2 { opacity: 0; transform: scaleX(0); }
    body.drawer-open .menu-btn .line-3 { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

    /* ── Logo area ── */
    .site-branding {
      flex: 1; display: flex; justify-content: center; align-items: center;
    }

    /* Scale is applied to the anchor — always in the DOM, always transitionable */
    .site-branding a {
      line-height: 0; display: flex; align-items: center;
      transform-origin: center center;
      transition: transform 0.4s ease;
    }

    /* 20% smaller when scrolled — smoothly restores when back at top */
    .site-branding.logo-shrunk a {
      transform: scale(0.8);
    }

    /*
     * PRODUCTION LOGO OUTPUT (header.php)
     * ─────────────────────────────────────
     * After including acf-logo-setup.php, replace the two <img> tags below with:
     *
     *   <?php
     *   $logo_light = get_field( 'logo_light', 'option' );
     *   $logo_dark  = get_field( 'logo_dark',  'option' );
     *   ?>
     *
     *   <?php if ( $logo_light ) : ?>
     *     <img id="logo-light" class="site-logo"
     *          src="<?php echo esc_url( $logo_light['url'] ); ?>"
     *          width="<?php echo esc_attr( $logo_light['width'] ); ?>"
     *          height="<?php echo esc_attr( $logo_light['height'] ); ?>"
     *          alt="<?php echo esc_attr( $logo_light['alt'] ?: get_bloginfo('name') ); ?>"
     *          loading="eager" decoding="async">
     *   <?php endif; ?>
     *
     *   <?php if ( $logo_dark ) : ?>
     *     <img id="logo-dark" class="site-logo"
     *          src="<?php echo esc_url( $logo_dark['url'] ); ?>"
     *          width="<?php echo esc_attr( $logo_dark['width'] ); ?>"
     *          height="<?php echo esc_attr( $logo_dark['height'] ); ?>"
     *          alt="<?php echo esc_attr( $logo_dark['alt'] ?: get_bloginfo('name') ); ?>"
     *          loading="eager" decoding="async">
     *   <?php endif; ?>
     *
     *   Or use the helper shorthand:
     *   <?php echo site_logo_img_tag( 'light', 'site-logo', 'logo-light' ); ?>
     *   <?php echo site_logo_img_tag( 'dark',  'site-logo', 'logo-dark'  ); ?>
     *
     * SVG NOTES:
     *   SVG files return width/height = 0 from WordPress. The helper function
     *   handles this gracefully (omits dimensions). No filter or inversion needed
     *   for SVG — design your dark logo as white/light paths directly.
     *
     * PNG / JPG / WebP NOTES:
     *   Upload at 2× intended display size for retina. The CSS constrains
     *   display height to 52px; aspect ratio is preserved automatically.
     *   The .over-hero filter on #logo-light handles inversion over the dark
     *   hero image — only needed if your light logo is dark-coloured.
     */
    .site-logo {
      height: 56px; width: auto; max-width: 281px;
      /* Use visibility+opacity instead of display:none so the anchor
         always has layout dimensions — required for CSS transform to work */
      visibility: hidden;
      opacity: 0;
      position: absolute; /* collapse space when hidden */
      pointer-events: none;
      object-fit: contain;
      transition: filter 0.35s;
    }

    .site-logo.logo-active {
      visibility: visible;
      opacity: 1;
      position: static;
      pointer-events: auto;
    }

    /* over-hero logo inversion removed — logos render with their natural colours */

    /* Placeholder — hidden once a real logo is set */
    #logo-placeholder {
      display: flex; align-items: center; gap: 10px;
      opacity: 0.4; cursor: default;
    }

    #logo-placeholder svg { width: 26px; height: 26px; }

    #logo-placeholder span {
      font-family: 'Cormorant SC', serif;
      font-size: 11px; letter-spacing: 0.25em; color: inherit;
    }

    body.has-logo #logo-placeholder { display: none; }

    /* ── Right controls ── */
    .header-right {
      display: flex; align-items: center; gap: 18px;
      min-width: 160px; justify-content: flex-end;
    }

    .theme-btn {
      background: none; border: 1px solid currentColor; border-radius: 20px;
      padding: 4px 13px 4px 10px;
      display: flex; align-items: center; gap: 7px;
      font-family: 'Cormorant SC', serif; font-size: 10px; letter-spacing: 0.16em;
      cursor: pointer; color: inherit; opacity: 0.65; transition: opacity 0.2s;
      white-space: nowrap;
    }

    .theme-btn:hover { opacity: 1; }
    .theme-btn .theme-icon { display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; line-height: 1; }
    .theme-btn .theme-icon svg { display: block; width: 14px; height: 14px; flex-shrink: 0; }
    #site-header.over-hero .theme-btn { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.35); opacity: 0.75; }
    #site-header.over-hero .theme-btn:hover { opacity: 1; }

    /* Font size toggle button */
    .font-size-btn {
      background: none; border: 1px solid currentColor; border-radius: 20px;
      padding: 4px 11px; display: flex; align-items: center; gap: 5px;
      font-family: 'Cormorant SC', serif; letter-spacing: 0.12em;
      cursor: pointer; color: inherit; opacity: 0.65; transition: opacity 0.2s;
      white-space: nowrap; line-height: 1;
    }
    .font-size-btn:hover { opacity: 1; }
    .font-size-btn .fs-icon { font-size: calc(15px * var(--fs-scale)); font-weight: 600; line-height: 1; }
    .font-size-btn .fs-label { font-size: 9px; line-height: 1; opacity: 0.7; }
    #site-header.over-hero .font-size-btn { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.35); opacity: 0.75; }
    #site-header.over-hero .font-size-btn:hover { opacity: 1; }

    .search-btn {
      background: none; border: none; color: inherit;
      display: flex; align-items: center; gap: 9px;
      font-family: 'Cormorant SC', serif; font-size: 11px; letter-spacing: 0.18em;
      cursor: pointer; text-transform: uppercase; opacity: 0.8; transition: opacity 0.2s;
    }
    .search-btn:hover { opacity: 1; }
    .search-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
    #site-header.over-hero .search-btn { color: rgba(255,255,255,0.85); }
    /* Icon-only search button — always visible, theme-aware */
    .search-icon-btn { background: none; border: none; color: inherit; display: flex; align-items: center; justify-content: center; padding: 4px 6px; opacity: 0.72; cursor: pointer; transition: opacity 0.2s; }
    .search-icon-btn:hover { opacity: 1; }
    .search-icon-btn svg { stroke: currentColor; fill: none; }
    #site-header.over-hero .search-icon-btn { color: rgba(255,255,255,0.85); }

    .header-divider {
      width: calc(100% - 72px); height: 0.5px; margin-top: 0;
      background: var(--gold); transition: background 0.3s;
    }

    #site-header.over-hero .header-divider { background: rgba(255,255,255,0.28); }

    .primary-nav { display: flex; padding: 1px 0 0; }
    .primary-nav ul { list-style: none; margin: 0; padding: 5px; display: flex; }
    .primary-nav ul li { margin: 0; padding: 0; }

    .primary-nav a {
      font-family: 'Cormorant SC', serif; font-size: calc(13px * var(--fs-scale)); letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--nav-text); text-decoration: none;
      padding: 0 22px 12px; transition: color 0.25s; position: relative;
    }

    .primary-nav a::after {
      content: ''; position: absolute; bottom: 0; left: 22px; right: 22px; height: 1px;
      background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
    }

    .primary-nav a:hover { color: var(--ink); }
    .primary-nav a:hover::after { transform: scaleX(1); }
    #site-header.over-hero .primary-nav a { color: rgba(255,255,255,0.82); }

    /* Primary nav hide/show on scroll direction */
    .primary-nav {
      transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
      overflow: hidden; max-height: 60px;
    }
    .primary-nav.nav-hidden {
      opacity: 0; transform: translateY(-8px); max-height: 0; pointer-events: none;
    }
    /* Hover: always restore solid header + nav regardless of scroll state */
    #site-header:hover {
      background: var(--bg-header) !important;
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 12px rgba(0,0,0,0.08), 0 1px 0 var(--divider);
    }
    #site-header:hover .primary-nav {
      opacity: 1 !important;
      transform: translateY(0) !important;
      max-height: 60px !important;
      pointer-events: auto !important;
    }
    #site-header:hover .primary-nav a { color: var(--nav-text) !important; }
    #site-header:hover .primary-nav a:hover { color: var(--ink) !important; }
    #site-header:hover .header-divider { background: var(--gold) !important; }
    #site-header:hover .theme-btn,
    #site-header:hover .font-size-btn,
    #site-header:hover .search-btn { color: var(--ink) !important; border-color: currentColor !important; opacity: 0.65; }

    #site-header.over-hero .primary-nav a:hover { color: #fff; }
    #site-header.over-hero .primary-nav a::after { background: rgba(255,255,255,0.65); }

    /* ─── HERO ─────────────────────────────────────────────── */
    #hero { position: relative; width: 100%; height: 100vh; overflow: hidden; }
    .hero-slides { position: absolute; inset: 0; }
    .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease-in-out; }
    .hero-slide.active { opacity: 1; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.50) 100%); }

    /* ─── LETTER ───────────────────────────────────────────── */
    #letter { background: var(--bg-card); padding: 90px 0 0; transition: background 0.4s; }
    .letter-body { max-width: 680px; margin: 0 auto; padding: 60px 40px 80px; }
    .letter-body p { font-size: calc(16.5px * var(--fs-scale)); line-height: 1.82; color: var(--ink-mid); margin-bottom: 26px; font-weight: 400; letter-spacing: 0.01em; }
    .letter-signature { margin-top: 52px; text-align: center; }
    .sig-name { font-family: 'Cormorant Garamond', serif; font-size: calc(26px * var(--fs-scale)); font-weight: 400; color: var(--ink); letter-spacing: 0.04em; display: block; margin-bottom: 6px; }
    .sig-title { font-family: 'Cormorant SC', serif; font-size: calc(12px * var(--fs-scale)); letter-spacing: 0.2em; color: var(--ink-mid); display: block; margin-bottom: 22px; }
    .sig-svg { display: block; margin: 0 auto; height: 62px; width: auto; color: var(--ink); }

    /* ─── PHOTO BAND ───────────────────────────────────────── */
    #photo-band { position: relative; width: 100%; height: 520px; overflow: hidden; }
    .photo-band-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .photo-band-img { position: absolute; inset: 0; background-size: cover; background-position: center 20%; }
    .photo-band-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.52) 100%); }

    /* ─── NEWS GRID ────────────────────────────────────────── */
    #news { background: var(--bg); padding: 80px 0 100px; transition: background 0.4s; }
    .news-header { text-align: center; margin-bottom: 52px; }
    .section-label { font-family: 'Cormorant SC', serif; font-size: calc(12px * var(--fs-scale)); letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: calc(36px * var(--fs-scale)); font-weight: 300; color: var(--ink); letter-spacing: 0.06em; }
    .news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
    .news-card { overflow: hidden; background: var(--bg-card); cursor: pointer; transition: background 0.4s; }
    .news-card-placeholder { width: 100%; height: 280px; transition: transform 0.6s, filter 0.4s; filter: brightness(0.75); }
    .news-card:hover .news-card-placeholder { transform: scale(1.04); filter: brightness(0.9); }
    .news-card-body { padding: 22px 24px 26px; background: var(--bg-card); border-top: 2px solid var(--gold); transition: background 0.4s; }
    .news-card-date { font-family: 'Cormorant SC', serif; font-size: calc(12px * var(--fs-scale)); letter-spacing: 0.22em; color: var(--gold); margin-bottom: 10px; display: block; }
    .news-card-title { font-family: 'Cormorant Garamond', serif; font-size: calc(19px * var(--fs-scale)); font-weight: 400; line-height: 1.45; color: var(--ink); }
    .news-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
    .news-card-title a:hover { color: var(--gold); }
    .news-card-excerpt { font-size: calc(15px * var(--fs-scale)); line-height: 1.65; color: var(--ink-faint); margin-top: 10px; }

    /* ─── FOOTER ───────────────────────────────────────────── */
    #footer { background: var(--footer-bg); padding: 60px 40px 40px; transition: background 0.4s; }
    .footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-brand .ft-title { font-family: 'Cormorant SC', serif; font-size: calc(17px * var(--fs-scale)); color: rgba(255,255,255,0.85); letter-spacing: 0.18em; text-decoration: none; display: block; margin-bottom: 6px; }
    .footer-brand .ft-tag { font-family: 'Cormorant SC', serif; font-size: 9px; letter-spacing: 0.3em; color: rgba(255,255,255,0.3); }
    .footer-nav h4, .footer-contact h4 { font-family: 'Cormorant SC', serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
    .footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    /* Footer logo */
    .ft-logo-link { display: block; margin-bottom: 14px; line-height: 0; }
    .ft-logo { height: 48px; width: auto; max-width: 180px; object-fit: contain; display: none; }
    .ft-logo-light { display: block; }
    .ft-logo-dark  { display: none; }
    [data-theme="dark"] .ft-logo-light { display: none; }
    [data-theme="dark"] .ft-logo-dark  { display: block; }

    .footer-nav a { font-family: 'Cormorant Garamond', serif; font-size: calc(15px * var(--fs-scale)); color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
    .footer-nav a:hover { color: rgba(255,255,255,0.9); }
    .footer-contact p { font-size: calc(14px * var(--fs-scale)); line-height: 1.8; color: rgba(255,255,255,0.36); }
    .footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; font-family: 'Cormorant SC', serif; font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,0.22); }

    /* ─── MENU OVERLAY ─────────────────────────────────────── */
    /* ── Drawer backdrop ── */
    #drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 190; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
    #drawer-backdrop.open { opacity: 1; pointer-events: all; }

    /* ── Slide drawer ── */
    #site-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 85vw; background: var(--bg-card); z-index: 200; display: flex; flex-direction: column; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: 4px 0 32px rgba(0,0,0,0.18); overflow-y: auto; }
    #site-drawer.open { transform: translateX(0); }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 14px 14px 16px; border-bottom: 0.5px solid var(--divider); flex-shrink: 0; gap: 8px; }
    .drawer-controls { display: flex; align-items: center; gap: 2px; flex: 1; }
    /* Each drawer control: icon + text label stacked */
    .drawer-ctrl-btn {
      background: none; border: none; cursor: pointer; color: var(--ink-faint);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 4px; padding: 8px 10px; border-radius: 8px;
      transition: color 0.2s, background 0.2s; flex-shrink: 0; min-width: 52px;
    }
    .drawer-ctrl-btn:hover { color: var(--gold); background: rgba(184,160,106,0.08); }
    .drawer-ctrl-btn svg { flex-shrink: 0; }
    .drawer-ctrl-label { font-family: 'Cormorant SC', serif; font-size: 8px; letter-spacing: 0.18em; line-height: 1; text-transform: uppercase; color: var(--ink-faint); }
    .drawer-ctrl-btn:hover .drawer-ctrl-label { color: var(--gold); }
    /* Font size button specifics */
    .drawer-fs-btn { position: relative; }
    .drawer-fs-icon { font-size: 18px; line-height: 1; font-family: 'Cormorant Garamond', serif; font-weight: 300; }
    .drawer-fs-size { font-family: 'Cormorant SC', serif; font-size: 8px; letter-spacing: 0.18em; color: var(--gold); line-height: 1; }
    /* Close button */
    .drawer-close { background: none; border: none; cursor: pointer; color: var(--ink-faint); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: color 0.2s, background 0.2s; flex-shrink: 0; }
    .drawer-close:hover { color: var(--ink); background: rgba(0,0,0,0.06); }
    .drawer-nav { flex: 1; padding: 8px 0; }
    .drawer-nav ul { list-style: none; margin: 0; padding: 0; }
    .drawer-nav-item { margin: 0; }
    .drawer-nav-link { display: block; padding: 14px 24px; font-family: 'Cormorant Garamond', serif; font-size: calc(18px * var(--fs-scale)); font-weight: 400; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s, background 0.2s; }
    .drawer-nav-link:hover { color: var(--gold); border-left-color: var(--gold); background: rgba(184,160,106,0.06); }
    .drawer-footer { flex-shrink: 0; padding: 0 0 28px; }
    .drawer-divider { height: 0.5px; background: var(--divider); margin: 0 0 4px; }
    .drawer-search { display: flex; align-items: center; gap: 12px; padding: 12px 24px; }
    .drawer-search svg { color: var(--ink-faint); flex-shrink: 0; }
    .drawer-search input { flex: 1; background: none; border: none; border-bottom: 0.5px solid var(--divider); outline: none; font-family: 'EB Garamond', serif; font-size: calc(16px * var(--fs-scale)); color: var(--ink); padding: 6px 0; }
    .drawer-search input::placeholder { color: var(--ink-faint); }
    /* drawer-theme-btn replaced by drawer-ctrl-btn */

    /* ── Desktop-only controls (hidden on mobile) ── */

    /* ── Search overlay — themed with CSS vars ── */
    #search-overlay { position: fixed; top: 0; left: 0; right: 0; background: var(--bg-header); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 0.5px solid var(--divider); z-index: 150; padding: 22px 60px; display: flex; align-items: center; gap: 20px; transform: translateY(-100%); transition: transform 0.35s; }
    #search-overlay.open { transform: translateY(0); }
    #search-overlay input { flex: 1; background: none; border: none; border-bottom: 1px solid var(--divider); color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: calc(26px * var(--fs-scale)); font-weight: 300; padding: 8px 0; outline: none; }
    #search-overlay input::placeholder { color: var(--ink-faint); }
    .search-close { background: none; border: none; color: var(--ink-faint); cursor: pointer; display: flex; align-items: center; padding: 4px; transition: color 0.2s; }
    .search-close:hover { color: var(--ink); }

    /* ─── RESPONSIVE ───────────────────────────────────────── */
    @media (max-width: 960px) {
      .primary-nav { display: none; }
      .header-divider { display: none; }
      .menu-btn { display: flex; }
      .header-top { padding: 14px 16px; }

      /* Logo: perfectly centered on mobile */
      .site-branding { position: absolute; left: 50%; transform: translateX(-50%); }
      .site-branding.logo-shrunk { position: absolute; left: 50%; transform: translateX(-50%) scale(0.8); }
      .header-top { position: relative; }

      /* desktop-only controls hidden on mobile */
      .desktop-only { display: none !important; }

      /* search icon always visible */
      .search-icon-btn { display: flex; }

      /* Search overlay full-width on mobile */
      #search-overlay { padding: 18px 20px; display: none; }
      #search-overlay.open { display: flex; }
    }

    @media (max-width: 900px) {
      .news-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
      /* footer already 2-col on desktop */
    }

    @media (max-width: 600px) {
      .news-grid { grid-template-columns: 1fr; padding: 0 16px; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .letter-body { padding: 40px 20px 60px; }
      .menu-items a { font-size: calc(32px * var(--fs-scale)); }
      /* search-overlay handled in 960px breakpoint */
      .theme-label { display: none; }
      #logo-admin { bottom: 12px; right: 12px; }
      #logo-admin-panel { width: calc(100vw - 24px); max-width: 340px; }
      .news-header { padding: 0 20px; margin-bottom: 32px; }
      .section-title { font-size: clamp(26px, 6vw, 38px); }
      .tpl-hero-title { font-size: clamp(24px, 7vw, 48px); }
      .events-list { padding: 0 20px; }
      #footer { padding: 48px 20px 32px; }
    }
  
/* ═══════════════════════════════════════════════════════════════
   ADDITIONAL LAYOUTS — appended styles
═══════════════════════════════════════════════════════════════ */

/* ─── Shared layout chrome ──────────────────────────────────── */
.page-spacer { height: 90px; }

.content-wrap {
  background: var(--bg-card);
  transition: background 0.4s;
  min-height: 60vh;
}

.content-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 40px 90px;
}

.content-inner-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 40px 90px;
}

/* Page-level hero banner (shared across multiple templates) */
.tpl-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
}
.tpl-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.tpl-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}
.tpl-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 50px 60px;
  max-width: 1280px; margin: 0 auto;
}
.tpl-hero-label {
  font-family: 'Cormorant SC', serif;
  font-size: calc(10px * var(--fs-scale)); letter-spacing: 0.35em;
  color: rgba(255,255,255,0.65);
  display: block; margin-bottom: 10px;
}
.tpl-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(calc(32px * var(--fs-scale)),4vw,calc(58px * var(--fs-scale))); font-weight: 300;
  color: #fff; letter-spacing: 0.04em; line-height: 1.1;
}

/* Entry content (prose) */
.entry-content { font-size: calc(17px * var(--fs-scale)); line-height: 1.85; color: var(--ink-mid); }
.entry-content p { margin-bottom: 28px; }
.entry-content h2 { font-family: 'Cormorant Garamond', serif; font-size: calc(28px * var(--fs-scale)); font-weight: 400; color: var(--ink); margin: 48px 0 18px; }
.entry-content h3 { font-family: 'Cormorant Garamond', serif; font-size: calc(22px * var(--fs-scale)); font-weight: 400; color: var(--ink); margin: 36px 0 14px; }
.entry-content blockquote { border-left: 2px solid var(--gold); padding: 4px 0 4px 28px; margin: 36px 0; font-style: italic; font-size: calc(19px * var(--fs-scale)); color: var(--ink); }
.entry-content img { width: 100%; margin: 36px 0; }
.entry-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { margin: 0 0 28px 24px; }
.entry-content li { margin-bottom: 8px; line-height: 1.75; }

/* Pagination (reusable) */
.tpl-pagination {
  display: flex; justify-content: center;
  gap: 8px; padding: 48px 40px 0; flex-wrap: wrap;
}
.tpl-pagination a, .tpl-pagination span {
  font-family: 'Cormorant SC', serif; font-size: 10px; letter-spacing: 0.2em;
  padding: 8px 14px; border: 1px solid var(--divider);
  color: var(--ink-faint); text-decoration: none; transition: all 0.2s;
}
.tpl-pagination a:hover, .tpl-pagination .current { border-color: var(--gold); color: var(--gold); }

/* Ghost button */
.btn-ghost {
  display: inline-block; padding: 12px 32px;
  border: 1px solid var(--divider);
  font-family: 'Cormorant SC', serif; font-size: 10px; letter-spacing: 0.25em;
  color: var(--ink); text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── SIDEBAR LAYOUT ────────────────────────────────────────── */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  max-width: 1280px; margin: 0 auto;
  padding: 70px 40px 90px;
}

.sidebar-main {}

.sidebar-aside {}

.widget + .widget { margin-top: 48px; }

.widget-title {
  font-family: 'Cormorant SC', serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--divider);
}

/* Recent posts widget */
.sidebar-post-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}
.sidebar-post-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post-thumb {
  width: 64px; height: 64px; object-fit: cover; flex-shrink: 0;
}
.sidebar-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(15px * var(--fs-scale)); line-height: 1.4; color: var(--ink);
  text-decoration: none; display: block; margin-bottom: 4px;
  transition: color 0.2s;
}
.sidebar-post-title:hover { color: var(--gold); }
.sidebar-post-date {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.2em; color: var(--ink-faint);
}

/* Categories widget */
.sidebar-cat-list { list-style: none; }
.sidebar-cat-list li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--divider);
}
.sidebar-cat-list a {
  font-family: 'EB Garamond', serif; font-size: calc(15px * var(--fs-scale));
  color: var(--ink-mid); text-decoration: none; transition: color 0.2s;
}
.sidebar-cat-list a:hover { color: var(--gold); }
.sidebar-cat-count {
  font-family: 'Cormorant SC', serif; font-size: 9px;
  letter-spacing: 0.15em; color: var(--ink-faint);
}

/* Search widget */
.sidebar-search {
  display: flex; gap: 0;
}
.sidebar-search input {
  flex: 1; background: none;
  border-bottom: 1px solid var(--divider);
  color: var(--ink); font-family: 'EB Garamond', serif;
  font-size: calc(15px * var(--fs-scale)); padding: 8px 0; outline: none;
}
.sidebar-search button {
  background: var(--ink); color: var(--bg);
  border: none; padding: 8px 16px;
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.2em; cursor: pointer;
}

@media (max-width: 900px) {
  .sidebar-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── TEAM / PEOPLE ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}

.team-card {
  background: var(--bg-card);
  transition: background 0.4s;
  overflow: hidden;
}

.team-card-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.4s, transform 0.5s;
}

.team-card:hover .team-card-photo {
  filter: brightness(1);
  transform: scale(1.03);
}

.team-card-photo-wrap {
  overflow: hidden;
  position: relative;
}

.team-card-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2a2835, #1a1720);
}

.team-card-body {
  padding: 22px 24px 28px;
  border-top: 2px solid var(--gold);
}

.team-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(20px * var(--fs-scale)); font-weight: 400;
  color: var(--ink); margin-bottom: 4px;
}

.team-card-role {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 12px; display: block;
}

.team-card-bio {
  font-size: calc(14px * var(--fs-scale)); line-height: 1.65;
  color: var(--ink-faint);
}

.team-card-links {
  margin-top: 14px; display: flex; gap: 10px;
}

.team-card-link {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.2em;
  color: var(--ink-faint); text-decoration: none;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.team-card-link:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; padding: 0 20px; } }

/* ─── GALLERY ───────────────────────────────────────────────── */
.gallery-title-block {
  padding: 60px 40px 0;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* Wrapper for the page content / shortcode output */
.gallery-content-wrap {
  background: var(--bg);
  transition: background 0.4s;
  padding: 60px 0 0;
}

/* ── Photonic plugin — GPhotos gallery overrides ─────────────────
   Plugin outputs:
     .photonic-gp-gallery  — column-count masonry wrapper (inline CSS)
     .photonic-gp-tile     — per-image break-inside:avoid block
     .photonic-gp-item     — the <a> link wrapping the img
     img inside           — width:100%; height:auto (natural height)

   The plugin's inline <style> uses column-count masonry with
   height:auto images, so portrait shots dominate and look enormous.
   We convert it to a fixed-height CSS Grid so all thumbnails are
   uniform, and override border-radius to match the theme's sharp
   aesthetic.                                                         */

.photonic-gp-gallery {
  /* Override plugin's inline column-count with CSS Grid */
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 4px !important;
  column-count: unset !important;
  column-gap: unset !important;
  max-width: 75% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.photonic-gp-tile {
  /* Each tile: fixed height, overflow hidden for cover crop */
  break-inside: unset !important;
  margin: 0 !important;
  display: block !important;
  overflow: hidden;
  aspect-ratio: 1 / 1;   /* square thumbnails — change to 4/3 if preferred */
  position: relative;
}

.photonic-gp-item {
  display: block !important;
  width: 100%;
  height: 100%;
}

.photonic-gp-item img {
  /* Override plugin's height:auto — fill the tile with cover crop */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;   /* remove plugin's 10px border-radius */
  display: block !important;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.85);
}

.photonic-gp-tile:hover .photonic-gp-item img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* Fancybox v3 toolbar — match gold/dark theme */
.fancybox-toolbar      { background: rgba(17,16,9,0.88) !important; }
.fancybox-progress     { background: var(--gold) !important; }
.fancybox-button svg   { color: rgba(237,232,224,0.7); }
/* Fancybox v4/5 */
.fancybox__toolbar     { background: rgba(17,16,9,0.88) !important; }
.fancybox__counter     { color: var(--gold) !important; font-family: 'Cormorant SC', serif; letter-spacing: 0.15em; }
.fancybox__progress    { background: var(--gold) !important; }

@media (max-width: 1024px) {
  .photonic-gp-gallery { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 780px) {
  .photonic-gp-gallery { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .photonic-gp-gallery { grid-template-columns: repeat(2, 1fr) !important; gap: 2px !important; }
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; text-align: left; gap: 20px;
}

.faq-question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(19px * var(--fs-scale)); font-weight: 400; color: var(--ink);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0; width: 18px; height: 18px;
  position: relative; color: var(--gold);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 1px;
  transition: transform 0.3s;
}
.faq-icon::before { width: 18px; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after  { width: 1.5px; height: 18px; top: 0; left: 50%; transform: translateX(-50%); }

.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: calc(16px * var(--fs-scale)); line-height: 1.8; color: var(--ink-mid);
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

/* FAQ category tabs */
.faq-tabs {
  display: flex; justify-content: center;
  gap: 4px; flex-wrap: wrap; margin-bottom: 48px;
}
.faq-tab {
  background: none; border: 1px solid var(--divider);
  font-family: 'Cormorant SC', serif; font-size: 9px;
  letter-spacing: 0.22em; color: var(--ink-faint);
  padding: 7px 18px; cursor: pointer; transition: all 0.2s;
}
.faq-tab.active, .faq-tab:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PRESS / MEDIA KIT ─────────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}

.press-card {
  background: var(--bg-card);
  padding: 28px 28px 32px;
  border-top: 2px solid var(--gold);
  transition: background 0.4s;
}

.press-card-outlet {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.press-card-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(18px * var(--fs-scale)); font-weight: 400; line-height: 1.4;
  color: var(--ink); margin-bottom: 10px;
}
.press-card-headline a {
  color: inherit; text-decoration: none; transition: color 0.2s;
}
.press-card-headline a:hover { color: var(--gold); }
.press-card-date {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.2em; color: var(--ink-faint);
}

/* Downloads / asset section */
.press-downloads {
  background: var(--bg); transition: background 0.4s;
  padding: 60px 0 80px;
}
.press-download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.press-download-item {
  background: var(--bg-card); padding: 24px;
  border-top: 2px solid var(--gold);
  transition: background 0.4s;
  display: flex; flex-direction: column; gap: 8px;
}
.press-download-type {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.25em; color: var(--gold);
}
.press-download-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(16px * var(--fs-scale)); color: var(--ink);
}
.press-download-meta {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.15em; color: var(--ink-faint);
}
.press-download-btn {
  margin-top: auto; display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--divider);
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.2em;
  color: var(--ink-faint); text-decoration: none;
  transition: all 0.2s; align-self: flex-start;
}
.press-download-btn:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) { .press-grid { grid-template-columns: 1fr 1fr; } .press-download-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .press-grid { grid-template-columns: 1fr; padding: 0 20px; } .press-download-grid { grid-template-columns: 1fr; padding: 0 20px; } }

/* ─── BLOG WITH FEATURED POST ───────────────────────────────── */
.blog-featured-wrap {
  background: var(--bg);
  transition: background 0.4s;
  padding: 60px 0 100px;
}
.blog-more-header {
  margin-top: 60px;
  padding: 0 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1280px; margin: 0 auto 2px; padding: 0 40px;
}

.featured-post-img-wrap {
  overflow: hidden; position: relative;
  min-height: 480px;
}
.featured-post-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s;
}
.featured-post:hover .featured-post-img { transform: scale(1.04); }
.featured-post-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
}

.featured-post-body {
  background: var(--bg-card);
  padding: 48px 44px;
  display: flex; flex-direction: column;
  justify-content: center;
  border-top: 2px solid var(--gold);
  transition: background 0.4s;
}
.featured-post-label {
  font-family: 'Cormorant SC', serif;
  font-size: calc(11px * var(--fs-scale)); letter-spacing: 0.28em;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.featured-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(calc(22px * var(--fs-scale)),2.5vw,calc(32px * var(--fs-scale))); font-weight: 300;
  line-height: 1.3; color: var(--ink); margin-bottom: 16px;
}
.featured-post-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.featured-post-title a:hover { color: var(--gold); }
.featured-post-excerpt {
  font-size: calc(15px * var(--fs-scale)); line-height: 1.75;
  color: var(--ink-faint); margin-bottom: 28px;
}
.featured-post-meta {
  font-family: 'Cormorant SC', serif;
  font-size: calc(11px * var(--fs-scale)); letter-spacing: 0.2em;
  color: var(--ink-faint); display: flex; gap: 16px;
}

@media (max-width: 900px) {
  .featured-post { grid-template-columns: 1fr; padding: 0 20px; }
  .featured-post-img-wrap { min-height: 280px; }
}

/* ─── LANDING PAGE (no header/footer chrome) ────────────────── */
.landing-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.landing-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.landing-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 100%);
}
.landing-hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 40px;
  max-width: 800px;
}
.landing-eyebrow {
  font-family: 'Cormorant SC', serif;
  font-size: calc(10px * var(--fs-scale)); letter-spacing: 0.4em;
  color: var(--gold); display: block; margin-bottom: 20px;
}
.landing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(calc(40px * var(--fs-scale)),7vw,calc(88px * var(--fs-scale))); font-weight: 300;
  color: #fff; line-height: 1.05; letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.landing-subtitle {
  font-family: 'EB Garamond', serif;
  font-size: calc(18px * var(--fs-scale)); line-height: 1.7;
  color: rgba(255,255,255,0.72); margin-bottom: 44px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.landing-cta {
  display: inline-block; padding: 16px 44px;
  background: var(--gold); color: #fff;
  font-family: 'Cormorant SC', serif;
  font-size: 11px; letter-spacing: 0.28em;
  text-decoration: none; transition: background 0.2s;
}
.landing-cta:hover { background: #9a8455; }
.landing-cta-ghost {
  display: inline-block; padding: 15px 44px;
  border: 1px solid rgba(255,255,255,0.45); color: rgba(255,255,255,0.85);
  font-family: 'Cormorant SC', serif;
  font-size: 11px; letter-spacing: 0.28em;
  text-decoration: none; transition: all 0.2s; margin-left: 12px;
}
.landing-cta-ghost:hover { border-color: #fff; color: #fff; }

/* Landing sections */
.landing-section {
  background: var(--bg); padding: 80px 0; transition: background 0.4s;
}
.landing-section-alt { background: var(--bg-card); }

.landing-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 60px;
}
.landing-two-col-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(calc(28px * var(--fs-scale)),3.5vw,calc(48px * var(--fs-scale))); font-weight: 300;
  color: var(--ink); line-height: 1.2; margin-bottom: 24px;
}
.landing-two-col-text p {
  font-size: calc(16px * var(--fs-scale)); line-height: 1.85;
  color: var(--ink-mid); margin-bottom: 20px;
}
.landing-two-col-img {
  aspect-ratio: 4/3; overflow: hidden;
}
.landing-two-col-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Stats row */
.landing-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.landing-stat {
  background: var(--bg-card); padding: 36px 28px;
  border-top: 2px solid var(--gold); text-align: center;
  transition: background 0.4s;
}
.landing-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(52px * var(--fs-scale)); font-weight: 300; line-height: 1;
  color: var(--ink); margin-bottom: 8px;
}
.landing-stat-label {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--ink-faint); text-transform: uppercase;
}

@media (max-width: 900px) {
  .landing-two-col { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .landing-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .landing-stats { grid-template-columns: 1fr 1fr; padding: 0 20px; }
}

/* ─── EVENTS ────────────────────────────────────────────────── */
.events-list { max-width: 1000px; margin: 0 auto; padding: 0 40px; }

.event-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 32px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid var(--divider);
}

.event-date-block { text-align: center; }
.event-month {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.3em; color: var(--gold);
  display: block; margin-bottom: 4px;
}
.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(40px * var(--fs-scale)); font-weight: 300; line-height: 1;
  color: var(--ink); display: block;
}

.event-body {}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(20px * var(--fs-scale)); font-weight: 400; color: var(--ink);
  text-decoration: none; margin-bottom: 6px; display: block;
  transition: color 0.2s;
}
.event-title:hover { color: var(--gold); }
.event-meta {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.22em;
  color: var(--ink-faint); display: flex; gap: 14px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.event-excerpt { font-size: calc(14px * var(--fs-scale)); line-height: 1.65; color: var(--ink-faint); }

.event-action { align-self: center; }
.event-tag {
  font-family: 'Cormorant SC', serif; font-size: 9px;
  letter-spacing: 0.2em; padding: 6px 14px;
  border: 1px solid var(--divider); color: var(--ink-faint);
}

@media (max-width: 700px) {
  .event-item { grid-template-columns: 60px 1fr; }
  .event-action { grid-column: 2; }
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-card); padding: 80px 0 100px; transition: background 0.4s;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.testimonial-card {
  background: var(--bg); padding: 36px 30px;
  border-top: 2px solid var(--gold);
  transition: background 0.4s;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(18px * var(--fs-scale)); font-weight: 400; font-style: italic;
  line-height: 1.7; color: var(--ink); margin-bottom: 28px;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); font-size: calc(28px * var(--fs-scale)); line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(15px * var(--fs-scale)); color: var(--ink); display: block;
}
.testimonial-role {
  font-family: 'Cormorant SC', serif;
  font-size: 9px; letter-spacing: 0.2em; color: var(--gold);
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; gap: 2px; } }



/* ═══════════════════════════════════════════════════════════
   FONT SIZE OVERRIDES — S / M (default) / L
   Applied via html[data-fs="small"|"large"] attribute set by JS.
   Medium is the default — no overrides needed.
═══════════════════════════════════════════════════════════ */

/* ── Small (85%) ── */
html[data-fs="small"] .logo-slot-formats { font-size: 10.2px; }
html[data-fs="small"] .admin-acf-note { font-size: 11px; }
html[data-fs="small"] .theme-btn .theme-icon { font-size: 10.2px; }
html[data-fs="small"] .font-size-btn .fs-icon { font-size: calc(12.8px * var(--fs-scale)); }
html[data-fs="small"] .primary-nav a { font-size: 11px; }
html[data-fs="small"] .letter-body p { font-size: calc(14px * var(--fs-scale)); }
html[data-fs="small"] .sig-name { font-size: calc(22.1px * var(--fs-scale)); }
html[data-fs="small"] .sig-title { font-size: 10.2px; }
html[data-fs="small"] .section-title { font-size: calc(30.6px * var(--fs-scale)); }
html[data-fs="small"] .news-card-title { font-size: calc(16.1px * var(--fs-scale)); }
html[data-fs="small"] .news-card-excerpt { font-size: 11.9px; }
html[data-fs="small"] .footer-brand .ft-title { font-size: calc(14.4px * var(--fs-scale)); }
html[data-fs="small"] .footer-nav a { font-size: calc(12.8px * var(--fs-scale)); }
html[data-fs="small"] .footer-contact p { font-size: 11.9px; }
html[data-fs="small"] .menu-items a { font-size: calc(44.2px * var(--fs-scale)); }
html[data-fs="small"] .menu-items a::before { font-size: 10.2px; }
html[data-fs="small"] #search-overlay input { font-size: calc(27.2px * var(--fs-scale)); }
html[data-fs="small"] .search-close { font-size: calc(25.5px * var(--fs-scale)); }
html[data-fs="small"] .menu-items a { font-size: calc(30.6px * var(--fs-scale)); }
html[data-fs="small"] .entry-content { font-size: calc(14.4px * var(--fs-scale)); }
html[data-fs="small"] .entry-content h2 { font-size: calc(23.8px * var(--fs-scale)); }
html[data-fs="small"] .entry-content h3 { font-size: calc(18.7px * var(--fs-scale)); }
html[data-fs="small"] .entry-content blockquote { font-size: calc(16.1px * var(--fs-scale)); }
html[data-fs="small"] .sidebar-post-title { font-size: calc(12.8px * var(--fs-scale)); }
html[data-fs="small"] .sidebar-cat-list a { font-size: calc(12.8px * var(--fs-scale)); }
html[data-fs="small"] .sidebar-search input { font-size: calc(12.8px * var(--fs-scale)); }
html[data-fs="small"] .team-card-name { font-size: calc(17px * var(--fs-scale)); }
html[data-fs="small"] .team-card-bio { font-size: 11.9px; }
html[data-fs="small"] .gallery-item-caption { font-size: calc(12.8px * var(--fs-scale)); }
html[data-fs="small"] .lightbox-caption { font-size: calc(13.6px * var(--fs-scale)); }
html[data-fs="small"] .lightbox-nav { font-size: calc(27.2px * var(--fs-scale)); }
html[data-fs="small"] .faq-question-text { font-size: calc(16.1px * var(--fs-scale)); }
html[data-fs="small"] .faq-answer { font-size: calc(13.6px * var(--fs-scale)); }
html[data-fs="small"] .press-card-headline { font-size: calc(15.3px * var(--fs-scale)); }
html[data-fs="small"] .press-download-name { font-size: calc(13.6px * var(--fs-scale)); }
html[data-fs="small"] .featured-post-excerpt { font-size: calc(12.8px * var(--fs-scale)); }
html[data-fs="small"] .landing-subtitle { font-size: calc(15.3px * var(--fs-scale)); }
html[data-fs="small"] .landing-two-col-text p { font-size: calc(13.6px * var(--fs-scale)); }
html[data-fs="small"] .landing-stat-number { font-size: calc(44.2px * var(--fs-scale)); }
html[data-fs="small"] .event-day { font-size: calc(34px * var(--fs-scale)); }
html[data-fs="small"] .event-title { font-size: calc(17px * var(--fs-scale)); }
html[data-fs="small"] .event-excerpt { font-size: 11.9px; }
html[data-fs="small"] .testimonial-quote { font-size: calc(15.3px * var(--fs-scale)); }
html[data-fs="small"] .testimonial-quote::before { font-size: calc(23.8px * var(--fs-scale)); }
html[data-fs="small"] .testimonial-name { font-size: calc(12.8px * var(--fs-scale)); }

/* ── Large (120%) ── */
html[data-fs="large"] .logo-slot-formats { font-size: calc(14.4px * var(--fs-scale)); }
html[data-fs="large"] .admin-acf-note { font-size: calc(15.6px * var(--fs-scale)); }
html[data-fs="large"] .theme-btn .theme-icon { font-size: calc(14.4px * var(--fs-scale)); }
html[data-fs="large"] .font-size-btn .fs-icon { font-size: calc(18px * var(--fs-scale)); }
html[data-fs="large"] .primary-nav a { font-size: calc(15.6px * var(--fs-scale)); }
html[data-fs="large"] .letter-body p { font-size: calc(19.8px * var(--fs-scale)); }
html[data-fs="large"] .sig-name { font-size: calc(31.2px * var(--fs-scale)); }
html[data-fs="large"] .sig-title { font-size: calc(14.4px * var(--fs-scale)); }
html[data-fs="large"] .section-title { font-size: calc(43.2px * var(--fs-scale)); }
html[data-fs="large"] .news-card-title { font-size: calc(22.8px * var(--fs-scale)); }
html[data-fs="large"] .news-card-excerpt { font-size: calc(16.8px * var(--fs-scale)); }
html[data-fs="large"] .footer-brand .ft-title { font-size: calc(20.4px * var(--fs-scale)); }
html[data-fs="large"] .footer-nav a { font-size: calc(18px * var(--fs-scale)); }
html[data-fs="large"] .footer-contact p { font-size: calc(16.8px * var(--fs-scale)); }
html[data-fs="large"] .menu-items a { font-size: calc(62.4px * var(--fs-scale)); }
html[data-fs="large"] .menu-items a::before { font-size: calc(14.4px * var(--fs-scale)); }
html[data-fs="large"] #search-overlay input { font-size: calc(38.4px * var(--fs-scale)); }
html[data-fs="large"] .search-close { font-size: calc(36px * var(--fs-scale)); }
html[data-fs="large"] .menu-items a { font-size: calc(43.2px * var(--fs-scale)); }
html[data-fs="large"] .entry-content { font-size: calc(20.4px * var(--fs-scale)); }
html[data-fs="large"] .entry-content h2 { font-size: calc(33.6px * var(--fs-scale)); }
html[data-fs="large"] .entry-content h3 { font-size: calc(26.4px * var(--fs-scale)); }
html[data-fs="large"] .entry-content blockquote { font-size: calc(22.8px * var(--fs-scale)); }
html[data-fs="large"] .sidebar-post-title { font-size: calc(18px * var(--fs-scale)); }
html[data-fs="large"] .sidebar-cat-list a { font-size: calc(18px * var(--fs-scale)); }
html[data-fs="large"] .sidebar-search input { font-size: calc(18px * var(--fs-scale)); }
html[data-fs="large"] .team-card-name { font-size: calc(24px * var(--fs-scale)); }
html[data-fs="large"] .team-card-bio { font-size: calc(16.8px * var(--fs-scale)); }
html[data-fs="large"] .gallery-item-caption { font-size: calc(18px * var(--fs-scale)); }
html[data-fs="large"] .lightbox-caption { font-size: calc(19.2px * var(--fs-scale)); }
html[data-fs="large"] .lightbox-nav { font-size: calc(38.4px * var(--fs-scale)); }
html[data-fs="large"] .faq-question-text { font-size: calc(22.8px * var(--fs-scale)); }
html[data-fs="large"] .faq-answer { font-size: calc(19.2px * var(--fs-scale)); }
html[data-fs="large"] .press-card-headline { font-size: calc(21.6px * var(--fs-scale)); }
html[data-fs="large"] .press-download-name { font-size: calc(19.2px * var(--fs-scale)); }
html[data-fs="large"] .featured-post-excerpt { font-size: calc(18px * var(--fs-scale)); }
html[data-fs="large"] .landing-subtitle { font-size: calc(21.6px * var(--fs-scale)); }
html[data-fs="large"] .landing-two-col-text p { font-size: calc(19.2px * var(--fs-scale)); }
html[data-fs="large"] .landing-stat-number { font-size: calc(62.4px * var(--fs-scale)); }
html[data-fs="large"] .event-day { font-size: calc(48px * var(--fs-scale)); }
html[data-fs="large"] .event-title { font-size: calc(24px * var(--fs-scale)); }
html[data-fs="large"] .event-excerpt { font-size: calc(16.8px * var(--fs-scale)); }
html[data-fs="large"] .testimonial-quote { font-size: calc(21.6px * var(--fs-scale)); }
html[data-fs="large"] .testimonial-quote::before { font-size: calc(33.6px * var(--fs-scale)); }
html[data-fs="large"] .testimonial-name { font-size: calc(18px * var(--fs-scale)); }
/* ─── Very small screens (≤400px) ──────────────────────────── */
@media (max-width: 400px) {
  .header-top { padding: 12px 16px; }
  .header-left, .header-right { min-width: unset; }
  .menu-btn { gap: 6px; font-size: 9px; }
  .theme-btn, .search-btn { font-size: 9px; }
  .font-size-btn { display: none; }
  .featured-post-body { padding: 24px 16px 28px; }
  .featured-post-title { font-size: clamp(22px, 7vw, 32px); }
  .section-title { font-size: clamp(22px, 8vw, 32px); }
  .sidebar-layout { padding: 40px 16px 60px; }
  .blog-more-header { padding: 0 16px; }
}

/* ─── Contact page mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    padding: 48px 24px 80px !important;
    gap: 40px !important;
  }
}

/* ─── Single post / full-width mobile padding ───────────────── */
@media (max-width: 600px) {
  .entry-content { font-size: calc(15px * var(--fs-scale)); }
  .tpl-hero-content { padding: 40px 24px 32px; }
  .tpl-hero-title { font-size: clamp(22px, 7vw, 36px); }
}

/* ─── Blog featured post mobile ─────────────────────────────── */
@media (max-width: 600px) {
  .blog-featured-wrap { padding: 0 0 60px; }
  .blog-more-header { padding: 0 16px; margin-top: 40px; }
  .featured-post-body { padding: 24px 20px 32px; }
  .featured-post-title { font-size: clamp(22px, 6vw, 32px); }
  .featured-post-excerpt { font-size: calc(14px * var(--fs-scale)); }
}
/* ─── SINGLE POST ───────────────────────────────────────────── */
.single-hero {
  position: relative; height: 60vh; min-height: 400px; overflow: hidden;
}
.single-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
}
.single-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 60px 40px 50px;
  max-width: 800px; margin: 0 auto;
}
.single-meta-line {
  font-family: 'Cormorant SC', serif;
  font-size: calc(10px * var(--fs-scale)); letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.single-meta-line--light { color: var(--gold); margin-bottom: 12px; }

.single-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 300;
  color: #fff; line-height: 1.2;
}
.single-title--ink { color: var(--ink); font-size: clamp(28px, 4vw, 48px); }

.single-title-block {
  padding: 60px 40px 0; max-width: 760px; margin: 0 auto;
}

.single-body {
  max-width: 720px; margin: 0 auto; padding: 70px 40px 90px;
}

.single-author {
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--divider);
  display: flex; gap: 24px; align-items: flex-start;
}
.single-author-avatar {
  border-radius: 50%; flex-shrink: 0;
  width: 64px; height: 64px; object-fit: cover;
}
.single-author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(18px * var(--fs-scale)); color: var(--ink); margin-bottom: 6px;
}
.single-author-bio {
  font-size: calc(14px * var(--fs-scale)); line-height: 1.7; color: var(--ink-faint);
}

.single-related { padding: 60px 0 80px; }

@media (max-width: 600px) {
  .single-hero-content { padding: 40px 20px 32px; }
  .single-title-block { padding: 48px 20px 0; }
  .single-body { padding: 48px 20px 60px; }
  .single-author { flex-direction: column; gap: 16px; }
}

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1280px; margin: 0 auto;
  padding: 80px 40px 100px;
}

.contact-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(32px * var(--fs-scale)); font-weight: 300;
  color: var(--ink); margin-bottom: 24px;
}

.contact-intro {
  font-size: calc(16px * var(--fs-scale)); line-height: 1.8;
  color: var(--ink-mid); margin-bottom: 28px;
}

.contact-detail-row {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
}
.contact-detail-label {
  font-family: 'Cormorant SC', serif;
  font-size: calc(9px * var(--fs-scale)); letter-spacing: 0.25em;
  color: var(--gold); width: 60px; padding-top: 4px; flex-shrink: 0;
}
.contact-detail-value {
  font-size: calc(15px * var(--fs-scale)); color: var(--ink-mid); line-height: 1.6;
}
.contact-detail-value a { color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--gold); }

.contact-alert {
  padding: 14px 18px; margin-bottom: 24px;
  font-family: 'EB Garamond', serif;
  font-size: calc(16px * var(--fs-scale)); color: var(--ink-mid);
}
.contact-alert--success {
  background: rgba(184,160,106,0.12); border-left: 2px solid var(--gold);
}
.contact-alert--error {
  background: rgba(180,40,40,0.07); border-left: 2px solid #b42828;
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.contact-honeypot { display: none; }

.contact-field { display: flex; flex-direction: column; gap: 6px; }

.contact-field-label {
  font-family: 'Cormorant SC', serif;
  font-size: calc(9px * var(--fs-scale)); letter-spacing: 0.25em; color: var(--gold);
}
.contact-field-input {
  background: none; border: none;
  border-bottom: 1px solid var(--divider);
  color: var(--ink); font-family: 'EB Garamond', serif;
  font-size: calc(16px * var(--fs-scale)); padding: 10px 0; outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-field-input:focus { border-bottom-color: var(--gold); }
.contact-field-textarea { resize: vertical; }

.contact-submit {
  align-self: flex-start;
  background: var(--ink); color: var(--bg); border: none;
  padding: 12px 32px;
  font-family: 'Cormorant SC', serif;
  font-size: calc(10px * var(--fs-scale)); letter-spacing: 0.25em;
  cursor: pointer; transition: opacity 0.2s;
}
.contact-submit:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; padding: 48px 24px 80px; gap: 40px; }
}

/* ─── SIDEBAR BLOG — archive list ──────────────────────────── */
.sidebar-wrap {
  background: var(--bg); transition: background 0.4s; padding: 60px 0 100px;
}

.sidebar-header { margin-bottom: 40px; }

.section-title--left { text-align: left; }

.archive-item {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 24px; margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
}
.archive-item-thumb {
  width: 160px; height: 120px; object-fit: cover; display: block;
}
.archive-item-placeholder {
  width: 160px; height: 120px;
  background: linear-gradient(135deg, #2a2835, #1e2530);
  flex-shrink: 0;
}
.archive-item-body {}
.archive-item-cat {
  font-family: 'Cormorant SC', serif;
  font-size: calc(11px * var(--fs-scale)); letter-spacing: 0.25em;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.archive-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(21px * var(--fs-scale)); font-weight: 400;
  line-height: 1.35; margin-bottom: 8px;
}
.archive-item-title a {
  color: var(--ink); text-decoration: none; transition: color 0.2s;
}
.archive-item-title a:hover { color: var(--gold); }
.archive-item-excerpt {
  font-size: calc(14px * var(--fs-scale)); line-height: 1.65;
  color: var(--ink-faint); margin-bottom: 10px;
}
.archive-item-date {
  font-family: 'Cormorant SC', serif;
  font-size: calc(11px * var(--fs-scale)); letter-spacing: 0.2em; color: var(--ink-faint);
}
.archive-empty {
  color: var(--ink-faint); font-size: calc(18px * var(--fs-scale));
  font-family: 'Cormorant Garamond', serif;
}

.sidebar-post-thumb-placeholder {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, #2a2835, #1e2530);
}

@media (max-width: 600px) {
  .archive-item { grid-template-columns: 1fr; }
  .archive-item-thumb, .archive-item-placeholder { width: 100%; height: 200px; }
}

/* contact-info and contact-form-col are the two grid columns inside .contact-grid */
.contact-info {}
.contact-form-col {}

/* ─── SHARED EMPTY STATE ────────────────────────────────────── */
.archive-empty,
.no-results-msg {
  text-align: center; padding: 60px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: calc(20px * var(--fs-scale));
  color: var(--ink-faint);
}

/* ─── SHARED PAGE HEADER (no-hero fallback) ────────────────── */
/* Used when a page has no hero image — sits below the fixed header */
.tpl-page-header {
  padding: 60px 40px 0;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
/* Left-aligned variant for listing pages (team, sidebar archive) */
.tpl-page-header--left {
  text-align: left;
}
/* Wide intro content block above team/press/faq section content */
.tpl-intro-wrap {
  background: var(--bg-card);
  transition: background 0.4s;
  padding: 50px 0 40px;
}
/* Section wrapper with bg for events, team grid, etc */
.tpl-section-wrap {
  background: var(--bg);
  transition: background 0.4s;
  padding: 60px 0 100px;
}
.tpl-section-wrap--card {
  background: var(--bg-card);
}

/* ─── ARCHIVE / INDEX PAGE ──────────────────────────────────── */
.archive-section { padding-top: 40px; }

/* ─── PRESS CARD EXCERPT ────────────────────────────────────── */
.press-card-excerpt {
  font-size: calc(14px * var(--fs-scale));
  line-height: 1.65; color: var(--ink-faint); margin-top: 10px;
}

/* ─── LANDING SECTION-LABEL LEFT VARIANT ───────────────────── */
.section-label--left {
  text-align: left;
  margin-bottom: 14px;
}

/* ─── NEWS CARD CATEGORY ────────────────────────────────────── */
.news-card-cat {
  font-family: 'Cormorant SC', serif;
  font-size: calc(10px * var(--fs-scale)); letter-spacing: 0.28em;
  color: var(--gold); display: block; margin-bottom: 6px;
  text-transform: uppercase;
}

/* ─── SINGLE POST META (date · category · reading time) ─────── */
.single-post-meta {
  margin-bottom: 32px;
}
.post-meta-line {
  font-family: 'Cormorant SC', serif;
  font-size: calc(11px * var(--fs-scale)); letter-spacing: 0.2em;
  color: var(--ink-faint); display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap;
}
.meta-date, .meta-cat, .meta-read { color: var(--ink-faint); }
.meta-cat { color: var(--gold); }
.sep { opacity: 0.4; }

/* ─── LANDING PLACEHOLDER IMAGE ─────────────────────────────── */
.landing-two-col-img--placeholder {
  background: linear-gradient(160deg, #1c1a28, #2a2835);
  min-height: 320px;
}
