/* ─── HAMBURGER + MOBILE NAV ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-hamburger span:nth-child(3) { width: 60%; align-self: flex-end; }

/* Open state — morphs into X */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(250, 249, 247, 0.97);
  backdrop-filter: blur(16px);
  padding: 5.5rem 2rem 2rem;
  border-bottom: 1px solid var(--rule);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile-menu.open { transform: translateY(0); }
.nav-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-menu ul li a {
  display: block;
  padding: 1.1rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}
.nav-mobile-menu ul li:last-child a { border-bottom: none; }
.nav-mobile-menu ul li a:hover { color: var(--ink); }

/* ─── BREAKPOINTS ──────────────────────────────────────── */

/* Tablet (≤900px): reduce nav padding, keep hamburger visible */
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ground: #FAF9F7;
  --ink: #1A1A18;
  --ink-mid: #555550;
  --ink-light: #999993;
  --rule: #E2E0DA;
  --warm: #C8A882;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--ground); color: var(--ink); font-family: var(--sans); font-weight: 400; line-height: 1.7; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 4rem; background: rgba(250,249,247,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--rule); transition: padding 0.3s; }
.nav-name { font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

/* HERO */
.hero { min-height: 100vh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('images-src/nyc-all-day.jpg'); background-size: cover; background-position: center 40%; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,8,0.82) 0%, rgba(10,10,8,0.35) 50%, rgba(10,10,8,0.1) 100%); }
.hero-content { position: relative; z-index: 1; padding: 6rem 4rem; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.hero-eyebrow { color: #fff!important; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-name {  font-size: clamp(3.2rem, 7vw, 5.5rem); font-weight: 500; line-height: 0.95; letter-spacing: -0.02em; color: #FAFAF8; opacity: 0; animation: fadeUp 0.9s 0.35s forwards; }
.hero-rule { width: 48px; height: 1px; background: var(--warm); margin: 2rem 0; opacity: 0; animation: fadeUp 0.7s 0.55s forwards; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 420px; line-height: 1.75; opacity: 0; animation: fadeUp 0.8s 0.65s forwards; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 2.5rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 0.25rem; transition: gap 0.25s, border-color 0.25s; opacity: 0; animation: fadeUp 0.7s 0.8s forwards; }
.hero-cta:hover { gap: 1.25rem; border-color: white; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.stat { padding: 2rem; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.28);   margin: -1px 0 0 -1px; }
.stat-num { font-size: 2.2rem; font-weight: 400; line-height: 1; color: #fff; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.4rem; }

/* SECTION BASE */
section { padding: 8rem 4rem; }
.section-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; line-height: 1.1; color: var(--ink); margin-bottom: 3rem; letter-spacing: -0.01em; }

/* ABOUT */
.about { background: var(--ground); }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 7rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.about-sidebar { position: sticky; top: 6rem; }
.headshot-wrap { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--rule); margin-bottom: 2rem; }
.headshot-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-body p { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.5rem; max-width: 680px; }
.about-body p strong { color: var(--ink); font-weight: 500; }
.skills-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; }
.skill-tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.9rem; border: 1px solid var(--rule); color: var(--ink-mid); transition: all 0.2s; cursor: default; }
.skill-tag:hover { background: var(--ink); color: var(--ground); border-color: var(--ink); }
.edu-item { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--rule); }
.edu-item:last-child { border-bottom: none; }
.edu-degree { font-size: 1rem; font-weight: 500; color: var(--ink); }
.edu-school { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-light); text-transform: uppercase; margin-top: 0.15rem; }
.fulbright-badge { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.25rem; border: 1px solid var(--warm); background: rgba(200,168,130,0.06); margin-bottom: 2rem; }
.fulbright-text { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mid); line-height: 1.4; }
.fulbright-text strong { color: var(--ink); display: block; font-weight: 500; }

/* WORK */
.work { background: #fff; }
.work-inner { max-width: 1200px; margin: 0 auto; }
.work-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; gap: 4rem; }
.work-head-note { font-size: 0.85rem; color: var(--ink-light); max-width: 320px; text-align: right; line-height: 1.6; }

