*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    .reveal { opacity: 1; transform: none; }
    .js-ready .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
    :root {
      --green-deep:    #1B3226;
      --green-mid:     #2A4D3A;
      --amber:         #C4813A;
      --amber-light:   #D9A055;
      --sand:          #F4EDDF;
      --warm-white:    #FDFAF5;
      --text-dark:     #1a1a1a;
      --text-mid:      #4a4a4a;
      --text-light:    #888;
      --border:        rgba(27,50,38,0.1);
      --font-display:  'Cormorant Garamond', Georgia, serif;
      --font-body:     'DM Sans', system-ui, sans-serif;
      --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    }
    body { font-family: var(--font-body); background: var(--warm-white); color: var(--text-dark); line-height: 1.7; }

    /* ── NAV ── */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 clamp(1.5rem, 5vw, 4rem); height: 103px; display: flex; align-items: center; justify-content: space-between; background: rgba(253,250,245,0.96); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo-img { height: 66px; width: auto; max-width: 220px; object-fit: contain; transition: opacity 0.2s; }
    .nav-logo:hover .nav-logo-img { opacity: 0.85; }
    .nav-links { display: flex; align-items: center; gap: 1.2rem; list-style: none; }
    .nav-links a { font-size: 1.00rem; font-weight: 500; color: var(--text-mid); position: relative; transition: color 0.2s; text-decoration: none; }
    .nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 100%; height: 1.5px; background: var(--amber); transition: right 0.3s var(--ease-out); }
    .nav-links a:hover, .nav-links a.active { color: var(--green-deep); }
    .nav-links a:hover::after, .nav-links a.active::after { right: 0; }
    .nav-cta { background: var(--green-deep) !important; color: var(--warm-white) !important; padding: 0.55rem 1.3rem; border-radius: 4px; font-size: 0.8rem !important; font-weight: 600 !important; }
    .nav-cta::after { display: none !important; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; }
    .nav-mobile { display: none; position: fixed; inset: 0; background: var(--warm-white); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .nav-mobile.open { opacity: 1; pointer-events: all; }
    .nav-mobile a { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); font-weight: 400; color: var(--green-deep); text-decoration: none; }
    .mob-cta { background: var(--green-deep); color: var(--warm-white) !important; padding: 0.8rem 2rem; border-radius: 4px; font-size: 1rem !important; }

    /* ── PAGE ── */
    .page-wrap { max-width: 860px; margin: 0 auto; padding: calc(86px + 4rem) clamp(1.5rem, 5vw, 3rem) 6rem; }

    .page-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; }
    .page-eyebrow-line { width: 32px; height: 1.5px; background: var(--amber); }
    .page-eyebrow span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); }

    .page-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 400; color: var(--green-deep); line-height: 1.1; margin-bottom: 0.5rem; }
    .page-title em { font-style: italic; color: var(--amber); }
    .page-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }

    .ml-section { margin-bottom: 3rem; }
    .ml-section h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--green-deep); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
    .ml-section h3 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin: 1.2rem 0 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .ml-section p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0.6rem; line-height: 1.8; }
    .ml-section a { color: var(--amber); text-decoration: none; }
    .ml-section a:hover { text-decoration: underline; }
    .info-card { background: var(--sand); border: 1px solid var(--border); border-radius: 8px; padding: 1.4rem 1.6rem; margin-bottom: 1rem; }
    .info-card p { margin-bottom: 0.3rem; }
    .info-card p:last-child { margin-bottom: 0; }
    .info-label { font-weight: 600; color: var(--green-deep); }

    /* ── FOOTER ── */
    .footer { background: var(--green-deep); color: rgba(255,255,255,0.6); padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem; }
    .footer-inner { max-width: 1400px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-logo { margin-bottom: 1rem; }
    .footer-brand-desc { font-size: 1.00rem; line-height: 1.7; margin-bottom: 1rem; }
    .footer-nimp { display: inline-block; background: rgba(196,129,58,0.15); border: 1px solid rgba(196,129,58,0.3); color: var(--amber-light); font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 3px; letter-spacing: 0.08em; }
    .footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: rgba(255,255,255,0.55); font-size: 1.00rem; text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--amber-light); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--amber-light); }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
    }