/* FINAL NYC — fashion editorial */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #4a4a4a;
  --rule: #d8d8d8;
  --max: 1680px;
  --max-wide: 2000px;
  --gutter: clamp(24px, 5vw, 96px);
  --font-display: "operetta-12", "Bodoni Moda", Didot, "Times New Roman", Times, serif;
  --font-body: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
  /* UI chrome (nav, footer micro-labels, eyebrows, captions, section subs).
     Same display serif as headlines. */
  --font-chrome: var(--font-display);
  --chrome-style: normal;
  --chrome-weight: 500;
  --chrome-tracking: 0.10em;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  font-size: 15px;
}

body[data-menu-open] { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.62; }

/* Body text is upright Aktiv. Italic accents (anything wrapped in <em>,
   plus image captions) render in Operetta italic. */
em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ───── Header ───── */
.site-header {
  padding: 26px clamp(24px, 4vw, 56px) 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand { display: inline-flex; align-items: center; }
.site-header__brand img { height: 80px; width: auto; display: block; }

.site-nav {
  display: flex;
  gap: clamp(20px, 3vw, 38px);
  font-family: var(--font-chrome);
  font-weight: var(--chrome-weight);
  font-size: 15px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.site-nav a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.site-nav a.is-active { border-bottom-color: currentColor; }

/* Hamburger — hidden on desktop, shown on narrow viewports */
.site-header__burger {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 12px 8px;
  margin: -12px -8px -12px 0;
  cursor: pointer;
  color: var(--fg);
  flex-direction: column;
  gap: 7px;
  align-items: stretch;
  width: 44px;
}
.site-header__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
}

/* Full-screen overlay menu */
.site-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  display: flex;
  flex-direction: column;
  animation: site-menu-in 180ms ease-out;
}
.site-menu[hidden] { display: none; }
@keyframes site-menu-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.site-menu__bar {
  padding: 26px clamp(20px, 4vw, 56px) 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-menu__close {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin: -8px;
  cursor: pointer;
  color: var(--fg);
  line-height: 0;
}
.site-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 48px);
  padding: 0 24px clamp(80px, 18vh, 160px);
  text-align: center;
}
.site-menu__nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 8vw, 52px);
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: none;
}

/* ───── Container ───── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container--wide { max-width: var(--max-wide); }

/* ───── Display text ───── */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(72px, 8vw, 144px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  margin: 0;
  text-align: center;
  font-variant-numeric: lining-nums;
}

.display--sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 32px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 28px 0 0;
  text-align: center;
}

.tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 760px;
  line-height: 1.5;
}
.tagline p { margin: 0 0 4px; }

/* ───── Home hero image ───── */
.hero-image {
  position: relative;
  /* Break out of .container — go nearly edge-to-edge with modest gutters.
     Capped at --max-wide so it doesn't go absurd on huge displays. */
  width: calc(100vw - clamp(48px, 5vw, 96px));
  max-width: var(--max-wide);
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: clamp(40px, 5vw, 64px);
  margin-bottom: 0;
}
.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
}
.hero-image figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

/* ───── Manifesto (home) ───── */
.manifesto {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  text-align: center;
}
.manifesto p {
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.62;
}

/* ───── Work grid (home) ───── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 16px);
  margin-top: clamp(28px, 4vw, 48px);
}
.work-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@media (max-width: 900px)  { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .work-grid { grid-template-columns: 1fr; } }

/* ───── Big bottom link ───── */
.bottom-link {
  text-align: center;
  padding-top: 60px;
  padding-bottom: clamp(40px, 6vw, 60px);
}
.bottom-link a {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ───── Studio page ───── */
.studio-hero {
  text-align: center;
  padding: clamp(56px, 7vw, 96px) 0 clamp(24px, 4vw, 48px);
}
.studio-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 104px);
  line-height: 1.06;
  margin: 0 auto;
  max-width: 22ch;
  letter-spacing: 0.005em;
}
.studio-hero .subtitle {
  font-size: 17px;
  margin: 28px 0 0;
}

