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

:root {
  --black: #050505;
  --white: #f0ede8;
  --gray: #888;
  --dim: #2a2a2a;
  --rule: #1c1c1c;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  overflow-x: hidden;
  cursor: none;
}

body.is-loading { overflow: hidden; }

/* ─── CURSOR ─── */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--white);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(240,237,232,0.5);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}

body.cursor-hover .cursor-dot { width: 10px; height: 10px; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--white); }
body.cursor-img .cursor-ring { width: 64px; height: 64px; opacity: 0.6; }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  .masonry-item { cursor: pointer; }
  .masonry-item .img-overlay { opacity: 0 !important; }
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* ─── LOADER ─── */

#loader {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  text-align: center;
  width: 320px;
}

.loader-name {
  margin-bottom: 32px;
}

.loader-line {
  overflow: hidden;
  line-height: 1;
}

.loader-line span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 0.12em;
  color: var(--white);
  transform: translateY(100%);
  animation: loaderReveal 0.7s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.loader-line:nth-child(2) span {
  animation-delay: 0.1s;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

@keyframes loaderReveal {
  to { transform: translateY(0); }
}

.loader-bar-track {
  width: 100%;
  height: 1px;
  background: var(--dim);
  margin-bottom: 12px;
}

.loader-bar {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width 0.1s linear;
}

.loader-count {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray);
  font-weight: 300;
}

/* ─── NAV ─── */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  transition: background 0.4s, padding 0.4s;
}

#nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  opacity: 0;
}

.nav-link {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.55);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s cubic-bezier(0.76,0,0.24,1);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  text-decoration: none;
  padding: 10px 24px;
  display: inline-block;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.nav-cta span { position: relative; z-index: 1; }

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
}

.nav-cta:hover::before { transform: translateY(0); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  opacity: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* ─── MOBILE MENU ─── */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.76,0,0.24,1);
}

.mobile-menu.open { clip-path: inset(0 0 0% 0); }

.mobile-menu ul { list-style: none; text-align: center; }

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 12vw, 80px);
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.25s;
}

.mobile-link:hover { color: var(--gray); }

/* ─── BUTTONS ─── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 16px 40px;
  border: 1px solid rgba(240,237,232,0.4);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: color 0.4s, border-color 0.4s;
}

.btn span { position: relative; z-index: 1; }

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}

.btn:hover { color: var(--black); border-color: var(--white); }
.btn:hover::before { transform: translateY(0); }

.btn-submit { width: 100%; text-align: center; margin-top: 8px; }

/* ─── SECTION LABELS ─── */

.section-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray);
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.section-title-wrap { overflow: hidden; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ─── HERO ─── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.15) 0%,
    rgba(5,5,5,0.05) 40%,
    rgba(5,5,5,0.65) 75%,
    rgba(5,5,5,0.95) 100%
  );
}

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

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.45);
  margin-bottom: 16px;
  opacity: 0;
}

.hero-title {
  margin-bottom: 40px;
}

.title-row {
  line-height: 0.88;
}

.title-mask {
  overflow: hidden;
}

.title-word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 160px);
  letter-spacing: -0.01em;
  color: var(--white);
  will-change: transform;
}

.title-outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  opacity: 0;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.5);
  line-height: 2;
}

.hero-scroll {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.scroll-track {
  width: 1px;
  height: 60px;
  background: rgba(240,237,232,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {
  0% { top: -100%; }
  100% { top: 100%; }
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ─── GALLERY ─── */

.section-gallery {
  padding: 80px 40px;
  border-top: 1px solid var(--rule);
}

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

.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: none;
  opacity: 0;
  transform: translateY(40px);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}

.img-overlay span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(240,237,232,0.5);
  padding: 10px 24px;
}

.masonry-item:hover img { transform: scale(1.06); }
.masonry-item:hover .img-overlay { opacity: 1; }

.masonry-item.gallery-hidden {
  display: none;
}

.gallery-expand {
  text-align: center;
  padding: 60px 0 20px;
}

.btn-show-more {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  padding: 18px 52px;
  cursor: none;
  position: relative;
  transition: background 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-show-more:hover {
  background: var(--white);
  color: var(--black);
}

.btn-show-more-count {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0.55;
}

/* ─── ABOUT ─── */

.section-about {
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 100vh;
}

/* ── Photo panel ── */
.about-photo-col {
  border-right: 1px solid var(--rule);
  position: relative;
}

.about-photo-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.8s;
}

.about-photo-col:hover .about-photo { filter: grayscale(0%); }

.about-photo-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
  writing-mode: horizontal-tb;
}

/* ── Text panel ── */
.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  gap: 0;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
}

.about-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gray);
}

.about-statement-inline {
  overflow: hidden;
  margin-bottom: 48px;
}

.statement {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  transform: translateY(60px);
  opacity: 0;
}

.statement em {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  font-style: normal;
}

.about-name-wrap {
  overflow: hidden;
  margin-bottom: 40px;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.about-bio {
  margin-bottom: 36px;
}

.about-bio p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(240,237,232,0.6);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(24px);
}

.about-bio p + p { margin-top: 18px; }

.about-text-col .btn {
  opacity: 0;
  transform: translateY(24px);
  align-self: flex-start;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.stat { text-align: center; }

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-num, .stat-inf {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  opacity: 0;
}

.stat-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
}

