@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/jost-300-normal.woff2') format('woff2');
}

  :root {
    --forest-deep: #1a2e1c;
    --forest: #2c3d2e;
    --forest-mid: #3d5540;
    --forest-light: #5a7a5e;
    --moss: #7a9e6e;
    --sage: #b0c4a0;
    --cream: #f5f0e8;
    --cream-70: rgba(245,240,232,0.72);
    --cream-55: rgba(245,240,232,0.65);
    --gold: #c8a84b;
    --gold-light: #e2c878;
    --hairline: rgba(200,168,75,0.28);
  }

  * , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-padding-top: 90px; }
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
  }

  body {
    font-family: 'Jost', 'Segoe UI', sans-serif;
    font-weight: 300;
    background: var(--forest);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
  }

  ::selection { background: var(--gold); color: var(--forest-deep); }

  /* ── Accessibility ─────────────────────────────── */
  .skip-link {
    position: absolute; top: -60px; left: 16px;
    background: var(--cream); color: var(--forest);
    padding: 10px 20px; border-radius: 2px;
    font-size: 0.9rem; font-weight: 500; z-index: 9999; text-decoration: none;
  }
  .skip-link:focus { top: 16px; }

  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* ── Background atmosphere ─────────────────────── */
  .bg-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
  .bg-gradient {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(90,122,94,0.30) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 20% 80%, rgba(26,46,28,0.8) 0%, transparent 60%),
      linear-gradient(175deg, #1a2e1c 0%, #2c3d2e 40%, #3d5540 72%, #24352a 100%);
  }
  .bg-texture {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px);
  }
  .botanical { position: absolute; opacity: 0.06; }

  /* ── Growing vine (desktop) ────────────────────── */
  .vine-wrap {
    position: fixed; left: 0; top: 0; bottom: 0;
    width: 84px; z-index: 2; pointer-events: none;
    display: none;
  }
  @media (min-width: 900px) { .vine-wrap { display: block; } }
  .vine-wrap svg { width: 100%; height: 100%; overflow: visible; }
  /* No vector-effect here: Chromium measures dash patterns in screen px
     under non-scaling-stroke, which desyncs them from getTotalLength()
     once the SVG is stretched to viewport height. */
  .vine-stem {
    fill: none; stroke: var(--sage); stroke-width: 2.2;
    stroke-linecap: round;
    /* Hidden until growth begins: a round line-cap paints a dot at the
       path start even at zero drawn length. */
    opacity: 0; transition: opacity 0.4s ease;
  }
  .vine-stem.visible { opacity: 1; }
  /* Position/rotation live on a wrapper <g>; only scale animates here,
     so the CSS transform never overrides the SVG placement. */
  .vine-branch {
    fill: none; stroke: var(--sage); stroke-width: 1.6;
    stroke-linecap: round;
    stroke-dasharray: 34; stroke-dashoffset: 34;
    opacity: 0;
    transition: stroke-dashoffset 0.9s ease-out, opacity 0.3s ease;
  }
  .vine-branch.on { stroke-dashoffset: 0; opacity: 1; }
  .vine-leaf {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.34, 1.3, 0.64, 1);
    transform: scale(0.15);
    transform-box: fill-box; transform-origin: left center;
  }
  .vine-leaf.leaf-a { fill: var(--moss); }
  .vine-leaf.leaf-b { fill: var(--sage); }
  .vine-leaf.on { opacity: 0.92; transform: scale(1); }
  .vine-leaf.sm.on { transform: scale(0.7); }
  .vine-bloom {
    opacity: 0; transition: opacity 1s ease, transform 1s cubic-bezier(0.34, 1.3, 0.64, 1);
    transform: scale(0.15);
    transform-box: fill-box; transform-origin: center center;
  }
  .vine-bloom.on { opacity: 1; transform: scale(1); }

  /* Mobile progress stem */
  .stem-bar {
    position: fixed; left: 0; bottom: 0; width: 3px; height: 100%;
    z-index: 2; pointer-events: none;
    background: linear-gradient(to top, var(--moss), var(--sage) 70%, var(--gold));
    transform-origin: bottom; transform: scaleY(0);
  }
  @media (min-width: 900px) { .stem-bar { display: none; } }

  /* ── Navigation ────────────────────────────────── */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  .site-nav.scrolled {
    background: rgba(26,46,28,0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--hairline);
  }
  .nav-brand {
    font-weight: 500; font-size: 0.85rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--cream); text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0;
  }
  .nav-brand .diamond {
    width: 6px; height: 6px; background: var(--gold);
    transform: rotate(45deg); display: inline-block;
  }
  .nav-links { display: none; align-items: center; gap: 2rem; list-style: none; }
  @media (min-width: 760px) { .nav-links { display: flex; } }
  .nav-links a {
    font-size: 0.72rem; font-weight: 400; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--cream-55);
    text-decoration: none; padding: 0.6rem 0.2rem;
    transition: color 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--cream); text-decoration: none;
    border: 1px solid var(--hairline); background: rgba(200,168,75,0.07);
    padding: 0.75rem 1.5rem; border-radius: 1px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    display: inline-block;
  }
  .nav-cta:hover { background: rgba(200,168,75,0.16); border-color: rgba(200,168,75,0.6); color: var(--gold-light); }

  /* ── Layout primitives ─────────────────────────── */
  main { position: relative; z-index: 1; }
  @media (min-width: 900px) { main, .site-nav { padding-left: 84px; } }

  .container { width: min(1080px, 90vw); margin: 0 auto; }
  section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

  .eyebrow {
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--sage); margin-bottom: 1.1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500; font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15; color: var(--cream);
    text-wrap: balance; margin-bottom: 1.2rem;
  }
  .section-intro { max-width: 34rem; color: var(--cream-70); font-size: 1rem; margin-bottom: 3rem; }

  .ornament { display: flex; align-items: center; gap: 1rem; max-width: 200px; margin: 0 0 2.2rem; }
  .ornament-line { flex: 1; height: 1px; background: linear-gradient(to right, rgba(200,168,75,0.5), transparent); }
  .ornament-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

  /* ── Hero ──────────────────────────────────────── */
  .hero {
    min-height: 100dvh;
    display: flex; align-items: center;
    padding: 7rem 0 5rem;
    text-align: center;
  }
  .hero .container { display: flex; flex-direction: column; align-items: center; }
  .hero-logo { display: block; width: clamp(180px, 34vw, 320px); height: auto; margin-bottom: 2.4rem; }
  .hero-eyebrow {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.34em;
    text-transform: uppercase; color: var(--sage); margin-bottom: 1.6rem;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500; font-size: clamp(2.3rem, 5.6vw, 4rem);
    line-height: 1.14; text-wrap: balance; max-width: 18em; margin: 0 auto 1.6rem;
  }
  .hero h1 em {
    font-style: italic; font-weight: 400; color: var(--gold-light);
  }
  .hero-sub {
    color: var(--cream-70); font-size: 1.02rem; max-width: 30rem; margin: 0 auto 2.8rem;
  }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--forest-deep); background: var(--gold);
    text-decoration: none; padding: 1.05rem 2.2rem; border-radius: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--cream-70); text-decoration: none; padding: 1.05rem 1.2rem;
    transition: color 0.3s ease;
  }
  .btn-ghost:hover { color: var(--gold-light); }
  .btn-ghost svg { transition: transform 0.3s ease; }
  .btn-ghost:hover svg { transform: translateY(3px); }

  .scroll-cue {
    margin-top: 4rem; width: 1px; height: 64px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative; overflow: hidden;
  }
  @media (prefers-reduced-motion: no-preference) {
    .scroll-cue::after {
      content: ''; position: absolute; left: 0; top: -30%;
      width: 100%; height: 30%;
      background: var(--cream);
      animation: cueDrop 2.6s ease-in-out infinite;
    }
    @keyframes cueDrop {
      0%   { top: -30%; opacity: 0; }
      35%  { opacity: 1; }
      100% { top: 110%; opacity: 0; }
    }
  }

  /* ── Services ──────────────────────────────────── */
  .services-grid {
    display: grid; gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
  .service-card {
    border: 1px solid rgba(200,168,75,0.22);
    background: rgba(38,54,40,0.55);
    backdrop-filter: blur(6px);
    border-radius: 2px; padding: 2.1rem 1.8rem 2rem;
    position: relative; overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,168,75,0.7), transparent);
    opacity: 0; transition: opacity 0.35s ease;
  }
  .service-card:hover { border-color: rgba(200,168,75,0.5); transform: translateY(-4px); background: rgba(44,61,46,0.7); }
  .service-card:hover::before { opacity: 1; }
  .service-motif { margin-bottom: 1.3rem; height: 40px; }
  .service-motif svg { height: 40px; width: auto; overflow: visible; }
  .service-motif .stroke { stroke: var(--sage); fill: none; stroke-width: 1.4; stroke-linecap: round; transition: stroke 0.35s ease; }
  .service-motif .accent { stroke: var(--gold); fill: none; stroke-width: 1.4; stroke-linecap: round; }
  .service-card:hover .stroke { stroke: var(--gold-light); }
  .service-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem; font-weight: 500; margin-bottom: 0.6rem;
  }
  .service-card p { font-size: 0.92rem; color: var(--cream-70); }

  /* ── Approach ──────────────────────────────────── */
  .steps { list-style: none; max-width: 720px; }
  .step {
    display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.4rem;
    padding: 2rem 0; border-bottom: 1px solid rgba(176,196,160,0.15);
    align-items: baseline;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.6rem; font-weight: 400; color: var(--gold);
    line-height: 1; font-variant-numeric: tabular-nums;
  }
  .step h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem; font-weight: 500; margin-bottom: 0.4rem;
  }
  .step p { font-size: 0.95rem; color: var(--cream-70); max-width: 32rem; }

  /* ── Portfolio ─────────────────────────────────── */
  .work-grid {
    display: grid; gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .work-card {
    border: 1px solid rgba(200,168,75,0.22); border-radius: 2px;
    overflow: hidden; background: rgba(26,46,28,0.5);
    transition: border-color 0.35s ease, transform 0.35s ease;
  }
  .work-card:hover { border-color: rgba(200,168,75,0.5); transform: translateY(-4px); }
  .work-frame { aspect-ratio: 4 / 3; display: block; width: 100%; }
  .work-frame svg { width: 100%; height: 100%; display: block; }
  .work-caption { padding: 1.2rem 1.4rem 1.4rem; border-top: 1px solid rgba(200,168,75,0.18); }
  .work-caption h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic; font-weight: 400; font-size: 1.35rem; margin-bottom: 0.3rem;
  }
  .work-caption span {
    font-size: 0.64rem; font-weight: 500; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--sage);
  }
  .work-note {
    margin-top: 2.2rem; font-size: 0.92rem; color: var(--cream-70); max-width: 36rem;
  }
  .work-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

  /* ── About ─────────────────────────────────────── */
  .about-grid { display: grid; gap: 3rem; align-items: center; }
  @media (min-width: 860px) { .about-grid { grid-template-columns: 1.15fr 0.85fr; } }
  .about-copy p { color: var(--cream-70); max-width: 34rem; margin-bottom: 1.2rem; }
  .about-copy p strong { color: var(--cream); font-weight: 400; }
  .about-art { display: flex; justify-content: center; }
  .about-art svg { width: min(320px, 70vw); height: auto; opacity: 0.85; }

  /* ── Season card ───────────────────────────────── */
  .season-band { padding: 0; }
  .season-card {
    border: 1px solid var(--hairline);
    background: rgba(26,46,28,0.6); backdrop-filter: blur(8px);
    border-radius: 2px; padding: clamp(2rem, 5vw, 3.2rem);
    position: relative; overflow: hidden;
    max-width: 760px; margin: 0 auto; text-align: center;
  }
  .season-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .season-label {
    font-size: 0.64rem; font-weight: 500; letter-spacing: 0.34em;
    text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem;
  }
  .season-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(1.25rem, 2.6vw, 1.6rem); line-height: 1.55;
    max-width: 34rem; margin: 0 auto 1.8rem;
  }
  .season-card .btn-ghost { color: var(--gold-light); }
  .season-card .btn-ghost:hover { color: var(--cream); }

  /* ── Contact ───────────────────────────────────── */
  .contact { text-align: center; }
  .contact .section-intro { margin-left: auto; margin-right: auto; }
  .contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
  .contact-link {
    display: inline-flex; align-items: center; gap: 0.7rem;
    text-decoration: none; border: 1px solid rgba(200,168,75,0.35);
    padding: 1rem 1.9rem; border-radius: 1px;
    color: var(--cream); font-size: 0.95rem; letter-spacing: 0.05em;
    background: rgba(200,168,75,0.06);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }
  .contact-link:hover { background: rgba(200,168,75,0.15); border-color: rgba(200,168,75,0.6); color: var(--gold-light); }
  .contact-link svg { opacity: 0.75; flex-shrink: 0; }
  .social-link {
    display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.7rem 0.5rem;
    text-decoration: none; color: var(--cream-55);
    font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
    transition: color 0.3s ease;
  }
  .social-link:hover { color: var(--gold-light); }
  .service-area { margin-top: 2.4rem; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-55); }

  /* ── Footer ────────────────────────────────────── */
  footer {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(176,196,160,0.15);
    padding: 2.4rem 0 2.8rem; text-align: center;
  }
  @media (min-width: 900px) { footer { margin-left: 84px; } }
  .footer-text { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-55); margin-bottom: 0.9rem; }
  .footer-links { display: flex; justify-content: center; gap: 1.8rem; margin-bottom: 1.4rem; }
  .footer-links a {
    font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--cream-55); text-decoration: underline; text-underline-offset: 3px;
    padding: 0.4rem 0.2rem;
  }
  .footer-links a:hover { color: var(--gold-light); }

  /* ── Reveal animation ──────────────────────────── */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.8, 0.36, 1); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.8, 0.36, 1); }
    .reveal-stagger.in > * { opacity: 1; transform: none; }
    .reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
    .reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
    .reveal-stagger.in > *:nth-child(4) { transition-delay: 270ms; }
  }
  @media (prefers-reduced-motion: reduce) {
    .vine-leaf, .vine-bloom { opacity: 1; transform: none; transition: none; }
    .vine-branch { opacity: 1; stroke-dashoffset: 0; transition: none; }
    .scroll-cue::after { animation: none; }
    * { transition-duration: 0.01ms !important; }
  }

