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

    /* ===== CUSTOM FONT: Outliner — do not edit this block ===== */
    @font-face {
  font-family: 'Outliner';
  src: url('../fonts/OUTLINER-REGULAR.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}
    /* ===== SITE COLORS & FONTS — edit here to change global styles ===== */
    :root {
      --white: #ffffff;
      --off-white: #f9f8f6;
      --light-gray: #e8e6e1;
      --mid-gray: #aaa9a6;
      --dark: #1a1a18;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Jost', sans-serif;
    }

    html { font-size: 16px; }

    body {
      background-color: var(--white);
      color: var(--dark);
      font-family: var(--font-body);
      font-weight: 300;
      letter-spacing: 0.02em;
      -webkit-font-smoothing: antialiased;
    }

    /* ── TOP BAR (name only, top right) ── */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 2.2rem;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--light-gray);
    }

    .site-name {
      font-family: 'Outliner', var(--font-display);
      font-weight: normal;
      font-size: 1.1rem;
      letter-spacing: 0.14em;
      text-decoration: none;
      color: var(--dark);
    }

    /* ── LEFT SIDEBAR ── */
    .sidebar {
      position: fixed;
      top: 52px;
      left: 0;
      bottom: 0;
      width: 180px;
      border-right: 1px solid var(--light-gray);
      background: var(--white);
      display: flex;
      flex-direction: column;
      padding: 2.4rem 1.6rem;
      gap: 0;
      z-index: 90;
      overflow-y: auto;
    }

    .sidebar nav {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .nav-item {
      font-family: var(--font-body);
      font-weight: 200;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--dark);
      transition: color 0.2s ease;
      display: block;
      padding: 0.55rem 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      width: 100%;
    }

    .nav-item:hover { color: var(--mid-gray); }

    .nav-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .caret {
      font-size: 1rem;
      line-height: 1;
      transition: transform 0.25s ease;
      display: inline-block;
      color: var(--mid-gray);
    }

    .nav-toggle[aria-expanded="true"] .caret {
      transform: rotate(180deg);
    }

    .nav-group { border-bottom: none; }

    .nav-sub {
      display: none;
      flex-direction: column;
      gap: 0;
      padding-left: 0.8rem;
      padding-bottom: 0.4rem;
    }

    .nav-sub.open { display: flex; }

    .nav-sub-item {
      font-family: var(--font-body);
      font-weight: 200;
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      text-decoration: none;
      color: var(--mid-gray);
      padding: 0.35rem 0;
      transition: color 0.2s ease;
      text-transform: none;
    }

    .nav-sub-item:hover,
    .nav-sub-item.active {
      color: var(--dark);
    }

    /* Hamburger for mobile */
    .hamburger {
      display: none;
      position: fixed;
      top: 12px;
      left: 1.2rem;
      z-index: 110;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--dark);
      transition: all 0.3s ease;
    }

    /* ── MAIN CONTENT (offset for sidebar) ── */
    .main {
      margin-left: 180px;
      margin-top: 52px;
    }

    /* ── PAGE TITLE ── */
    .page-header {
      padding: 40px 2.5rem 32px;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      align-items: baseline;
      gap: 1.5rem;
    }

    .page-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: 0.04em;
      line-height: 1;
    }

    .page-title em {
      font-style: italic;
      font-weight: 300;
    }

    .page-description a {
      color: var(--dark);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: var(--mid-gray);
      transition: text-decoration-color 0.2s ease;
    }

    .page-description a:hover {
      text-decoration-color: var(--dark);
    }

    .page-description {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.88rem;
      line-height: 1.75;
      color: #555;
      max-width: 680px;
      margin-top: 1rem;
      letter-spacing: 0.01em;
    }

    .photo-count {
      font-size: 0.7rem;
      font-weight: 200;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-top: 1rem;
    }

    /* ── MASONRY GALLERY ── */
    .gallery-wrap {
      padding: 2.5rem 2.5rem 4rem;
    }

    .masonry {
      columns: 3;
      column-gap: 12px;
    }

    .masonry-item {
      break-inside: avoid;
      margin-bottom: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .masonry-item img {
      display: block;
      width: 100%;
      height: auto;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  opacity 0.3s ease;
      opacity: 0;
    }

    .masonry-item img.loaded { opacity: 1; }

    .masonry-item:hover img { transform: scale(1.02); }

    .masonry-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem 1rem 0.8rem;
      background: linear-gradient(transparent, rgba(0,0,0,0.35));
      color: #fff;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 0.95rem;
      font-weight: 300;
      letter-spacing: 0.03em;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .masonry-item:hover .caption { opacity: 1; }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(255,255,255,0.97);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .lightbox.open { display: flex; }

    .lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      cursor: default;
      animation: fadeIn 0.25s ease;
    }

    .lightbox-caption {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 0.95rem;
      color: var(--mid-gray);
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .lightbox-close {
      position: fixed;
      top: 1.4rem;
      right: 1.8rem;
      font-family: var(--font-body);
      font-weight: 200;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid-gray);
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      transition: color 0.2s;
    }

    .lightbox-close:hover { color: var(--dark); }

    .lightbox-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.3rem;
      color: var(--mid-gray);
      cursor: pointer;
      background: none;
      border: none;
      padding: 1rem;
      transition: color 0.2s;
      font-family: var(--font-display);
      font-weight: 300;
    }

    .lightbox-nav:hover { color: var(--dark); }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--light-gray);
      padding: 1.8rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.68rem;
      font-weight: 200;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid-gray);
    }

    footer a {
      color: var(--mid-gray);
      text-decoration: none;
      transition: color 0.2s;
    }

    footer a:hover { color: var(--dark); }

    /* ── ANIMATIONS ── */
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    .masonry-item {
      opacity: 0;
      transform: translateY(16px);
      animation: slideUp 0.5s ease forwards;
    }

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

    /* staggered delay */
    .masonry-item:nth-child(1)  { animation-delay: 0.05s; }
    .masonry-item:nth-child(2)  { animation-delay: 0.10s; }
    .masonry-item:nth-child(3)  { animation-delay: 0.15s; }
    .masonry-item:nth-child(4)  { animation-delay: 0.20s; }
    .masonry-item:nth-child(5)  { animation-delay: 0.25s; }
    .masonry-item:nth-child(6)  { animation-delay: 0.30s; }
    .masonry-item:nth-child(7)  { animation-delay: 0.35s; }
    .masonry-item:nth-child(8)  { animation-delay: 0.40s; }
    .masonry-item:nth-child(9)  { animation-delay: 0.45s; }
    .masonry-item:nth-child(10) { animation-delay: 0.50s; }
    .masonry-item:nth-child(11) { animation-delay: 0.55s; }
    .masonry-item:nth-child(12) { animation-delay: 0.60s; }
    .masonry-item:nth-child(13) { animation-delay: 0.65s; }
    .masonry-item:nth-child(14) { animation-delay: 0.70s; }
    .masonry-item:nth-child(15) { animation-delay: 0.75s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .masonry { columns: 2; }
    }

    @media (max-width: 700px) {
      .sidebar { display: none; }
      .sidebar.open {
        display: flex;
        width: 200px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.06);
      }

      .hamburger { display: flex; }

      .main { margin-left: 0; }

      .page-header { padding: 28px 1.2rem 24px; flex-direction: column; gap: 0.4rem; }
      .gallery-wrap { padding: 1.5rem 1.2rem 3rem; }
      .masonry { columns: 1; }

      footer { flex-direction: column; gap: 0.6rem; text-align: center; }
    }

    /* ── PAGES ── */
    .page { display: none; }
    .page.active { display: block; }

    /* Text pages */
    .text-page {
      padding: 40px 2.5rem 4rem;
      max-width: 760px;
    }

    .text-page h1 {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      letter-spacing: 0.04em;
      margin-bottom: 1.8rem;
      line-height: 1.1;
    }

    .text-page h2 {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin: 2rem 0 0.6rem;
    }

    .text-page p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.92rem;
      line-height: 1.8;
      color: #444;
      margin-bottom: 1.2rem;
      letter-spacing: 0.01em;
    }

    .text-page a {
      color: var(--dark);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: var(--mid-gray);
      transition: text-decoration-color 0.2s;
    }

    .text-page a:hover { text-decoration-color: var(--dark); }

    .text-page .bio-photo {
      width: 100%;
      max-width: 420px;
      height: auto;
      margin-bottom: 2rem;
      display: block;
    }

    .text-page .contact-photo {
      width: 100%;
      max-width: 380px;
      height: auto;
      margin-bottom: 2rem;
      display: block;
    }

    .text-page .contact-detail {
      font-size: 1rem;
      font-weight: 300;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .clients-list {
      font-family: var(--font-body);
      font-weight: 200;
      font-size: 0.82rem;
      line-height: 1.9;
      color: #666;
      letter-spacing: 0.02em;
    }

    /* Press page */
    .press-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .press-list li {
      border-bottom: 1px solid var(--light-gray);
      padding: 1rem 0;
    }

    .press-list li:first-child { border-top: 1px solid var(--light-gray); }

    .press-list a {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.2s;
      line-height: 1.5;
    }

    .press-list a:hover { color: var(--mid-gray); }

    /* Multimedia page */
    .multimedia-item {
      margin-bottom: 3.5rem;
      padding-bottom: 3.5rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .multimedia-item:last-child {
      border-bottom: none;
    }

    .multimedia-item h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: 1.5rem;
      letter-spacing: 0.03em;
      margin-bottom: 0.6rem;
    }

    .multimedia-item p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.88rem;
      line-height: 1.8;
      color: #555;
      max-width: 600px;
      margin-bottom: 1rem;
    }

    .multimedia-item .media-placeholder {
      background: var(--off-white);
      border: 1px solid var(--light-gray);
      width: 100%;
      max-width: 560px;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-top: 1rem;
    }

    /* ── PRESS DETAIL PAGES ── */
    .press-detail {
      max-width: 900px;
      padding: 40px 2.5rem 4rem;
    }

    .press-back {
      display: inline-block;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid-gray);
      text-decoration: none;
      margin-bottom: 32px;
      padding-left: 18px;
      transition: color 0.2s;
    }

    .press-back:hover { color: var(--dark); }

    .press-detail img {
      width: 80%;
      height: auto;
      display: block;
      margin-bottom: 24px;
    }

    .press-detail p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.95rem;
      color: var(--dark);
      line-height: 1.7;
      padding-left: 18px;
    }

    .press-detail a {
      color: var(--dark);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: var(--mid-gray);
      transition: text-decoration-color 0.2s;
    }

    .press-detail a:hover { text-decoration-color: var(--dark); }

    /* ── SOCIAL VIDEO PAGE ── */
    .video-block {
      margin-bottom: 3.5rem;
    }

    .video-block h2 {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: 1.4rem;
      letter-spacing: 0.03em;
      margin-bottom: 0.5rem;
    }

    .video-block p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.88rem;
      color: #555;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    /* YouTube / 16:9 video embeds */
    .video-wrap {
      position: relative;
      width: 100%;
      max-width: 560px;
      aspect-ratio: 16/9;
    }

    .video-wrap iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Instagram embeds — let them size naturally */
    .instagram-wrap {
      width: 100%;
      max-width: 540px;
    }

    .instagram-wrap .instagram-media {
      margin: 0 !important;
    }

    /* Twitter/X embeds — let them size naturally */
    .twitter-wrap {
      width: 100%;
      max-width: 550px;
    }

    .twitter-wrap .twitter-tweet {
      margin: 0 !important;
    }

    /* TikTok embeds — let them size naturally */
    .tiktok-wrap {
      width: 100%;
      max-width: 605px;
    }

    /* ── SOCIAL LINKS IN SIDEBAR ── */
    .nav-social {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 0.4rem;
      padding-top: 0.4rem;
      border-top: 1px solid var(--light-gray);
    }

    .nav-social-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: var(--mid-gray);
      font-family: var(--font-body);
      font-weight: 200;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.45rem 0;
      transition: color 0.2s;
    }

    .nav-social-item:hover { color: var(--dark); }

    .nav-social-item svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      fill: currentColor;
    }