.stat-rule {
  width: 1px;
  height: 64px;
  background: var(--rule);
}

/* ─── PRESS ─── */

.section-press {
  padding: 80px 40px;
  border-top: 1px solid var(--rule);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.press-item {
  background: var(--black);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: background 0.3s;
}

.press-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dim);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}

.press-item:hover::before { transform: translateY(0); }

.press-name, .press-type { position: relative; z-index: 1; }

.press-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 6px;
}

.press-type {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── CONTACT ─── */

.section-contact {
  padding: 80px 40px;
  border-top: 1px solid var(--rule);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-heading-wrap { overflow: hidden; margin: 16px 0 48px; }

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 100px);
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.contact-details { opacity: 0; transform: translateY(24px); }

.contact-link {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.3s;
}

.contact-link:first-child { border-top: 1px solid var(--rule); }
.contact-link:hover { border-color: rgba(240,237,232,0.25); }

.contact-link-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 80px;
  flex-shrink: 0;
}

.contact-link-val {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(240,237,232,0.7);
  transition: color 0.3s;
}

.contact-link:hover .contact-link-val { color: var(--white); }

/* ─── FORM ─── */

.contact-right { opacity: 0; transform: translateY(32px); }

.field {
  position: relative;
  margin-bottom: 32px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--dim);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 16px 0 10px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s;
  cursor: none;
}

.field select { cursor: none; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--white);
}

.field textarea { height: 96px; resize: none; }

.field label {
  position: absolute;
  top: 16px; left: 0;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  pointer-events: none;
  transition: top 0.25s, font-size 0.25s, color 0.25s;
}

.field input:not(:placeholder-shown) ~ label,
.field input:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label {
  top: -4px;
  font-size: 8px;
  color: rgba(240,237,232,0.35);
}

.field-select label { top: -4px; font-size: 8px; color: rgba(240,237,232,0.35); }

.field-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.4s cubic-bezier(0.76,0,0.24,1);
}

.field input:focus ~ .field-line,
.field textarea:focus ~ .field-line,
.field select:focus ~ .field-line { width: 100%; }

.form-success {
  display: none;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
}

/* ─── FOOTER ─── */

footer {
  padding: 32px 40px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2e2e2e;
}

.footer-socials { display: flex; gap: 28px; }

.footer-socials a {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-socials a:hover { color: var(--white); }

/* ─── LIGHTBOX ─── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(5,5,5,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}

.lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.lightbox.active .lb-img { transform: scale(1); }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(240,237,232,0.4);
  font-size: 20px;
  cursor: none;
  transition: color 0.25s;
  font-family: var(--font-body);
  padding: 12px;
}

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

.lb-close { top: 24px; right: 32px; font-size: 18px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; }

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
  .masonry { columns: 2; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { border-right: none; border-bottom: 1px solid var(--rule); }
  .about-photo-sticky { position: relative; height: 70vw; max-height: 560px; }
  .about-text-col { padding: 60px 40px; }
  .stats-row { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-rule { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  #nav { padding: 18px 20px; }
  #nav.scrolled { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; opacity: 1 !important; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px 52px; }
  .hero-scroll { display: none; }
  .title-word { font-size: clamp(52px, 16vw, 90px); }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.32em; }
  .hero-tagline { font-size: 11px; letter-spacing: 0.25em; }

  .about-photo-sticky { height: 90vw; max-height: 480px; }
  .about-text-col { padding: 52px 20px; }
  .about-eyebrow { margin-bottom: 36px; }
  .about-statement-inline { margin-bottom: 32px; }
  .statement { font-size: clamp(36px, 9vw, 60px); }
  .about-name { font-size: clamp(52px, 14vw, 100px); }
  .stats-row { margin-top: 40px; grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-rule { display: none; }
  .stat-num { font-size: clamp(36px, 9vw, 56px); }

  .section-gallery,
  .section-press,
  .section-contact { padding: 52px 20px; }

  .section-title { font-size: clamp(40px, 11vw, 72px); }

  .masonry { columns: 1; column-gap: 0; }
  .masonry-item { margin-bottom: 3px; }

  .gallery-expand { padding: 40px 20px 12px; }
  .btn-show-more { width: 100%; justify-content: center; padding: 18px 24px; font-size: 13px; }

  .press-grid { grid-template-columns: 1fr; }
  .press-item { padding: 20px 0; }

  .contact-heading { font-size: clamp(40px, 11vw, 72px); }
  .contact-details { gap: 28px; }

  footer { padding: 20px; flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .title-word { font-size: clamp(44px, 18vw, 80px); }
  .hero-content { padding: 0 16px 44px; }
  .section-gallery,
  .section-press,
  .section-contact { padding: 44px 16px; }
  .stats-row { padding: 32px 16px; gap: 20px; }
}

/* ─── SAFE AREA (iPhone notch / home bar) ─── */
#nav {
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

footer {
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}

#mobile-menu {
  padding-top: max(80px, calc(60px + env(safe-area-inset-top)));
  padding-left: max(32px, env(safe-area-inset-left));
  padding-right: max(32px, env(safe-area-inset-right));
}
