/* =========================================================
   INFORM — Cinematic Redesign
   Direction: luxury magazine × film-journal editorial
   Palette: obsidian black, editorial gold, soft beige
   Typography: Playfair Display · Cinzel · Inter · Cormorant Garamond
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400;1,500&display=swap");

:root {
  /* — Colour Palette — */
  --black:          #0a0a0c;
  --black-2:        #111114;
  --panel:          #15151a;
  --ivory:          #f5f0e8;          /* soft beige */
  --ivory-dim:      #c4bfb4;
  --champagne:      #38fe15;          /* editorial gold */
  --champagne-soft: #e2cfa0;
  --gold-glow:      rgba(201,168,76,0.15);
  --line:           rgba(245, 240, 232, 0.11);

  /* — Font Families — */
  --font-heading:  "Playfair Display", Georgia, serif;   /* H1, H2, Hero */
  --font-cinzel:   "Cinzel", serif;                      /* Subheadings, highlights */
  --font-body:     "Inter", system-ui, sans-serif;       /* Body, paragraphs */
  --font-quote:    "Cormorant Garamond", Georgia, serif; /* Quotes, diary notes */

  /* Legacy aliases kept for smooth cascade */
  --display: var(--font-heading);
  --body:    var(--font-body);

  /* — Spacing & Layout — */
  --maxw: 1340px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 18px;               /* paragraph font-size */
  line-height: 1.8;              /* body line-height */
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

/* ---------- Typography System ---------- */

/* H1, H2 — Playfair Display: bold, elegant, cinematic impact */
h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 1.5px;   /* heading letter-spacing */
}

/* H3, H4 — Cinzel: dramatic movie-poster emphasis */
h3,
h4 {
  font-family: var(--font-cinzel);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 1.5px;
}

/* Paragraphs — Inter body text */
p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

/* Eyebrow labels — Cinzel uppercase dramatic */
.eyebrow {
  font-family: var(--font-cinzel);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne);
  display: inline-block;
}

/* Hero / display sizes — uppercase, Playfair Display, 700 weight */
.display-xl {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.display-l {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.display-m {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* Lede / intro text — Inter */
.lede {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.8;
  font-weight: 300;
  color: var(--ivory-dim);
  max-width: 48ch;
}

/* Quote / Diary Notes — Cormorant Garamond: emotional journal feel */
.quote-text,
blockquote {
  font-family: var(--font-quote) !important;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.5px;
}

/* Cinzel utility class for subheading emphasis */
.cinzel {
  font-family: var(--font-cinzel);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.it {
  font-style: italic;
  color: var(--champagne);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  transition: all 0.55s var(--ease);
}
.site-header.solid {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 16px clamp(20px, 5vw, 72px);
}
.brand {
  font-family: var(--font-cinzel);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.brand .dot {
  color: var(--champagne);
}
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  font-family: var(--font-cinzel);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  color: var(--ivory);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.45s var(--ease);
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}
.nav .cta-link {
  border: 1px solid var(--champagne);
  color: var(--champagne);
  padding: 10px 20px;
  border-radius: 2px;
}
.nav .cta-link::after {
  display: none;
}
.nav .cta-link:hover {
  background: var(--champagne);
  color: var(--black);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 120;
}
.burger span {
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  transition: 0.3s;
}

/* ---------- Hero (cinematic) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.08);
  animation: slowzoom 18s ease-out forwards;
}
@keyframes slowzoom {
  to {
    transform: scale(1);
  }
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(10, 10, 12, 0.25),
    rgba(10, 10, 12, 0.82)
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero .sub {
  margin: 26px auto 0;
  max-width: 50ch;
  color: var(--ivory-dim);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.hero .hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(6px);
  overflow: hidden;
  padding: 14px 0;
}
.hero-ticker .marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  align-items: center;
}
.hero-ticker span {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.hero-ticker .dot {
  color: var(--champagne);
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--champagne);
  color: var(--black);
  border: 0;
  cursor: pointer;
  font-family: var(--font-cinzel);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  transition: 0.4s var(--ease);
}
.btn:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--ivory);
  color: var(--ivory);
}
.btn-ghost:hover {
  background: var(--ivory);
  color: var(--black);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}

.sec {
  padding: clamp(80px, 13vh, 170px) 0;
}
.sec-head {
  margin-bottom: 64px;
}
.sec-head .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

/* ---------- About / manifesto ---------- */
.manifesto {
  text-align: center;
}
.manifesto h2 {
  font-size: clamp(1.9rem, 4.5vw, 4rem);
  max-width: 18ch;
  margin: 24px auto 0;
  font-weight: 400;
  line-height: 1.1;
}
.manifesto .lede {
  margin: 30px auto 0;
  text-align: center;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 50px;
}
.metric .n {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
}
.metric .l {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 12px;
}

/* ---------- Capabilities split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.split .media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.cap-list {
  border-top: 1px solid var(--line);
}
.cap-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.cap-item .t {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 1px;
}
.cap-item .n {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--champagne);
}

/* ---------- Talent spotlight (horizontal cards) ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sp-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--panel);
}
.sp-card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s var(--ease);
  filter: grayscale(0.3) brightness(0.92);
}
.sp-card:hover img {
  transform: scale(1.07);
  filter: none;
}
.sp-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.85));
}
.sp-card .meta h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.sp-card .meta span {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ---------- Sectors (full-bleed stacked) ---------- */
.sector-block {
  position: relative;
  height: 46vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.sector-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) grayscale(0.4);
  transition:
    transform 1.4s var(--ease),
    filter 0.8s;
}
.sector-block:hover img {
  transform: scale(1.06);
  filter: brightness(0.62) grayscale(0);
}
.sector-block .lbl {
  position: relative;
  z-index: 2;
  width: 100%;
}
.sector-block .lbl .idx {
  font-family: var(--font-cinzel);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--champagne);
  text-transform: uppercase;
}
.sector-block .lbl h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sector-block .lbl p {
  max-width: 40ch;
  color: var(--ivory-dim);
  margin-top: 10px;
}

/* ---------- Campaign showcase ---------- */
.show-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.show {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.show img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.show:hover img {
  transform: scale(1.06);
}
.show .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.8));
}
.show .cap .k {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
}
.show .cap h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 4px;
}
.show.a {
  grid-column: span 7;
  aspect-ratio: 16/10;
}
.show.b {
  grid-column: span 5;
  aspect-ratio: 4/5;
}
.show.c {
  grid-column: span 4;
  aspect-ratio: 1;
}
.show.d {
  grid-column: span 4;
  aspect-ratio: 1;
}
.show.e {
  grid-column: span 4;
  aspect-ratio: 1;
}

