
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* Skip-to-content link for keyboard & screen-reader users */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: #1c1812;
      color: #faf7f1;
      padding: 0.75rem 1.25rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      z-index: 9999;
    }
    .skip-link:focus { left: 0.5rem; top: 0.5rem; outline: 2px solid #a0724a; }

    :root {
      --ink:       #1c1812;
      --ink-soft:  #3a342a;
      --ground:    #f2ece0;
      --parchment: #faf7f1;
      --stone:     #8c8070;
      --sage:      #6b7c6e;
      --accent:    #a0724a;
      --line:      rgba(28,24,18,0.12);

      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
      
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-xl: 6rem;
    }

    html { scroll-behavior: smooth; }

    ::selection {
      background: var(--accent);
      color: var(--parchment);
    }

    body {
      background: var(--parchment);
      color: var(--ink);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.6rem 4rem;
      background: rgba(250,247,241,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--ink);
      text-decoration: none;
    }

    .nav-links {
      display: flex; gap: 2.5rem; list-style: none;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a:not(.nav-cta)::after {
      content: '';
      position: absolute;
      width: 100%;
      transform: scaleX(0);
      height: 1px;
      bottom: -4px;
      left: 0;
      background-color: var(--accent);
      transform-origin: bottom right;
      transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
    }

    .nav-links a:hover { color: var(--accent); }

    .nav-links a:not(.nav-cta):hover::after {
      transform: scaleX(1);
      transform-origin: bottom left;
    }

    .nav-cta {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--parchment) !important;
      background: var(--ink);
      padding: 0.6rem 1.4rem;
      border-radius: 2px;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--accent) !important; color: var(--parchment) !important; }

    /* Menu Icon Styling */
    .menu-icon {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 26px;
      height: 18px;
      cursor: pointer;
      z-index: 1001;
      position: relative;
    }

    .menu-icon span {
      display: block;
      background-color: #a0724a;
      width: 80%;
      height: 2px;
      /* background-color: var(--ink); */
      transition: all 0.3s ease;
      transform-origin: center;
    }

    /* Menu Icon Open State (Hamburger to X) */
    .menu-icon.open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .menu-icon.open span:nth-child(2) {
      opacity: 0;
    }

    .menu-icon.open span:nth-child(3) {
      transform: translateY(-8.5px) rotate(-45deg);
    }

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 4rem 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(160,114,74,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(107,124,110,0.06) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-text { position: relative; z-index: 1; }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.2s forwards;
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 5.5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.4s forwards;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--ink-soft);
      max-width: 480px;
      line-height: 1.8;
      margin-bottom: 2.8rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.6s forwards;
    }

    .hero-actions {
      display: flex; gap: 1.2rem; align-items: center;
      opacity: 0;
      animation: fadeUp 0.9s 0.8s forwards;
    }

    .btn-primary {
      display: inline-block;
      background: var(--ink);
      color: var(--parchment);
      padding: 0.9rem 2.2rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

    .btn-ghost {
      display: inline-block;
      color: var(--ink-soft);
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid var(--line);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

    /* Hero visual side */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      animation: fadeIn 1.2s 0.5s forwards;
    }

    .hero-image-frame {
      position: relative;
      width: min(420px, 40vw);
      height: min(420px, 40vw);
      display: flex;
      justify-content: center;
      align-items: center;
    }



    .hero-portrait {
      width: 110%;
      height: 110%;
      object-fit: contain;
      position: relative;
      z-index: 5;
      /* Gentle floating animation to bring life to the portrait */
      animation: imageFloat 8s ease-in-out infinite;
      /* Remove previous complex clipping/masking as the new image is self-contained */
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    }

    @keyframes imageFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-10px) scale(1.01); }
    }



    .hero-quote {
      position: absolute;
      bottom: -1.5rem;
      left: -4rem;
      background: var(--parchment);
      border: 1px solid var(--line);
      padding: 1.4rem 1.8rem;
      max-width: 280px;
      box-shadow: 0 12px 40px rgba(28,24,18,0.1);
      z-index: 2;
      opacity: 0;
      animation: fadeUp 0.8s 1.2s forwards;
    }

    .hero-quote::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: var(--accent);
    }

    .hero-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    .hero-quote span {
      display: block;
      margin-top: 0.6rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
    }

    /* ─── SECTION BASE ────────────────────────────────── */
    section {
      padding: var(--space-xl) var(--space-md);
      position: relative;
    }

    @media (max-width: 768px) {
      section {
        padding: var(--space-lg) var(--space-sm);
      }
    }

    /* ─── HEADER ELEMENTS ─────────────────────────────── */
    .section-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: var(--space-sm);
    }

    .section-title {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: var(--space-md);
    }

    .divider {
      width: 0;
      height: 1px;
      background: var(--accent);
      margin-bottom: var(--space-lg);
      transition: width 0.8s var(--ease-out-expo);
    }

    .reveal.active .divider {
      width: 2.5rem;
    }

    /* ─── WORK SECTION ────────────────────────────────── */
    .work-section {
      background: var(--ground);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .work-inner {
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }

    .work-header {
      max-width: 640px;
      margin-bottom: var(--space-lg);
    }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
      gap: var(--space-sm);
    }

    @media (min-width: 1024px) {
      .work-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .work-card {
      position: relative;
      background: var(--parchment);
      border: 1px solid var(--line);
      padding: 2.5rem 2rem;
      overflow: hidden;
      cursor: default;
      transition: transform 0.45s var(--ease-out-expo),
                  box-shadow 0.45s var(--ease-out-quart),
                  z-index 0s;
    }

    .work-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s var(--ease-out-expo);
    }

    .work-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px -12px rgba(28, 24, 18, 0.12);
      z-index: 2;
    }

    .work-card:hover::before {
      transform: scaleX(1);
    }

    .work-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      margin-bottom: 1.25rem;
    }

    .work-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .work-card h3 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.35rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }

    .work-card p {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--ink-soft);
      margin: 0;
    }

    /* ─── SCROLL REVEALS ──────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s var(--ease-out-expo),
                  transform 0.9s var(--ease-out-expo);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger grid items */
    .work-grid .reveal:nth-child(1) { transition-delay: 0.08s; }
    .work-grid .reveal:nth-child(2) { transition-delay: 0.16s; }
    .work-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
    .work-grid .reveal:nth-child(4) { transition-delay: 0.08s; }
    .work-grid .reveal:nth-child(5) { transition-delay: 0.16s; }
    .work-grid .reveal:nth-child(6) { transition-delay: 0.24s; }

    /* ─── ACCESSIBILITY ───────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      
      .reveal,
      .divider,
      .work-card,
      .work-card::before {
        transition: none !important;
      }
      
      .reveal {
        opacity: 1;
        transform: none;
      }
      
      .divider {
        width: 2.5rem;
      }
    }

    .work-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* ─── ABOUT ───────────────────────────────────────── */
    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 6rem;
      align-items: center;
    }


    .about-portrait {
      position: relative;
    }

    .portrait-box {
      width: 100%;
      padding-bottom: 120%;
      position: relative;
      overflow: hidden;
      background: var(--ground);
    }

    .portrait-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .portrait-box::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(28,24,18,0.15) 0%, transparent 40%);
      pointer-events: none;
    }

    .portrait-accent-bar {
      position: absolute;
      left: -0.75rem;
      top: 2rem;
      bottom: 2rem;
      width: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    .portrait-caption {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--ink);
      color: var(--parchment);
      padding: 1.2rem 1.5rem;
    }

    .portrait-caption strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
    }

    .portrait-caption small {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(250,247,241,0.6);
    }

    .about-text p {
      font-size: 1rem;
      color: var(--ink-soft);
      line-height: 1.9;
      margin-bottom: 1.4rem;
    }

    .about-text p:first-of-type {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-style: italic;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.65;
    }

    /* ─── HOW IT WORKS ────────────────────────────────── */
    .how-section {
      background: var(--ink);
      color: var(--parchment);
    }

    .how-section .section-label { color: var(--accent); }
    .how-section .section-title { color: var(--parchment); }
    .how-section .divider { background: var(--accent); }

    .how-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .how-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .how-subtext {
      font-size: 1rem;
      color: rgba(242,236,224,0.65);
      line-height: 1.85;
      align-self: end;
    }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(242,236,224,0.1);
      border: 1px solid rgba(242,236,224,0.1);
    }

    .step {
      padding: 2.5rem 2rem;
      background: var(--ink);
      transition: background 0.25s;
    }

    .step:hover { background: var(--ink-soft); }

    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: rgba(160,114,74,0.35);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .step h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--ground);
      margin-bottom: 0.7rem;
    }

    .step p {
      font-size: 0.88rem;
      color: rgba(242,236,224,0.55);
      line-height: 1.75;
    }

    /* ─── DONATION MODEL ──────────────────────────────── */
    .donation-section {
      background: var(--ground);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }


    .donation-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .donation-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-style: italic;
      font-weight: 300;
      line-height: 1.5;
      color: var(--ink);
      margin: 2rem 0;
      padding: 2rem 3rem;
      border-left: 3px solid var(--accent);
      text-align: left;
      background: var(--parchment);
    }

    .donation-sub {
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.85;
      margin-top: 1.5rem;
    }

    /* ─── SESSIONS ────────────────────────────────────── */
    .sessions-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .sessions-header {
      max-width: 560px;
      margin-bottom: 3.5rem;
    }

    .sessions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .session-card {
      border: 1px solid var(--line);
      padding: 2.5rem 2rem;
      position: relative;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .session-card:hover {
      border-color: var(--accent);
      box-shadow: 0 12px 40px rgba(28,24,18,0.07);
    }

    .session-card.featured {
      border-color: var(--accent);
      background: linear-gradient(160deg, rgba(160,114,74,0.04), transparent);
    }

    .session-badge {
      position: absolute;
      top: -1px;
      right: -1px;
      background: linear-gradient(110deg, var(--accent), #b56d35, #7e4c19);
      /* background: var(--accent); */
      color: var(--parchment);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: 0 0 0 8px;
    }

    .session-duration {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.8rem;
    }

    .session-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.8rem;
      color: var(--ink);
    }

    .session-card p {
      font-size: 0.9rem;
      color: var(--ink-soft);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .session-link {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(160,114,74,0.3);
      padding-bottom: 2px;
      transition: border-color 0.2s;
    }

    .session-link:hover { border-color: var(--accent); }

    /* ─── BOOKING CTA ─────────────────────────────────── */
    .booking-section {
      background: var(--ink);
      text-align: center;
      padding: 7rem 4rem;
    }

    .booking-inner { max-width: 640px; margin: 0 auto; }

    .booking-section .section-label { color: var(--accent); margin-bottom: 1.5rem; }

    .booking-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--parchment);
      margin-bottom: 1.5rem;
    }

    .booking-title em { font-style: italic; color: var(--accent); }

    .booking-sub {
      font-size: 0.95rem;
      color: rgba(242,236,224,0.6);
      line-height: 1.85;
      margin-bottom: 2.8rem;
    }

    .btn-light {
      display: inline-block;
      background: var(--ground);
      color: var(--ink);
      padding: 1rem 2.6rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-light:hover { background: var(--accent); color: var(--parchment); transform: translateY(-1px); }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--ink);
      border-top: 1px solid rgba(242,236,224,0.08);
      padding: 3rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--ground);
      text-decoration: none;
    }

    .footer-links {
      display: flex; gap: 2rem; list-style: none;
    }

    .footer-links a {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(242,236,224,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--accent); }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(242,236,224,0.25);
    }

    /* ─── CONTACT FORM ────────────────────────────────── */
    .contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--ground);
      border: 1px solid var(--line);
      border-radius: 2px;
      padding: 0.85rem 1rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      width: 100%;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--stone);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(160,114,74,0.1);
    }

    .form-group textarea { resize: vertical; min-height: 130px; }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238c8070' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-footer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .form-note {
      font-size: 0.82rem;
      color: var(--stone);
      font-style: italic;
    }

    .btn-submit {
      background: var(--ink);
      color: var(--parchment);
      border: none;
      padding: 0.9rem 2.4rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-submit:hover { background: var(--accent); transform: translateY(-1px); }

    .form-success {
      display: none;
      background: rgba(107,124,110,0.1);
      border: 1px solid var(--sage);
      color: var(--sage);
      padding: 1rem 1.5rem;
      font-size: 0.9rem;
      border-radius: 2px;
    }

    .form-success span { margin-right: 0.5rem; font-weight: 500; }

    @media (max-width: 900px) {
      .form-row { grid-template-columns: 1fr; }
      .form-footer-row { flex-direction: column; align-items: flex-start; }
    }

    /* ─── ANIMATIONS ──────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }


    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── MOBILE ──────────────────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-logo { font-size: 2.6rem; }
      .menu-icon { display: flex; }
      
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--parchment);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
      }

      .nav-cta { display: inline-block; padding: 0.55rem 1.1rem; font-size: 0.75rem; }
      section { padding: 4rem 1.5rem; }
      .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 4rem; gap: 2rem; }
      
      .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      /* Show hero image on mobile, just smaller */
      .hero-visual {
        order: -1;
        justify-self: center;
        margin-bottom: 1rem;
        flex-direction: column; /* Stack image and quote */
      }

      .hero-image-frame {
        width: min(320px, 80vw);
        height: min(320px, 80vw);
      }

      .hero-quote {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1.5rem auto 0;
        text-align: left; /* Keep quote text left-aligned for readability */
        max-width: min(320px, 100%);
      }

      .hero-actions { flex-wrap: wrap; gap: 1rem; justify-content: center; }
      .btn-primary { padding: 0.95rem 1.8rem; min-height: 44px; }
      .work-grid { grid-template-columns: 1fr; }
      .about-inner { grid-template-columns: 1fr; gap: 3rem; }
      .about-portrait { max-width: 480px; margin: 0 auto; width: 100%; }
      .portrait-box { padding-bottom: 130%; }
      .portrait-caption { right: 0.5rem; bottom: -1rem; padding: 1rem 1.2rem; }
      .portrait-accent-bar { display: none; }
      .how-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .how-steps { grid-template-columns: 1fr 1fr; }
      .step { padding: 4px 8px }
      .sessions-grid { grid-template-columns: 1fr; }
      .booking-section { padding: 5rem 1.5rem; }
      footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2.5rem 1.5rem; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
      .donation-quote { padding: 1.5rem; }
    }

    /* Tighter breakpoint for very small phones (iPhone SE etc.) */
    @media (max-width: 380px) {
      nav { padding: 1rem 1rem; }
      .nav-logo { font-size: 1.9rem; }
      .nav-cta { padding: 0.5rem 0.85rem; font-size: 0.72rem; letter-spacing: 0.08em; }
      section { padding: 3rem 1.1rem; }
      .hero { padding: 6.5rem 1.1rem 3rem; }
      .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
      .hero-sub { font-size: 0.98rem; }
      .donation-quote { padding: 1.2rem; }
    }

    /* Honour the user's reduced-motion preference */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
      .hero-eyebrow, .hero-headline, .hero-sub, .hero-actions, .hero-visual, .hero-quote { opacity: 1 !important; animation: none !important; }
    }