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

  :root {
    --bg: #f7f6f3;
    --ink: #0e0e0d;
    --ink-60: rgba(14,14,13,0.65);
    --ink-30: rgba(14,14,13,0.4);
    --ink-12: rgba(14,14,13,0.12);
    --accent: #c8401a;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(247,246,243,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ink-12);
  }

  .nav-name {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-icons {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .nav-icons a {
    display: flex;
    color: var(--ink-60);
    transition: color 250ms ease;
  }
  .nav-icons a:hover { color: var(--ink); }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-60);
    position: relative;
    transition: color 250ms ease;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--ink);
    transition: width 300ms ease;
  }
  .nav-link:hover { color: var(--ink); }
  .nav-link:hover::after { width: 100%; }
  .nav-link.active { color: var(--accent); }
  .nav-link.active::after { width: 100%; background: var(--accent); }

  /* PAGE */
  .page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* HEADER */
  .page-header {
    padding-top: 128px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--ink-12);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .page-title {
    font-family: var(--serif);
    font-size: clamp(72px, 10vw, 120px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-60);
    font-weight: 300;
    padding-bottom: 8px;
  }

  .subtitle-count {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-30);
  }

  /* FILTER */
  .filter-bar {
    padding: 32px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    /* border-bottom: 1px solid var(--ink-12); */
  }

  .filter-btn {
    background: none;
    border: 1px solid var(--ink-12);
    padding: 7px 16px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-60);
    cursor: pointer;
    border-radius: 2px;
    transition: all 250ms ease;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bg);
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--ink-12);
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-back {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-60);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 250ms ease;
  }
  .footer-back:hover { color: var(--ink); }

  .footer-email {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-30);
    transition: color 250ms ease;
  }
  .footer-email:hover { color: var(--ink); }

  /* ============================================================
  styles.css  — append this entire block
   ============================================================ */

/* ── Burger button (hidden on desktop) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-right: -4px;
  z-index: 200;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--accent);   /* orange */
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease, width 300ms ease;
  transform-origin: center;
}

/* Animated X state */
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,14,13,0.35);
  opacity: 0;
  transition: opacity 300ms ease;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 80vw);
  background: var(--bg);
  border-left: 1px solid var(--ink-12);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 48px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.open {
  pointer-events: all;
}

.nav-drawer.open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer.open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.nav-drawer-link {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink-60);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-12);
  transition: color 200ms ease;
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav-drawer-link:hover,
.nav-drawer-link.active {
  color: var(--accent);
}

.nav-drawer-icons {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.nav-drawer-icons a {
  color: var(--ink-30);
  transition: color 250ms ease;
}

.nav-drawer-icons a:hover {
  color: var(--ink);
}

@media (max-width: 768px) {


  /* NAV */
  nav {
    padding: 0 28px;
    height: 56px;
  }

  .nav-name {
    font-size: 10px;
  }

  /* Hide desktop nav links + icons, show burger */
  .nav-links,
  .nav-icons {
    display: none !important;
  }

  .nav-burger {
    display: flex;
  }

  /* Show drawer container */
  .nav-drawer {
    display: block;
  }

  /* PAGE */
  .page {
    padding: 0 28px;
  }

  /* PAGE HEADER */
  .page-header {
    padding-top: 96px;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title {
    font-size: clamp(44px, 12vw, 72px);
    line-height: 0.88;
  }

  .page-subtitle {
    font-size: 16px;
  }

  /* FILTER BAR */
  .filter-bar {
    padding: 20px 0;
    gap: 6px;
  }

  .filter-btn {
    font-size: 10px;
    padding: 6px 12px;
  }

}

@media (max-width: 480px) {
  nav { padding: 0 24px; }
  .page { padding: 0 24px; }
}