/* ---------- Quote / Diary Section — Cormorant Garamond ---------- */
.bigquote {
  text-align: center;
  padding: clamp(90px, 16vh, 200px) 0;
  background: var(--black-2);
  position: relative;
}
.bigquote::before {
  content: '\201C';
  font-family: var(--font-quote);
  font-size: 18rem;
  color: var(--champagne);
  opacity: 0.06;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.bigquote blockquote {
  font-family: var(--font-quote);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.5px;
  max-width: 26ch;
  margin: 0 auto;
  color: var(--ivory);
}
.bigquote .by {
  margin-top: 34px;
  font-family: var(--font-cinzel);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--black-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.form-row label {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.form-row input,
.form-row textarea,
.form-row select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 11px 0;
  outline: none;
  transition: border 0.4s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--champagne);
}
.form-row select option {
  color: #111;
}
.contact-aside p {
  color: var(--ivory-dim);
  margin-bottom: 26px;
  max-width: 34ch;
}
.contact-aside a.big {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 5px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-brand {
  font-family: var(--font-cinzel);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.foot-brand .dot {
  color: var(--champagne);
}
.foot-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.foot-col h5 {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 11px;
  color: var(--ivory);
}
.foot-col a:hover {
  color: var(--champagne);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ivory-dim);
}

/* ---------- Interior page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(150px, 22vh, 250px) 0 clamp(50px, 9vh, 100px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(201, 168, 106, 0.1),
    transparent 55%
  );
}
.page-hero > .wrap {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}
.prose {
  max-width: 62ch;
}
.prose p {
  margin-bottom: 22px;
  color: var(--ivory-dim);
}

/* generic cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: 2px;
  background: var(--panel);
  transition: 0.5s var(--ease);
}
.card:hover {
  border-color: var(--champagne);
  transform: translateY(-6px);
}
.card .num {
  font-family: var(--font-cinzel);
  color: var(--champagne);
  font-size: 13px;
  letter-spacing: 0.2em;
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 14px 0 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.card p {
  font-size: 14px;
  color: var(--ivory-dim);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .show.a,
  .show.b {
    grid-column: span 12;
  }
  .show.c,
  .show.d,
  .show.e {
    grid-column: span 4;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 17px;
    line-height: 1.75;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav.open {
    transform: none;
  }
  .nav a {
    font-family: var(--font-cinzel);
    font-size: 16px;
    letter-spacing: 0.2em;
  }
  .burger {
    display: flex;
  }
  .metrics,
  .card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .show.c,
  .show.d,
  .show.e {
    grid-column: span 12;
    aspect-ratio: 16/10;
  }
  .foot-brand {
    font-size: 34px;
  }
}
