  :root {
    --bg: #0c0b09;
    --bg2: #111009;
    --fg: #ffffff;
    --fg-dim: rgba(255,255,255,0.65);
    --accent-blue: #99ccff;
    --accent-amber: oklch(68% 0.16 72);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.01em;
    overflow-x: hidden;
  }

  /* ─── GRAIN OVERLAY ─────────────────────────────── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }

  /* ─── NAV ──────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    mix-blend-mode: normal;
    transition: background 0.4s;
  }

  nav.scrolled {
    background: rgba(12,11,9,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.65);
    transition: text-shadow 0.4s;
  }

  nav.scrolled .nav-name,
  nav.scrolled .nav-links a {
    text-shadow: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.4s;
    text-shadow: 0 1px 8px rgba(0,0,0,0.65);
  }

  .nav-links a:hover { color: var(--accent-blue); }

  /* ─── HERO ─────────────────────────────────────── */
  #hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.06) translateY(0px);
    will-change: transform;
  }

  .hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0;
    transition: opacity 2.4s ease;
  }

  .hero-bg-slide.active {
    opacity: 1;
  }

  .hero-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(12,11,9,0.75) 0%,
      rgba(12,11,9,0.32) 25%,
      transparent 45%,
      transparent 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 96px 48px 0;
    width: 100%;
  }

  .hero-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.65);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 8vw, 116px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.5s forwards;
  }

  .hero-title-first {
    color: var(--hero-color-1, #d99a86);
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    transition: color 2.4s ease;
  }

  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--hero-color-2, #a9c4ea);
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    transition: color 2.4s ease;
  }

  .hero-sub {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.65);
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s 0.8s forwards;
  }

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

  /* ─── HERO NAV (prev/dots/next) ─────────────────── */
  .hero-nav {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .hero-nav-arrow {
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 20px;
    font-family: var(--sans);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.2s;
  }

  .hero-nav-arrow:hover { color: #ffffff; }

  .hero-nav-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: 220px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-nav-dots::-webkit-scrollbar { display: none; }

  .hero-nav-dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .hero-nav-dot:hover { background: rgba(255,255,255,0.6); }

  .hero-nav-dot.active {
    background: #ffffff;
    transform: scale(1.4);
  }

  @media (max-width: 560px) {
    .hero-nav { gap: 12px; bottom: 20px; }
    .hero-nav-dots { max-width: 160px; gap: 5px; }
  }

  /* ─── SECTION SHARED ───────────────────────────── */
  section { padding: 100px 48px; }

  .section-label {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
  }

  a.section-label {
    text-decoration: none;
    transition: color 0.2s;
  }

  a.section-label:hover { color: var(--accent-blue); }

  /* ─── GALLERY ──────────────────────────────────── */
  #gallery {
    padding-top: 80px;
  }

  .series-block {
    margin-bottom: 96px;
  }

  .series-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    font-style: italic;
    color: var(--fg);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .series-desc {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--fg-dim);
    margin-bottom: 36px;
    max-width: 420px;
    line-height: 1.7;
  }

  /* Masonry grid */
  .masonry {
    columns: 3;
    column-gap: 16px;
  }

  /* Featured row: spans every masonry column so its works read as one row */
  .featured-row {
    column-span: all;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }

  /* ─── GALLERY PREVIEW (homepage only) ──────────── */
  .gallery-preview {
    position: relative;
    max-height: 1150px;
    overflow: hidden;
  }

  .gallery-preview::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 220px;
    background: linear-gradient(to bottom, transparent, var(--bg) 88%);
    pointer-events: none;
  }

  .gallery-more-link {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
    transition: color 0.2s;
  }

  .gallery-more-link:hover { color: var(--accent-blue); }

  .gallery-more-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }

  .section-label-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
  }

  .section-label-row .section-label {
    flex: 1;
    margin-bottom: 0;
  }

  .gallery-more-link-inline {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
    transition: color 0.2s;
  }

  .gallery-more-link-inline:hover { color: var(--accent-blue); }

  .gallery-more-link-inline svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }

  /* ─── NAV HAMBURGER ─────────────────────────────── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
  }

  .nav-hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: #ffffff;
    transition: transform 0.3s, opacity 0.2s, background 0.2s;
    transform-origin: center;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--fg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--fg); }

  .masonry-dots { display: none; }

  @media (max-width: 900px) {
    .masonry { columns: 2; }
  }
  @media (max-width: 560px) {
    nav { padding: 20px 24px; }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: rgba(10,9,7,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(255,255,255,0.06);
      flex-direction: column;
      gap: 0;
      padding: 0 24px 16px;
      display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 16px 0; font-size: 12px; }
    .nav-hamburger { display: flex; }

    section { padding: 80px 24px; }
    .hero-content { padding: 80px 24px 0; }
    .hero-bg-slide { background-position: center 40%; }
    .feature-strip-label { left: 24px; }
    .contact-widget { padding: 24px; }
    .footer-bottom { padding: 24px; }
    .divider { margin: 0 24px; width: calc(100% - 48px); }

    .gallery-filter, .contact-subject-btn { padding: 10px 14px; }

    .gallery-preview { max-height: 640px; }

    .masonry {
      columns: unset;
      display: flex;
      gap: 12px;
      margin: 0 -24px;
      overflow-x: auto;
      padding: 0 24px 14px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .masonry::-webkit-scrollbar { display: none; }
    .featured-row { display: contents; }
    .work-item {
      flex: 0 0 72vw;
      aspect-ratio: 3/4;
      break-inside: unset;
      margin-bottom: 0;
      scroll-snap-align: start;
    }
    .work-item img { height: 100%; object-fit: cover; }
    .work-item-info { opacity: 1; transform: translateY(0); }
    .stagger-children .work-item,
    .stagger-children.visible .work-item {
      opacity: 1;
      transform: none;
      transition: none;
    }
    #lightbox-prev, #lightbox-next {
      width: 44px; height: 44px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.13);
      border-radius: 50%;
      font-size: 22px;
      color: rgba(255,255,255,0.85);
      top: 50%;
      transform: translateY(-50%);
    }
    #lightbox-prev { left: 10px; }
    #lightbox-next { right: 10px; }
    #lightbox-dots { display: flex; margin-top: 4px; }
    .lb-dot { width: 7px; height: 7px; background: rgba(255,255,255,0.35); }
    .lb-dot.active { background: var(--fg); }
    #lightbox-swipe-hint { display: block; }

    .masonry-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 12px;
    }

    .masonry-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      transition: background 0.2s, transform 0.2s;
      flex-shrink: 0;
    }

    .masonry-dot.active {
      background: rgba(255,255,255,0.75);
      transform: scale(1.4);
    }
  }

  .work-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #1a1916;
  }

  .work-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
    opacity: 0.92;
  }

  .work-item:hover img {
    transform: scale(1.04);
    opacity: 1;
  }

  .work-item-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(12,11,9,0.88) 0%, transparent 100%);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
  }

  .work-item:hover .work-item-info {
    opacity: 1;
    transform: translateY(0);
  }

  .work-item-name {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--fg);
    line-height: 1.3;
  }

  .work-item-medium {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-top: 4px;
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* Stagger children */
  .stagger-children .work-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .stagger-children.visible .work-item:nth-child(1) { transition-delay: 0s; }
  .stagger-children.visible .work-item:nth-child(2) { transition-delay: 0.08s; }
  .stagger-children.visible .work-item:nth-child(3) { transition-delay: 0.16s; }
  .stagger-children.visible .work-item:nth-child(4) { transition-delay: 0.24s; }
  .stagger-children.visible .work-item:nth-child(5) { transition-delay: 0.32s; }
  .stagger-children.visible .work-item:nth-child(6) { transition-delay: 0.40s; }
  .stagger-children.visible .work-item:nth-child(7) { transition-delay: 0.48s; }
  .stagger-children.visible .work-item:nth-child(8) { transition-delay: 0.56s; }
  .stagger-children.visible .work-item:nth-child(9) { transition-delay: 0.64s; }

  .stagger-children.visible .work-item {
    opacity: 1;
    transform: none;
  }

  /* ─── DIVIDER ──────────────────────────────────── */
  .divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin: 0 48px;
    width: calc(100% - 96px);
  }

  /* ─── FEATURE STRIP ────────────────────────────── */
  .feature-strip {
    width: 100%;
    overflow: hidden;
    background: var(--bg2);
    padding: 72px 0;
    position: relative;
  }

  .feature-strip-inner {
    display: flex;
    gap: 3px;
  }

  .feature-img {
    flex: 0 0 auto;
    height: 380px;
    overflow: hidden;
  }

  .feature-img img {
    height: 100%;
    width: auto;
    display: block;
    filter: grayscale(12%);
    transition: filter 0.4s;
  }

  .feature-img:hover img { filter: grayscale(0%); }

  .feature-strip-label {
    position: absolute;
    top: 28px;
    left: 48px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg-dim);
  }

  /* ─── ABOUT SECTION ────────────────────────────── */
  #about { padding: 100px 48px; }

  .about-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    max-width: 960px;
    margin: 0 auto;
    align-items: center;
  }

  .about-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .about-bio {
    font-family: var(--serif);
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fg-dim);
  }

  @media (max-width: 768px) {
    .about-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      max-width: 480px;
    }
  }

  /* ─── INSTAGRAM SECTION ────────────────────────── */
  #instagram {
    padding: 100px 48px;
    text-align: center;
  }

  .ig-heading {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .ig-sub {
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--fg-dim);
    margin-bottom: 40px;
  }

  .ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
    transition: color 0.2s;
  }

  .ig-btn:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
  }

  .ig-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }

  /* ─── CONTACT ──────────────────────────────────── */
  #contact {
    padding: 80px 48px 120px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }

  /* ─── GALLERY FILTERS ──────────────────────────── */
  .gallery-filter-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 56px;
  }

  .gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .series-row-label {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-right: 4px;
    opacity: 0.6;
  }

  .series-filter {
    padding: 6px 14px;
    font-size: 12px;
    font-family: var(--serif);
    font-style: italic;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.18);
    background: none;
    color: var(--fg-dim);
    cursor: pointer;
    transition: all 0.2s;
  }

  .series-filter:hover {
    border-color: rgba(255,255,255,0.45);
    color: var(--fg);
  }

  .series-filter.active {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  .gallery-filter {
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    background: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--sans);
  }

  .gallery-filter:hover {
    border-color: rgba(255,255,255,0.6);
    color: var(--fg);
  }

  .gallery-filter.active {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  /* ─── CONTACT WIDGET ───────────────────────────── */
  .contact-widget {
    border: 1px solid rgba(255,255,255,0.28);
    padding: 40px;
    max-width: 640px;
  }

  .contact-subject-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 12px;
  }

  .contact-subject-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .contact-subject-btn {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    background: none;
    color: var(--fg-dim);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--sans);
  }

  .contact-subject-btn:hover {
    border-color: rgba(255,255,255,0.6);
    color: var(--fg);
  }

  .contact-subject-btn.active {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 24px;
  }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  @media (max-width: 560px) {
    .contact-form-row { grid-template-columns: 1fr; gap: 16px; }
  }

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

  .contact-field label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg-dim);
  }

  .contact-field-optional {
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.6;
  }

  .contact-field input,
  .contact-field textarea {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--fg);
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 12px;
    transition: border-color 0.2s;
  }

  .contact-field input:focus,
  .contact-field textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
  }

  .contact-field textarea {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
  }

  .contact-submit-btn {
    align-self: flex-start;
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    background: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--sans);
  }

  .contact-submit-btn:hover:not(:disabled) {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  .contact-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .contact-status {
    font-size: 13px;
    min-height: 18px;
  }

  .contact-status.success { color: var(--accent-blue); }
  .contact-status.error { color: #e08a7a; }

  .footer-bottom {
    padding: 28px 48px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--fg-dim);
  }

  /* ─── LIGHTBOX ─────────────────────────────────── */
  #lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(8,7,6,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    cursor: pointer;
  }

  #lightbox.open {
    opacity: 1;
    pointer-events: all;
  }

  #lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #lightbox img {
    max-width: 85vw;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.96);
    cursor: default;
  }

  #lightbox.open img {
    transform: scale(1);
  }

  #lightbox-info {
    text-align: center;
  }

  #lightbox-title {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--fg);
  }

  #lightbox-medium {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-top: 6px;
  }

  #lightbox-close {
    position: absolute;
    top: 28px; right: 36px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-dim);
    cursor: pointer;
    background: none;
    border: none;
    color: var(--fg-dim);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #lightbox-close:hover { color: var(--fg); }

  #lightbox-prev, #lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--fg-dim);
    font-size: 32px;
    font-weight: 200;
    font-family: var(--sans);
    cursor: pointer;
    padding: 24px 20px;
    transition: color 0.2s;
    line-height: 1;
  }

  #lightbox-prev { left: 12px; }
  #lightbox-next { right: 12px; }

  #lightbox-prev:hover, #lightbox-next:hover { color: var(--fg); }

  #lightbox-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 0 32px;
  }

  .lb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(232,226,216,0.25);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    cursor: pointer;
  }

  .lb-dot.active {
    background: var(--fg);
    transform: scale(1.4);
  }

  #lightbox-swipe-hint {
    display: none;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-top: 6px;
  }

  /* ─── TWEAKS PANEL ─────────────────────────────── */
  #tweaks-panel {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 900;
    background: rgba(20,19,16,0.97);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    padding: 24px;
    width: 240px;
    display: none;
    flex-direction: column;
    gap: 20px;
  }

  #tweaks-panel.visible { display: flex; }

  .tweak-title {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg-dim);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .tweak-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .tweak-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-dim);
  }

  .tweak-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .tweak-opt {
    padding: 5px 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.12);
    background: none;
    color: var(--fg-dim);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--sans);
    text-transform: uppercase;
  }

  .tweak-opt:hover, .tweak-opt.active {
    border-color: var(--accent-blue);
    color: var(--fg);
    background: rgba(255,255,255,0.03);
  }

  /* ─── INSTAGRAM WIDGET ──────────────────────────── */
  instagram-gallery {
    display: block;
    width: 100%;
    text-align: left;
  }

  .ig-widget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }

  @media (max-width: 900px) { .ig-widget-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 560px) { .ig-widget-grid { grid-template-columns: repeat(2, 1fr); } }

  .ig-widget-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #1a1916;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .ig-widget-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
    opacity: 0.9;
  }

  .ig-widget-item:hover img {
    transform: scale(1.05);
    opacity: 1;
  }

  .ig-widget-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,11,9,0.7);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .ig-widget-overlay p {
    font-size: 11px;
    line-height: 1.5;
    color: var(--fg);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ig-widget-item:hover .ig-widget-overlay { opacity: 1; }

  .ig-widget-lb {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(8,7,6,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ig-widget-lb[hidden] { display: none; }

  .ig-widget-lb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 88vw;
    max-height: 88vh;
  }

  .ig-widget-lb-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
  }

  .ig-widget-lb-caption {
    font-size: 12px;
    color: var(--fg-dim);
    text-align: center;
    max-width: 500px;
    line-height: 1.6;
  }

  .ig-widget-lb-close,
  .ig-widget-lb-prev,
  .ig-widget-lb-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--fg-dim);
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: color 0.2s;
    line-height: 1;
  }

  .ig-widget-lb-close { top: 28px; right: 36px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
  .ig-widget-lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); font-size: 40px; }
  .ig-widget-lb-next  { right: 24px; top: 50%; transform: translateY(-50%); font-size: 40px; }

  .ig-widget-lb-close:hover,
  .ig-widget-lb-prev:hover,
  .ig-widget-lb-next:hover { color: var(--fg); }

  .ig-widget-loading,
  .ig-widget-error,
  .ig-widget-empty {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-dim);
    padding: 40px 0;
    text-align: center;
  }

  /* ─── ABOUT + CONTACT PAGE ──────────────────────── */
  .about-contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-contact-page .about-inner {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
    gap: 24px;
  }

  .about-contact-page .about-bio {
    font-size: 15px;
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .about-contact-page {
      grid-template-columns: 1fr;
      gap: 64px;
    }
    .about-contact-page .contact-col { order: 1; }
    .about-contact-page .about-col { order: 2; }
  }