/* PROJECT ITEMS */
.project-item { border-top: 1px solid var(--rule); }
.project-summary { display: grid; grid-template-columns: 72px 1fr auto 40px; align-items: start; gap: 2rem; padding: 3rem 0; cursor: pointer; }
.project-summary:hover .project-arrow { transform: translateX(6px); }
.project-num { font-size: 0.9rem; color: var(--ink-light); padding-top: 0.3rem; }
.project-client { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm); margin-bottom: 0.5rem; }
.project-title { font-size: 1.5rem; font-weight: 500; line-height: 1.2; color: var(--ink); margin-bottom: 1rem; }
.project-desc { font-size: 0.88rem; color: var(--ink-mid); max-width: 520px; line-height: 1.7; }
.project-tags { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-top: 1.1rem; }
.project-tag { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.65rem; background: var(--ground); color: var(--ink-light); border: 1px solid var(--rule); }
.project-tag:hover {  color: #CBA981; border-color: #CBA981;   }

.project-metrics { min-width: 110px; text-align: right; padding-top: 0.3rem; display: flex; flex-direction: column; gap: 1.25rem; }
.metric-val { font-size: 1.3rem; font-weight: 400; color: var(--ink); line-height: 1; }
.metric-label { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-top: 0.1rem; }
.project-arrow { font-size: 1rem; color: var(--ink-light); transition: transform 0.25s; padding-top: 0.35rem; text-align: right; }

/* DRAWER */
.project-drawer { max-height: 0; overflow: hidden; transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1); }
.project-drawer.open { max-height: 3000px; }
.drawer-inner { padding: 0 0 3rem 120px; border-top: 1px solid var(--rule); }
.drawer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-top: 2.5rem; }
.drawer-images { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; align-items: start; }
.drawer-images.single { grid-template-columns: 1fr; }
.drawer-images.three { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
.drawer-img { width: 100%; height: auto; max-height: 600px; object-fit: contain; border: 0px solid var(--rule); display: block; background: #f8f8f8; cursor: zoom-in; transition: opacity 0.2s; }
.drawer-img:hover { opacity: 0.88; }
.drawer-block-title { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 1rem; }
.drawer-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.drawer-list li { font-size: 0.85rem; color: var(--ink-mid); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.drawer-list li::before { content: '—'; position: absolute; left: 0; color: var(--warm); font-size: 0.7rem; line-height: 1.7; }
.drawer-quote { font-size: .9rem; color: #333; line-height: 1.65; border-left: 2px solid var(--warm); padding-left: 1.5rem; margin-bottom: 0.75rem; }
.drawer-attribution { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); }
.drawer-content { display: block; }

/* BRANDS */
.brands { background: #fff; padding: 5rem 4rem; text-align: center; }
.brands-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 3.5rem; }
.brands-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  max-width: 867px;
  margin: 0 auto;
}
.brand-logo-item {
  flex: 0 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
.brand-logo-item img { max-width: 140px; max-height: 52px; width: auto; height: auto; object-fit: contain; display: block; }

/* FULBRIGHT */
.fulbright-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 4rem;
  cursor: default;
  background:
    radial-gradient(circle at 68% 45%, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 20% 20%, rgba(0,153,255,0.12), transparent 22%),
    linear-gradient(135deg, #041729 0%, #082443 48%, #0a294f 100%);
  isolation: isolate;
}
.fulbright-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fulbright-copy,
.fulbright-seal-wrap { position: relative; z-index: 1; }
.fulbright-copy { max-width: 720px; }
.fulbright-section .section-label { color: var(--warm); }
.fulbright-section .section-title { color: #FAFAF8; }
.fulbright-text-body { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.fulbright-text-body p { color: rgba(255,255,255,0.88); margin-bottom: 1rem; }
.fulbright-meta { color: rgba(255,255,255,0.42); font-size: 0.82rem; margin-top: 1.5rem; letter-spacing: 0.04em; }
.fulbright-seal-wrap { display: flex; justify-content: center; align-items: center; }
.fulbright-seal {
  display: block;
  width: min(100%, 290px);
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 18px 45px rgba(0,0,0,0.35))
    drop-shadow(0 0 24px rgba(255,255,255,0.08));
  transform: translateZ(0);
}

/* Soft animated glows */
.fulbright-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.8;
  animation: fulbrightFloat 9s ease-in-out infinite alternate;
}
.fulbright-orb.orb-1 {
  width: 320px;
  height: 320px;
  right: 10%;
  top: 18%;
  background: radial-gradient(circle, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 60%, transparent 88%);
}
.fulbright-orb.orb-2 {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(0,140,255,0.14), rgba(0,140,255,0.02) 60%, transparent 88%);
  animation-duration: 9s;
}
@keyframes fulbrightFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, -12px, 0) scale(1.06); }
}

