  /* ---------- Rights toast ---------- */
  .rights-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid var(--fg-faint);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 28px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fg-dim);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 99999;
    white-space: nowrap;
  }
  .rights-toast span { color: var(--accent); }
  .rights-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  @media print {
    * { display: none !important; }
  }

  /* ---------- Motion permission prompt (iOS only, JS-injected) ---------- */
  .motion-prompt {
    position: fixed;
    bottom: 32px;
    right: var(--pad);
    padding: 10px 20px;
    border: 1px solid var(--fg-faint);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fg-dim);
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .motion-prompt.show {
    opacity: 1;
    transform: translateY(0);
  }
  .motion-prompt:hover {
    color: var(--accent);
    border-color: var(--accent);
  }
  .motion-hint {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid var(--fg-faint);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 28px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fg-dim);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 500;
  }
  .motion-hint.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  :root {
    --bg: #0a0a0a;
    --bg-elev: #121212;
    --fg: #ededed;
    --fg-dim: #8a8a8a;
    --fg-faint: #4a4a4a;
    --accent: #d96b2b; /* warm orange — adjust later */
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter Tight", system-ui, sans-serif;
    --maxw: 1600px;
    --pad: clamp(20px, 4vw, 56px);
  }

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

  html, body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  /* Custom cursor — hide native on devices that support hover */
  @media (hover: hover) and (pointer: fine) {
    *, *::before, *::after { cursor: none !important; }
  }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 24px; height: 24px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(.2,.7,.2,1),
                height 0.25s cubic-bezier(.2,.7,.2,1),
                background 0.25s ease,
                border-color 0.25s ease,
                opacity 0.2s ease;
    mix-blend-mode: exclusion;
  }
  .cursor.is-hover-image {
    width: 80px; height: 80px;
    background: rgba(217, 107, 43, 0.15);
    border-color: var(--accent);
    mix-blend-mode: normal;
  }
  .cursor.is-hover-link {
    width: 12px; height: 12px;
    background: var(--accent);
    border-color: var(--accent);
  }
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: exclusion;
  }
  @media (hover: none) {
    .cursor, .cursor-dot { display: none; }
  }

  /* Film grain overlay */
  .grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    animation: grain 0.8s steps(6) infinite;
  }
  @keyframes grain {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-5%, 5%); }
    40%  { transform: translate(5%, -5%); }
    60%  { transform: translate(-3%, 3%); }
    80%  { transform: translate(3%, -3%); }
    100% { transform: translate(0, 0); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.2,.7,.2,1),
                transform 1s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; height: auto; user-select: none; -webkit-user-drag: none; }

  /* ---------- Top bar ---------- */
  header.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px var(--pad);
    background: linear-gradient(to bottom, rgba(10,10,10,0.85), rgba(10,10,10,0));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .logo {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
  }

  nav.menu {
    position: fixed;
    top: 0;
    right: var(--pad);
    height: 70px;
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fg-dim);
    z-index: 201;
  }

  nav.menu a {
    position: relative;
    transition: color 0.3s ease;
  }
  nav.menu a:hover { color: var(--fg); }
  nav.menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.35s ease;
  }
  nav.menu a:hover::after { width: 100%; }

  /* ---------- Hamburger (mobile only) ---------- */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--fg);
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), opacity 0.2s ease;
    transform-origin: center;
  }
  /* Animate to X when open */
  .hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  @media (max-width: 900px) {
    .hamburger { display: flex; }

    nav.menu {
      display: none;
      inset: 0;
      height: 100%;
      right: 0;
      background: rgba(10, 10, 10, 0.75);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 48px;
      z-index: 150;
    }
    nav.menu.is-open {
      display: flex;
    }
    nav.menu a {
      font-size: 14px;
      letter-spacing: 0.32em;
    }
    nav.menu a::after { display: none; }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-img {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55)),
      url('images/hero/DSCF1151.jpg') center/cover no-repeat,
      #0a0a0a;
    transform: scale(1.05);
    animation: slowzoom 18s ease-out forwards;
  }

  @keyframes slowzoom {
    to { transform: scale(1.0); }
  }

  .hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--pad) 80px;
  }

  .hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(48px, 8vw, 124px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    max-width: 14ch;
    opacity: 0;
    animation: fadeUp 1.4s 0.4s ease forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero .tag {
    margin-top: 28px;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--fg-dim);
    opacity: 0;
    animation: fadeUp 1.4s 0.8s ease forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.4em;
    padding-left: 0.4em;
    color: var(--fg-dim);
    text-transform: uppercase;
    text-align: center;
    z-index: 3;
    opacity: 0;
    animation: fadeUp 1.4s 1.4s ease forwards;
  }
  .scroll-cue::after {
    content: '';
    display: block;
    width: 1px; height: 28px;
    background: var(--fg-dim);
    margin: 12px auto 0;
    animation: pulse 2.2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.4); }
  }

  /* ---------- Section heading ---------- */
  .section {
    padding: 140px var(--pad) 60px;
    max-width: var(--maxw);
    margin: 0 auto;
  }

  .section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 64px;
    padding-bottom: 24px;
    position: relative;
  }

  /* Drawn-in underline that replaces the old static border */
  .section-head::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--fg-faint);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
    transition-delay: 0.3s;
  }
  .section-head.in::after {
    transform: scaleX(1);
  }

  .section-head h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: -0.01em;
    overflow: hidden;
    line-height: 1.05;
    padding-bottom: 0.05em; /* avoid descender clipping */
  }

  /* Inner wrapper that slides up from behind the mask */
  .section-head h2 .word {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
  }
  .section-head.in h2 .word {
    transform: translateY(0);
  }

  /* Meta label fades in slightly behind the heading */
  .section-head .meta {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--fg-dim);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1);
    transition-delay: 0.5s;
  }
  .section-head.in .meta {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Gallery — CSS columns masonry (photos display at natural ratio, no cropping) ---------- */
  .gallery {
    columns: 3;
    column-gap: 6px;
  }

  .tile {
    position: relative;
    overflow: hidden;
    background: var(--bg-elev);
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 6px;
    display: block;
  }

  .tile--hidden { display: none; }

  .tile img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
  }
  .tile:hover img {
    filter: brightness(1.05);
  }
  /* Fast transition while mouse is actively moving; slow ease-out on leave (no class = default 1.2s) */
  .tile.is-magnetic img {
    transition: transform 0.12s ease-out, filter 0.6s ease;
  }

  /* Touch devices: flight strips always visible */
  @media (hover: none) {
    .tile.flight .flight-strip {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 900px) {
    .gallery { columns: 2; }
    .hero-overlay { padding-bottom: 120px; }
  }
  @media (max-width: 600px) {
    .gallery { columns: 1; }
    .hero-overlay { padding-bottom: 130px; }
  }

  /* ---------- View more ---------- */
  .view-more-btn {
    display: block;
    margin: 8px auto 40px;
    padding: 14px 40px;
    border: 1px solid var(--fg-faint);
    background: transparent;
    color: var(--fg-dim);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .view-more-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }


  /* ---------- Aviation flight strip (in-grid) ---------- */
  .tile.flight .caption { display: none; }

  .flight-strip {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--fg);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }
  .tile.flight:hover .flight-strip {
    opacity: 1;
    transform: translateY(0);
  }
  .flight-strip .number {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--accent);
  }
  .flight-strip .route {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--fg);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  }
  .flight-strip .route .arrow {
    color: var(--fg-dim);
    margin: 0 8px;
  }

  /* ---------- Aviation lightbox metadata — bottom strip (all screen sizes) ---------- */
  .lightbox img {
    max-width: 88vw;
    max-height: 76vh;
  }

  .lightbox-meta {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px clamp(32px, 5vw, 80px) 28px;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--fg-faint);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
    pointer-events: none;
  }
  .lightbox.open .lightbox-meta.has-data {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-meta .meta-divider { display: none; }
  .lightbox-meta .meta-label {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin: 0 10px 0 0;
  }
  .lightbox-meta .meta-value {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--fg);
    margin: 0 48px 0 0;
    line-height: 1;
  }
  .lightbox-meta .meta-value:last-child { margin-right: 0; }
  .lightbox-meta .meta-value.accent { color: var(--accent); }

  /* EXIF strip — same layout as flight strip */
  .lightbox-exif {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px clamp(32px, 5vw, 80px) 28px;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--fg-faint);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
    pointer-events: none;
  }
  .lightbox.open .lightbox-exif.has-data {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-exif .meta-label {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin: 0 10px 0 0;
  }
  .lightbox-exif .meta-value {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--fg);
    margin: 0 48px 0 0;
    line-height: 1;
  }
  .lightbox-exif .meta-value:last-child { margin-right: 0; }
  .lightbox-exif .meta-value.accent { color: var(--accent); }

  @media (max-width: 900px) {
    .lightbox img { max-width: 96vw; max-height: 56vh; }
    .lightbox-meta { padding: 16px var(--pad) 24px; }
    .lightbox-meta .meta-value { font-size: 15px; margin-right: 28px; }
    .lightbox-exif { padding: 16px var(--pad) 24px; }
    .lightbox-exif .meta-value { font-size: 15px; margin-right: 28px; }
  }

  /* ---------- About strip ---------- */
  .about {
    padding: 160px var(--pad);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .about .label {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
  }
  .about p {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.4;
    font-weight: 300;
    color: var(--fg);
  }

  /* ---------- Footer ---------- */
  footer {
    padding: 80px var(--pad) 40px;
    border-top: 1px solid var(--fg-faint);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-dim);
  }
  footer a:hover { color: var(--fg); }
  footer .col h4 {
    font-family: var(--serif);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 20px;
    color: var(--fg);
    margin-bottom: 16px;
  }
  footer .col p, footer .col a { display: block; margin-bottom: 8px; }
  footer .credit {
    grid-column: span 3;
    text-align: center;
    padding-top: 40px;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--fg-faint);
  }
  @media (max-width: 700px) {
    footer { grid-template-columns: 1fr; }
    footer .credit { grid-column: span 1; }
  }

  /* ---------- Lightbox ---------- */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(.2,.7,.2,1);
  }
  .lightbox.open {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox img {
    object-fit: contain;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(.2,.7,.2,1), opacity 0.5s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  }
  .lightbox.open img {
    transform: scale(1);
    opacity: 1;
  }
  .lightbox-close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--fg-faint);
    border-radius: 50%;
    background: transparent;
    color: var(--fg);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  .lightbox-close:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: 1px solid var(--fg-faint);
    border-radius: 50%;
    background: rgba(10,10,10,0.5);
    color: var(--fg);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, color 0.3s ease;
    z-index: 2;
  }
  .lightbox-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .lightbox-nav.prev { left: 32px; }
  .lightbox-nav.next { right: 32px; }
  .lightbox-counter {
    position: absolute;
    top: 32px;
    left: 32px;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--fg-dim);
  }
  @media (max-width: 700px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-nav.prev { left: 12px; }
    .lightbox-nav.next { right: 12px; }
  }

  /* ---------- Dedicated page layouts ---------- */
  .page {
    padding: 180px var(--pad) 120px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
  }

  .page-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 80px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--fg-faint);
  }
  .page-title em {
    font-style: italic;
    color: var(--accent);
  }

  /* About page */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  .about-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--bg-elev);
    overflow: hidden;
    border: 1px solid var(--fg-faint);
  }
  .about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .about-photo .placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--fg-faint);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }
  .about-photo .placeholder::before {
    content: '';
    width: 40px; height: 40px;
    border: 1px solid var(--fg-faint);
    border-radius: 50%;
  }

  .about-body p {
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 24px;
  }
  .about-body p strong {
    font-weight: 400;
    color: var(--accent);
    font-style: italic;
  }
  .about-body .gear {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--fg-faint);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--fg-dim);
    line-height: 2;
  }
  .about-body .gear span { color: var(--fg); }

  .about-body .cta {
    display: inline-block;
    margin-top: 48px;
    padding: 16px 36px;
    border: 1px solid var(--fg);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .about-body .cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0a;
  }

  /* Contact page */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  .contact-intro {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.5;
    font-weight: 300;
  }
  .contact-intro em { font-style: italic; color: var(--accent); }

  .contact-details .row {
    padding: 24px 0;
    border-bottom: 1px solid var(--fg-faint);
  }
  .contact-details .label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 10px;
  }
  .contact-details .value {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
  }
  .contact-details .value a:hover { color: var(--accent); }

  .contact-socials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .contact-socials a {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .contact-socials a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }

  /* Slim footer for sub-pages */
  .slim-footer {
    padding: 40px var(--pad);
    border-top: 1px solid var(--fg-faint);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--fg-faint);
  }
  @media (max-width: 600px) {
    .slim-footer { flex-direction: column; gap: 16px; text-align: center; }
  }

  /* ============================================================
     Responsive overrides
     ============================================================ */

  @media (max-width: 900px) {
    /* Logo fits alongside hamburger */
    .logo { font-size: 20px; letter-spacing: 0.22em; }

    /* Section spacing */
    .section { padding-top: 100px; padding-bottom: 48px; }
    .section-head { margin-bottom: 48px; }

    /* Dedicated pages */
    .page { padding: 130px var(--pad) 80px; }
    .page-title { margin-bottom: 56px; }
  }

  @media (max-width: 600px) {
    /* Logo */
    .logo { font-size: 17px; letter-spacing: 0.18em; }

    /* Section spacing */
    .section { padding-top: 80px; padding-bottom: 36px; }

    /* Stack section heading + meta vertically */
    .section-head {
      flex-direction: column;
      gap: 8px;
      margin-bottom: 36px;
      padding-bottom: 16px;
    }

    /* Hero heading — let it breathe full width */
    .hero h1 { max-width: none; }

    /* Dedicated pages */
    .page { padding: 100px var(--pad) 56px; }
    .page-title {
      font-size: clamp(36px, 10vw, 64px);
      margin-bottom: 40px;
      padding-bottom: 20px;
    }

    /* About / contact body text */
    .about-body p { font-size: clamp(17px, 4.5vw, 28px); }
    .contact-intro { font-size: clamp(17px, 4.5vw, 32px); }

    /* Full-width CTA and view-more */
    .about-body .cta { display: block; text-align: center; }
    .view-more-btn { width: 100%; }

    /* Lightbox image sizing handled in the 900px breakpoint above */
  }
