/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --grey: #6b6b6b;
  --light-grey: #e8e8e8;
  --bg: #fafafa;
  --white: #ffffff;
  --max-w: 1140px;
  --gold: #b8975a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,250,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light-grey);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links .social-link svg {
  width: 15px; height: 15px;
  fill: var(--grey);
  display: block;
  transition: fill 0.2s;
}
.nav-links .social-link:hover svg { fill: var(--black); }

/* ── SHARED ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
  display: block;
}
.section-label.light { color: rgba(255,255,255,0.55); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #2a2a2a; }
.btn-outline { border: 1px solid var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey);
  font-size: 12px;
  line-height: 1.6;
  padding: 20px;
}
.img-placeholder.dark {
  background: #1a1a1a;
  color: #555;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.img-placeholder small { font-size: 11px; opacity: 0.7; }

/* ── PAGE HEADER ── */
.page-header {
  padding-top: 62px;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-title {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* ── HOME HERO ── */
.home-hero {
  padding-top: 62px;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
}
.home-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px 0;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: end;
}
.home-hero-text {
  padding-bottom: 80px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  display: block;
}
.home-hero-text h1 {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-location {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.home-hero-image {
  align-self: end;
}
.home-hero-image img,
.home-hero-image .img-placeholder {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--bg);
  border-bottom: 1px solid var(--light-grey);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}
.section-label-col { padding-top: 6px; }
.about-body p {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 22px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CREDITS TEASER ── */
.credits-teaser {
  background: var(--black);
  color: var(--white);
}
.credits-teaser-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.credit-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  text-align: center;
}
.credit-num {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}
.credit-desc {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.credit-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── WORK SECTION ── */
.work-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 48px 80px;
}
.work-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.work-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  padding: 56px 0;
  border-bottom: 1px solid var(--light-grey);
  align-items: start;
}
.work-item:first-child { border-top: 1px solid var(--light-grey); }
.work-item-image img,
.work-item-image .img-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.work-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.work-year {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.06em;
}
.work-network {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.work-item-body h3 {
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.work-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
  display: block;
}
.work-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 24px;
}
.work-item-ctas { display: flex; gap: 12px; }

/* ── PRESS HERO ── */
.press-hero {
  padding-top: 62px;
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  background: #0d0d0d;
  overflow: hidden;
}
.press-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(80,60,40,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(40,30,60,0.3) 0%, transparent 55%),
    linear-gradient(160deg, #1a1410 0%, #0d0d0d 100%);
}
.press-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.press-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.4;
}
.press-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.1) 60%);
}
.press-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 52px;
  width: 100%;
}
.press-hero-title {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 12px 0 10px;
}
.press-hero-outlets {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── PRESS SECTION ── */
.press-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 80px;
}
.press-list {
  border-top: 1px solid var(--light-grey);
}
.press-item {
  display: grid;
  grid-template-columns: 52px 200px 1fr 80px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-grey);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.press-item:hover { opacity: 0.6; }
.press-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.press-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(20%);
}
.press-outlet-col { display: flex; flex-direction: column; gap: 4px; }
.press-logo { width: 32px; height: 32px; object-fit: contain; margin-bottom: 4px; border-radius: 6px; }
.press-outlet {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
}
.press-topic {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.press-quote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #333;
}
.press-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: right;
  white-space: nowrap;
}

/* ── CONTACT PAGE ── */
.contact-page {
  padding-top: 62px;
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: stretch;
}
.contact-page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.contact-heading {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 20px;
}
.contact-subtext {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
}
.contact-detail {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}
.contact-email {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  display: inline-block;
  transition: opacity 0.2s;
}
.contact-email:hover { opacity: 0.5; }
.contact-detail-value {
  font-size: 15px;
  color: var(--black);
}
.contact-locations {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 44px;
}
.contact-social-row {
  display: flex;
  gap: 28px;
  margin-top: 44px;
}
.contact-social-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-social-link:hover { color: var(--black); }
.contact-right img,
.contact-right .img-placeholder {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ── CONTACT FORM ── */
.contact-form-col { display: flex; flex-direction: column; justify-content: center; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--black); }
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: #c0392b; }
.field-error { font-size: 12px; color: #c0392b; }
.form-submit { margin-top: 8px; cursor: pointer; border: none; width: 100%; justify-content: center; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success {
  display: none;
  font-size: 15px;
  color: var(--black);
  padding: 16px;
  border: 1px solid var(--light-grey);
  margin-bottom: 20px;
}
.form-error {
  display: none;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 16px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--light-grey);
  padding: 28px 48px;
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 11px;
  color: var(--grey);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .home-hero-inner,
  .section-inner,
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 28px 40px;
  }
  .home-hero-inner { padding-top: 72px; }
  .work-item { grid-template-columns: 1fr; gap: 24px; }
  .press-item { grid-template-columns: 44px 1fr; gap: 12px; }
  .press-item .press-quote, .press-item .press-cta { grid-column: 1 / -1; }
  .credits-teaser-inner { flex-wrap: wrap; justify-content: center; }
  .credit-divider { display: none; }
  nav .nav-inner { padding: 0 24px; }
  .work-section, .press-section { padding-left: 28px; padding-right: 28px; }
  .press-hero-content { padding: 0 28px 40px; }
  .contact-right:not(.contact-form-col) { display: none; }
}