/* ── Work-card buttons and photo lightbox ─────────── */
.work-open {
  display: block; width: 100%;
  background: none; border: none; padding: 0; margin: 0;
  color: inherit; font: inherit; text-align: inherit; cursor: pointer;
}
.work-open:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 2px; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox-scrim { position: absolute; inset: 0; background: rgba(10,18,12,0.6); }
.lightbox-panel {
  position: relative; width: min(680px, 94vw);
  background: var(--forest-deep); border: 1px solid var(--hairline);
  border-radius: 3px; padding: 1.2rem 1.4rem 1.4rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.lightbox-head h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.lightbox-close {
  background: none; border: 1px solid var(--hairline); color: var(--cream);
  width: 44px; height: 44px; border-radius: 2px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.lightbox-close:hover { color: var(--gold-light); border-color: rgba(200,168,75,0.6); }
.lightbox-stage { position: relative; }
.lightbox-slide {
  aspect-ratio: 3 / 2; background: var(--forest);
  border: 1px solid rgba(200,168,75,0.18); border-radius: 2px;
  overflow: hidden; position: relative;
}
.lightbox-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(26,46,28,0.85); border: 1px solid var(--hairline);
  color: var(--cream); border-radius: 2px; cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }
.lightbox-nav:hover { color: var(--gold-light); border-color: rgba(200,168,75,0.6); }
.lightbox-nav[disabled] { opacity: 0.35; cursor: default; }
.lightbox-count {
  margin-top: 0.8rem; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-55);
}
@media (prefers-reduced-motion: no-preference) {
  .lightbox-slide img { animation: slideFade 0.25s ease; }
  @keyframes slideFade { from { opacity: 0; } to { opacity: 1; } }
}

/* ── Subpages (privacy, accessibility) ────────────── */
.subpage { position: relative; z-index: 1; min-height: 100vh; padding: 7rem 0 4rem; }
.subpage .container { max-width: 640px; }
.subpage h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 0.6rem; text-wrap: balance;
}
.subpage .updated { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-55); margin-bottom: 2.2rem; }
.subpage h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-size: 1.45rem; margin: 2rem 0 0.6rem; }
.subpage p, .subpage li { color: var(--cream-70); font-size: 0.95rem; margin-bottom: 0.8rem; }
.subpage ul { padding-left: 1.2rem; }
.subpage a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.subpage a:hover { color: var(--cream); }
.back-link { display: inline-block; margin-top: 2.4rem; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-55); text-decoration: none; }
.back-link:hover { color: var(--gold-light); }