.service-section {
  padding: clamp(72px, 9vw, 120px) 0 0;
}
.service-section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 48px);
  margin: 0 0 28px;
  text-align: left;
  letter-spacing: 0;
}
.service-section .body p {
  font-size: 15px;
  line-height: 1.62;
  max-width: 80ch;
  margin: 0 0 18px;
}
.service-section .body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  max-width: 80ch;
  font-size: 15px;
  line-height: 1.62;
}
.service-section .body li {
  margin: 0 0 6px;
}

.service-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(40px, 6vw, 64px);
}
.service-grid-3 figure { margin: 0; }
.service-grid-3 figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.service-grid-3 figcaption {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  margin-top: 14px;
}

@media (max-width: 800px) { .service-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .service-grid-3 { grid-template-columns: 1fr; } }

.discovery-image {
  margin: clamp(40px, 6vw, 64px) 0 0;
  max-width: 540px;
}
.discovery-image img { width: 100%; height: auto; aspect-ratio: 16 / 10; display: block; }
.discovery-image figcaption {
  text-align: left;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  margin-top: 24px;
  color: var(--muted);
}

.cta-block {
  text-align: left;
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.cta-block .prompt {
  font-size: 17px;
  margin: 0 0 36px;
}
.cta-block a {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 56px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* ───── About page ───── */
.about-hero {
  text-align: center;
  padding: clamp(28px, 4vw, 56px) 0 clamp(8px, 2vw, 24px);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 104px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.about-copy {
  max-width: 680px;
  margin: clamp(32px, 4vw, 56px) auto 0;
  text-align: center;
}
.about-copy p {
  font-size: 15px;
  line-height: 1.62;
  margin: 0 0 20px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(4px, 0.55vw, 8px);
  margin-top: clamp(40px, 6vw, 64px);
}
.mosaic img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

/* ───── Showroom ───── */
.showroom-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0 clamp(20px, 3vw, 32px);
}
.showroom-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 88px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.showroom-hero .eyebrow {
  font-size: 17px;
  margin: 0 0 16px;
  color: var(--muted);
}
.showroom-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 800px) { .showroom-hero { grid-template-columns: 1fr; } }

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 88px);
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.section-sub {
  font-size: 17px;
  text-align: center;
  margin: 0 0 40px;
}

.gallery-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 20px);
  margin-top: 24px;
}
.gallery-2x2 img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }

.buyers-feature {
  margin: clamp(48px, 7vw, 96px) 0;
}
.buyers-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 64px);
}
.buyers-grid h3 {
  font-family: var(--font-chrome);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
}
.buyers-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}
@media (max-width: 800px) { .buyers-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ───── Footer ───── */
.site-footer {
  margin-top: clamp(64px, 8vw, 120px);
  padding: clamp(40px, 5vw, 64px) 0 clamp(40px, 5vw, 64px);
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  font-size: 14px;
  line-height: 1.65;
}
.site-footer h4 {
  font-family: var(--font-chrome);
  font-weight: var(--chrome-weight);
  font-size: 13px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--fg);
}
.site-footer p {
  margin: 0;
  font-family: var(--font-chrome);
  font-size: 13px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  line-height: 1.7;
}
.site-footer__instagram {
  display: inline-block;
  margin-top: 10px;
}
.site-footer__instagram img {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 700px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-header { padding-left: 20px; padding-right: 20px; }
  .site-header__brand img { height: 56px; }
  .site-nav { display: none; }
  .site-header__burger { display: flex; }
}

.tagline,
.tagline p,
.hero-image figcaption,
.service-grid-3 figcaption,
.discovery-image figcaption,
.studio-hero .subtitle,
.showroom-hero .eyebrow,
.section-sub,
.cta-block .prompt {
  letter-spacing: 0.005em;
}