/* Faint network lines */
.fulbright-grid {
  position: absolute;
  inset: 0;
  opacity: 0.069;
  background:
    radial-gradient(circle at 14% 26%, rgba(255,255,255,0.55) 0 1.4px, transparent 2px),
    radial-gradient(circle at 27% 58%, rgba(255,255,255,0.35) 0 1.2px, transparent 2px),
    radial-gradient(circle at 44% 21%, rgba(255,255,255,0.45) 0 1.2px, transparent 2px),
    radial-gradient(circle at 59% 44%, rgba(255,255,255,0.4) 0 1.4px, transparent 2px),
    radial-gradient(circle at 72% 31%, rgba(255,255,255,0.42) 0 1.3px, transparent 2px),
    radial-gradient(circle at 81% 61%, rgba(255,255,255,0.38) 0 1.2px, transparent 2px),
    linear-gradient(115deg, transparent 49.85%, rgba(255,255,255,0.08) 50%, transparent 50.15%),
    linear-gradient(35deg, transparent 69.85%, rgba(255,255,255,0.05) 70%, transparent 70.15%);
}
.fulbright-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.69;
}

.fulbright-grid,
.fulbright-canvas,
.fulbright-orb,
.fulbright-seal {
  transition: opacity 220ms ease, transform 280ms ease, filter 280ms ease;
}
.fulbright-section:hover .fulbright-grid { opacity: 0.22; }
.fulbright-section:hover .fulbright-canvas { opacity: 0.82; }
.fulbright-section:hover .fulbright-orb.orb-1 { transform: scale(1.05) translate3d(10px, -6px, 0); }
.fulbright-section:hover .fulbright-orb.orb-2 { transform: scale(1.08) translate3d(-8px, 8px, 0); }
.fulbright-section:hover .fulbright-seal {
  transform: scale(1.02);
  filter:
    drop-shadow(0 20px 48px rgba(0,0,0,0.38))
    drop-shadow(0 0 34px rgba(255,255,255,0.14));
}
.fulbright-ripple-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.fulbright-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  transform: translate(-50%, -50%) scale(0.3);
  animation: fulbrightRipple 900ms ease-out forwards;
}
@keyframes fulbrightRipple {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.3); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(10); }
}

