/* New Age Media — production styles (immersive warm hero, editorial greige body) */

:root {
  --greige: #F2F1ED;
  --ink: #141414;
  --ink-soft: #55534B;
  --ink-muted: #8A877C;
  --hairline: #DFDDD4;
  --card-bg: #FAF8F4;
  --card-border: #E7E4DB;
  --cream: #F5EDE0;
  --cream-solid: #F2E9DA;
  --copper-deep: #2A1A10;
  --copper: #B4632A;
  --footer-ink: #CBB59A;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; }

body {
  background: var(--greige);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pill:hover { opacity: 0.88; transform: translateY(-1px); }
.pill-cream { background: var(--cream-solid); color: var(--copper-deep); }
.pill-dark { background: var(--ink); color: #F7F6F2; }
.pill-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245, 237, 224, 0.45); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--copper-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.03 0 0 0 0 0.02 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 4.5vw, 64px);
}
.wordmark { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.wordmark span { font-family: var(--serif); font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > a:not(.pill) { font-size: 15px; color: rgba(245, 237, 224, 0.82); }
.nav-links > a:not(.pill):hover { color: var(--cream); }
.nav-links .pill { padding: 12px 24px; }

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: clamp(48px, 12vh, 130px) clamp(20px, 4.5vw, 64px) 96px;
}
.hero-copy .eyebrow { color: rgba(245, 237, 224, 0.72); }
.hero-copy h1 {
  font-size: clamp(46px, 6.2vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-top: 26px;
}
.hero-sub {
  max-width: 520px;
  margin-top: 30px;
  font-size: 17px;
  color: rgba(245, 237, 224, 0.85);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

/* ---- Sections ---- */
.split {
  display: flex;
  gap: clamp(40px, 7vw, 96px);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 4.5vw, 64px);
  border-bottom: 1px solid var(--hairline);
  max-width: 1440px;
  margin: 0 auto;
}
.col-label { width: 220px; flex-shrink: 0; padding-top: 10px; }
.split-body { max-width: 780px; display: flex; flex-direction: column; gap: 20px; }
.split-body h2 { font-size: clamp(32px, 3.4vw, 48px); line-height: 1.12; letter-spacing: -0.01em; }
.split-body p { font-size: 17px; color: var(--ink-soft); max-width: 620px; }

/* ---- Covers / cards ---- */
.covers {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 4.5vw, 64px);
  border-bottom: 1px solid var(--hairline);
  max-width: 1440px;
  margin: 0 auto;
}
.covers-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.covers-head h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.1; }
.covers-head p:not(.eyebrow) { font-size: 17px; color: var(--ink-soft); max-width: 520px; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 16px 16px 32px;
  overflow: hidden;
}
.card-media {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.card-media img,
.card-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body { display: flex; flex-direction: column; gap: 12px; padding: 26px 16px 0; }
.card-body h3 { font-size: 30px; line-height: 1.15; }
.card-body p:not(.eyebrow) { font-size: 15px; color: var(--ink-soft); }

/* ---- Method ---- */
.method { border-bottom: 0; }
.method-intro { width: 260px; flex-shrink: 0; display: flex; flex-direction: column; gap: 18px; }
.method-intro h2 { font-size: clamp(32px, 3.2vw, 44px); line-height: 1.12; }
.method-intro p:not(.eyebrow) { font-size: 15px; color: var(--ink-soft); }
.method-media {
  position: relative;
  margin-top: 26px;
  width: 100%;
  max-width: 280px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}
.method-media img,
.method-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principles { list-style: none; padding: 0; flex-grow: 1; }
.principles li {
  display: flex;
  gap: 40px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
}
.principles li:last-child { border-bottom: 1px solid var(--hairline); }
.principles .num { font-family: var(--serif); font-size: 26px; color: var(--copper); width: 48px; flex-shrink: 0; }
.principles strong { font-size: 18px; font-weight: 500; width: 260px; flex-shrink: 0; }
.principles p { font-size: 15px; color: var(--ink-soft); }

/* ---- Talk ---- */
.talk {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 110px) clamp(20px, 4.5vw, 64px) clamp(320px, 30vw, 420px);
}
.band {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: top;
  animation: bandDrift 30s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
}
@keyframes bandDrift { from { transform: scale(1); } to { transform: scale(1.06); } }
.talk-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.talk-copy h2 { font-size: clamp(52px, 5.5vw, 76px); line-height: 1.05; }
.talk-copy p:not(.eyebrow) { font-size: 17px; color: var(--ink-soft); max-width: 460px; }
.talk-copy .pill { margin-top: 14px; }

/* ---- Footer ---- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px clamp(20px, 4.5vw, 64px);
  background: var(--copper-deep);
  color: var(--footer-ink);
  font-size: 13px;
}
.wordmark-footer { color: var(--footer-ink); gap: 10px; }
.wordmark-footer > span { font-family: var(--sans); font-size: 13px; }
.wordmark-footer .fm-name { font-family: var(--serif); font-size: 15px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-links > a:not(.pill) { display: none; }
  .split { flex-direction: column; gap: 24px; }
  .col-label { width: auto; padding-top: 0; }
  .method-intro { width: auto; }
  .principles li { flex-wrap: wrap; gap: 12px 24px; }
  .principles strong { width: auto; }
  .principles p { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .rise, .band { animation: none; }
  .rise { opacity: 1; }
  .hero-video, .card-media video, .method-media video { display: none; }
}