/* CONTACT */
#contact {background: url(images-src/italian-dolomites.jpg); background-size: cover; background-repeat:no-repeat;  background-position: center; height: 969px; } 
.contact { background: var(--ink); color: var(--ground); padding: 8rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.contact .section-label { color: #fff; }
.contact .section-title { color: var(--ground); margin-bottom: 1.5rem; }
.contact-desc { font-size: 1rem; color: rgba(250,249,247,0.6); max-width: 380px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 2.5rem;  }
.contact-type { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 0.35rem; }
.contact-value { font-size: 1.15rem; font-weight: 400; color: var(--ground); text-decoration: none; transition: color 0.2s; display: block; }
.contact-value:hover { color: var(--warm); }
.contact-links { display: flex; gap: 2rem; margin-top: 3rem; }
.contact-link { color:#fff!important; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,249,247,0.45); text-decoration: none; border-bottom: 1px solid rgba(250,249,247,0.18); padding-bottom: 0.2rem; transition: all 0.2s; }
.contact-link:hover { color: var(--ground); border-color: var(--ground); }
.closing-photo { width: 100%; max-height: 480px; object-fit: cover; object-position: center 30%; display: block; filter: brightness(0.85); }
footer { background:#333; border-top: 1px solid rgba(255,255,255,0.07); padding: 2rem 4rem; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-size: 0.9rem; color: rgba(250,249,247,0.3); }
.footer-copy { font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(250,249,247,0.2); }

/* LIGHTBOX */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 2rem; }
.modal-overlay.active { display: flex; }
.modal-inner { position: relative; max-width: min(92vw, 1100px); max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.modal-img { max-width: 100%; max-height: 80vh; object-fit: contain; display: block; border: 1px solid rgba(255,255,255,0.08); }
.modal-caption { color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1rem; text-align: center; }
.modal-close { position: fixed; top: 1.5rem; right: 1.75rem; width: 40px; height: 40px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.18); }
.modal-prev, .modal-next { position: fixed; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; user-select: none; }
.modal-prev { left: 1.25rem; }
.modal-next { right: 1.25rem; }
.modal-prev:hover, .modal-next:hover { background: rgba(255,255,255,0.16); color: #fff; }
.modal-prev.hidden, .modal-next.hidden { opacity: 0; pointer-events: none; }
.modal-counter { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.3); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.15rem;
  margin-top: 1.75rem;
  transition: gap 0.2s, color 0.2s;
  width: fit-content;
}
.case-link:hover { gap: 0.85rem; color: var(--warm); border-color: var(--warm); }
.drawer-img-natural { width: 100%; display: block; border: 1px solid var(--rule); background: #eee; cursor: zoom-in; transition: opacity 0.2s; }
.drawer-img-natural:hover { opacity: 0.88; }

.drawer-artifact-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.35rem;
  margin-top: 0.25rem;
}

#visually-hidden,
.visually-hidden {position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; padding: 6rem 2rem 3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar { position: static; }
  .headshot-wrap { width: 120px; height: 120px; }
  .work-head { flex-direction: column; gap: 1rem; }
  .work-head-note { text-align: left; }
  .project-summary { grid-template-columns: 48px 1fr 32px; gap: 1rem; }
  .project-metrics { display: none; }
  .drawer-inner { padding-left: 0; }
  .drawer-grid { grid-template-columns: 1fr; transition: ease, transform 0.7s ease;}
  .drawer-images { grid-template-columns: 1fr; }
  .drawer-images.three { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; gap: 4rem; padding: 5rem 2rem; }
  .fulbright-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  section { padding: 5rem 2rem; }
  .brands { padding: 4rem 2rem; }
  footer { flex-direction: column; gap: 0.5rem; padding: 1.5rem 2rem; text-align: center; }
}

@media (max-width: 640px) {
  .brands { padding: 4rem 1.5rem; }
  .brands-logo-row { gap: 1.5rem 1.25rem; max-width: 320px; }
  .brand-logo-item { flex: 0 1 130px; }
  .brand-logo-item img { max-width: 130px; max-height: 44px; }

  .fulbright-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 1.5rem;
    text-align: left;
  }
  .fulbright-copy { max-width: none; }
  .fulbright-seal-wrap { justify-content: center; }
  .fulbright-seal { width: min(100%, 220px); margin: 0 auto; }
  .fulbright-canvas { opacity: 0.18; }
  .fulbright-orb.orb-1 { right: 50%; transform: translateX(50%); }
  .fulbright-orb.orb-2 { left: -8%; bottom: -4%; }
}

@media (prefers-reduced-motion: reduce) {
  .fulbright-orb { animation: none; }
  .fulbright-canvas { display: none; }
}


/* NAV TITLE SWITCH */
.nav-name {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.nav-name-full { display: inline; }
.nav-name-short { display: none; }


/* NAV BASE LAYOUT FIX */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  margin-left: auto;
}


/* TABLET + MOBILE NAV */
@media (max-width: 900px) {

  nav {
    padding: 1rem 1.25rem;
  }

  /* hide desktop nav */
  .nav-links {
    display: none !important;
  }

  /* show hamburger */
  .nav-hamburger {
    display: flex !important;
  }

  /* enable mobile menu */
  .nav-mobile-menu {
    display: block !important;
  }

  /* allow title to flex but never wrap */
  .nav-name {
    flex: 1 1 auto;
    min-width: 0;
  }

}


/* PHONE NAV */
@media (max-width: 640px) {

  nav {
    padding: 0.9rem 1rem;
  }

  /* switch name to SD */
  .nav-name-full {
    display: none;
  }

  .nav-name-short {
    display: inline;
  }

  .nav-name {
    font-size: 0.95rem;
  }

  .nav-hamburger {
    width: 34px;
    height: 34px;
  }

}


/* SMALL PHONES */
@media (max-width: 380px) {

  nav {
    padding: 0.85rem 0.85rem;
  }

  .nav-name {
    font-size: 0.9rem;
  }

}