@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Jost:wght@200;300;400;500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --ink:     #080808;
  --panel:   #0F0F0F;
  --surface: #161616;
  --elev:    #1E1E1E;
  --line:    rgba(255,255,255,0.07);
  --lineg:   rgba(185,155,110,0.3);

  /* Single warm accent — not garish gold, a muted amber */
  --amber:     #B99B6E;
  --amber-dim: rgba(185,155,110,0.12);
  --amber-mid: rgba(185,155,110,0.35);

  /* Text */
  --white: #FFFFFF;
  --cream: #F2EDE6;
  --fog:   #BAB2A7;

  /* Light section (contact) */
  --paper:     #F0EBE3;
  --paper-mid: #DED7CD;
  --ink-on-paper: #141414;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --spring:  cubic-bezier(0.19, 1, 0.22, 1);
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:74px; font-size:16px; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a   { color:inherit; text-decoration:none; }
ul  { list-style:none; }
button { background:none; border:none; cursor:pointer; font-family:var(--sans); }

::-webkit-scrollbar       { width:3px; }
::-webkit-scrollbar-track { background:var(--ink); }
::-webkit-scrollbar-thumb { background:var(--amber); }

/* ============================================================
   CURSOR
   ============================================================ */
@media (pointer:fine) {
  *, *::before, *::after { cursor:none !important; }
}
.cursor-dot {
  width:7px; height:7px; background:var(--amber);
  border-radius:50%; position:fixed; top:0; left:0;
  transform:translate3d(-80px,-80px,0) translate(-50%,-50%);
  pointer-events:none; z-index:9999;
  transition:width .2s, height .2s, opacity .2s;
}
.cursor-ring {
  width:32px; height:32px;
  border:1px solid rgba(185,155,110,.38);
  border-radius:50%; position:fixed; top:0; left:0;
  transform:translate3d(-80px,-80px,0) translate(-50%,-50%);
  pointer-events:none; z-index:9998;
  transition:transform .18s var(--spring), width .3s, height .3s, background .3s, border-color .3s;
}
.cex .cursor-dot  { width:0; height:0; }
.cex .cursor-ring {
  width:54px; height:54px;
  background:rgba(185,155,110,.07);
  border-color:var(--amber);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position:fixed; inset:0 0 auto;
  z-index:1000; padding:28px 60px;
  display:flex; align-items:center; justify-content:space-between;
  transition:padding .4s var(--ease), background .5s, border-color .5s;
  border-bottom:1px solid transparent;
}
.navbar.scrolled {
  padding:14px 60px;
  background:rgba(8,8,8,.9);
  backdrop-filter:blur(22px) saturate(1.2);
  border-color:var(--line);
}

.nav-logo { display:flex; align-items:center; gap:12px; }
.logo-mark {
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--amber-mid); overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  transition:border-color .3s;
}
.nav-logo:hover .logo-mark { border-color:var(--amber); }
.logo-mark img { width:100%; height:100%; object-fit:contain; filter:brightness(0) invert(1); }
.nav-logo span {
  font-family:var(--sans); font-size:.62rem; font-weight:500;
  letter-spacing:.24em; text-transform:uppercase; color:var(--cream);
}

.nav-links { display:flex; gap:34px; }
.nav-links a {
  font-size:.6rem; font-weight:400; letter-spacing:.2em;
  text-transform:uppercase; color:var(--paper-mid);
  position:relative; transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:100%;
  height:1px; background:var(--amber);
  transition:right .4s var(--spring);
}
.nav-links a:hover { color:var(--cream); }
.nav-links a:hover::after { right:0; }

.nav-cta {
  font-size:.58rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--amber);
  padding:8px 20px; border:1px solid var(--amber-mid);
  transition:background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background:var(--amber); color:var(--ink); border-color:var(--amber); }

.hamburger { display:none; flex-direction:column; gap:5px; padding:4px; }
.hamburger span { display:block; width:22px; height:1px; background:var(--cream); transition:all .3s; }

.mobile-menu {
  display:none; position:fixed; inset:0;
  background:rgba(8,8,8,.97); backdrop-filter:blur(24px);
  flex-direction:column; align-items:center; justify-content:center;
  gap:30px; z-index:999; opacity:0; pointer-events:none; transition:opacity .4s;
}
.mobile-menu.active { opacity:1; pointer-events:all; }
.mobile-menu a {
  font-family:var(--serif); font-size:2.6rem; font-weight:400;
  color:var(--cream); transition:color .3s;
}
.mobile-menu a:hover { color:var(--amber); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-fill {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; background:var(--amber); color:var(--ink);
  font-size:.62rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  transition:background .3s, transform .3s;
}
.btn-fill:hover { background:#CAB07E; transform:translateY(-2px); }

.btn-line {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 30px; border:1px solid rgba(255,255,255,.14); color:var(--cream);
  font-size:.62rem; font-weight:300; letter-spacing:.22em; text-transform:uppercase;
  transition:border-color .3s, color .3s;
}
.btn-line:hover { border-color:var(--amber); color:var(--amber); }

.btn-dark {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; background:var(--ink-on-paper); color:var(--paper);
  font-size:.62rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  transition:background .3s;
}
.btn-dark:hover { background:#2A2A2A; }

/* ============================================================
   HERO — full-bleed, massive type
   ============================================================ */
.hero {
  position:relative; height:100vh; min-height:640px;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:0 60px 80px; overflow:hidden;
}
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg img {
  width:100%; height:100%; object-fit:cover;
  filter:brightness(.25) saturate(.7);
  transition:transform 12s var(--ease);
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(to top, var(--ink) 0%, rgba(8,8,8,.08) 60%, transparent 100%),
    linear-gradient(95deg, rgba(8,8,8,.8) 0%, transparent 60%);
}

.hero-content { position:relative; z-index:2; }

.hero-eyebrow {
  display:flex; align-items:center; gap:12px; margin-bottom:20px;
  opacity:0; animation:fadeUp .9s var(--spring) .2s forwards;
}
.hero-eyebrow::before { content:''; width:28px; height:1px; background:var(--amber); }
.hero-eyebrow span {
  font-size:.56rem; font-weight:500; letter-spacing:.32em;
  text-transform:uppercase; color:var(--amber);
}

.hero-h1 {
  font-family:var(--serif);
  font-size:clamp(3.5rem, 7.5vw, 7rem);
  font-weight:400; line-height:1.05; letter-spacing:-.02em;
  color:var(--white); margin-bottom:28px;
  opacity:0; animation:fadeUp 1s var(--spring) .38s forwards;
}
.hero-h1 em { font-style:italic; color:var(--amber); }

.hero-body {
  font-size:.93rem; color:var(--fog); max-width:440px;
  line-height:1.9; margin-bottom:36px;
  opacity:0; animation:fadeUp .9s var(--spring) .55s forwards;
}

.hero-ctas {
  display:flex; gap:12px; flex-wrap:wrap;
  opacity:0; animation:fadeUp .9s var(--spring) .7s forwards;
}

/* Scroll line */
.hero-scroll {
  position:absolute; right:60px; bottom:48px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:0; animation:fadeIn 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-size:.5rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--fog); writing-mode:vertical-lr;
}
.hero-scroll-line {
  width:1px; height:56px; background:linear-gradient(to bottom, var(--amber), transparent);
  animation:scrollDown 2.4s var(--ease) infinite;
}
@keyframes scrollDown {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ============================================================
   TICKER — clean amber line
   ============================================================ */
.ticker {
  background:var(--amber); overflow:hidden; padding:9px 0;
}
.ticker-track {
  display:flex; width:max-content;
  animation:ticker 30s linear infinite;
  will-change:transform;
}
.ticker-track:hover { animation-play-state:paused; }
.ticker-item {
  display:flex; align-items:center; gap:8px;
  padding:0 32px; white-space:nowrap;
  font-size:.58rem; font-weight:600; letter-spacing:.24em;
  text-transform:uppercase; color:var(--ink);
}
.ticker-item::after { content:'◆'; font-size:.4rem; margin-left:8px; opacity:.5; }
@keyframes ticker {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding:130px 60px; }
.section-dark    { background:var(--ink); }
.section-panel   { background:var(--panel); }

/* common labels */
.label {
  font-size:.56rem; font-weight:500; letter-spacing:.32em;
  text-transform:uppercase; color:var(--amber);
  display:flex; align-items:center; gap:10px; margin-bottom:16px;
}
.label::before { content:''; width:22px; height:1px; background:var(--amber); }
.label-center { justify-content:center; }
.label-center::before, .label-center::after { content:''; width:22px; height:1px; background:var(--amber); }
.label-center::before { order:-1; }

.heading {
  font-family:var(--serif);
  font-size:clamp(2.4rem, 5vw, 4.4rem);
  font-weight:400; line-height:1.12; letter-spacing:-.02em;
  color:var(--white);
}
.heading em { font-style:italic; color:var(--amber); }

.heading-dark {
  font-family:var(--serif);
  font-size:clamp(2.4rem, 5vw, 4.4rem);
  font-weight:400; line-height:1.12; letter-spacing:-.02em;
  color:var(--ink-on-paper);
}
.heading-dark em { font-style:italic; color:var(--amber); }

.body-text { font-size:.93rem; color:var(--fog); line-height:1.9; }
.body-dark  { font-size:.93rem; color:#36332E; line-height:1.9; }

/* ============================================================
   REVEAL ANIMATIONS — clip-path for images, fade for text
   ============================================================ */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .9s var(--spring), transform .9s var(--spring);
}
.reveal.active { opacity:1; transform:translateY(0); }

.reveal-image {
  clip-path:inset(0 0 100% 0);
  transition:clip-path 1.1s var(--spring);
}
.reveal-image.active { clip-path:inset(0 0 0% 0); }

/* ============================================================
   STATEMENT (intro)
   ============================================================ */
.statement {
  padding:120px 60px;
  background:var(--panel);
  border-top:1px solid var(--line);
}
.statement-inner { max-width:900px; margin:0 auto; text-align:center; }
.statement-inner .label-center { margin-bottom:22px; }
.statement-h2 {
  font-family:var(--serif);
  font-size:clamp(2rem, 4vw, 3.6rem);
  font-weight:400; line-height:1.18; letter-spacing:-.02em;
  color:var(--white); margin-bottom:24px;
}
.statement-h2 em { font-style:italic; color:var(--amber); }
.statement-p { font-size:1rem; color:var(--fog); line-height:1.95; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding:60px;
  background:var(--ink);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.stats-inner {
  display:flex; justify-content:space-around; flex-wrap:wrap;
  gap:40px; max-width:1100px; margin:0 auto;
}
.stat-block { text-align:center; }
.stat-num {
  font-family:var(--serif); font-size:clamp(3rem,5vw,5rem);
  font-weight:400; font-style:italic; color:var(--white);
  line-height:1; margin-bottom:8px;
  letter-spacing:-.02em;
}
.stat-num span { color:var(--amber); }
.stat-label {
  font-size:.58rem; font-weight:500; letter-spacing:.26em;
  text-transform:uppercase; color:var(--fog);
}

/* ============================================================
   ABOUT — editorial split
   ============================================================ */
.about-split {
  display:grid; grid-template-columns:1fr 1fr;
  gap:0; max-width:none; /* full bleed grid */
}
.about-img-side { position:relative; overflow:hidden; min-height:600px; }
.about-img-side img {
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.85);
  transition:transform .1s linear;
}
/* subtle parallax via JS */
.about-text-side {
  padding:100px 80px;
  background:var(--panel);
  display:flex; flex-direction:column; justify-content:center;
}
.about-text-side .label { margin-bottom:16px; }
.about-text-side .heading { margin-bottom:24px; }
.about-text-side .body-text { margin-bottom:32px; }

.about-list { margin:24px 0; }
.about-list li {
  display:flex; align-items:flex-start; gap:12px;
  padding:11px 0; font-size:.9rem; color:var(--fog);
  border-bottom:1px solid var(--line);
}
.about-list li::before {
  content:''; flex-shrink:0;
  width:4px; height:4px; border-radius:50%;
  background:var(--amber); margin-top:10px;
}
.about-callout {
  margin-top:32px; padding:26px 28px;
  border-left:2px solid var(--amber);
  background:var(--surface);
}
.about-callout h4 {
  font-family:var(--serif); font-size:1.1rem; font-weight:400;
  color:var(--white); margin-bottom:8px;
}
.about-callout p { font-size:.88rem; color:var(--fog); line-height:1.85; }

/* ============================================================
   PRODUCTS — editorial alternating strips
   ============================================================ */
.editorial-strip {
  display:grid; grid-template-columns:55% 45%;
  min-height:500px;
  border-bottom:1px solid var(--line);
}
.editorial-strip:nth-child(even) { grid-template-columns:45% 55%; }
.editorial-strip:nth-child(even) .strip-img  { order:2; }
.editorial-strip:nth-child(even) .strip-info { order:1; }

.strip-img {
  position:relative; overflow:hidden;
}
.strip-img img {
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.8) brightness(.95);
  /* NO zoom on hover — just a clean filter reveal */
  transition:filter .6s var(--ease);
}
.editorial-strip:hover .strip-img img {
  filter:saturate(1) brightness(1);
}

/* clip-path reveal on scroll */
.strip-img .img-inner {
  position:absolute; inset:0;
  clip-path:inset(0 0 100% 0);
  transition:clip-path 1.1s var(--spring);
}
.strip-img .img-inner.active { clip-path:inset(0 0 0% 0); }
.strip-img .img-inner img { width:100%; height:100%; object-fit:cover; filter:saturate(.85); transition:filter .6s; }
.editorial-strip:hover .strip-img .img-inner img { filter:saturate(1.05); }

.strip-info {
  padding:70px 60px;
  background:var(--panel);
  display:flex; flex-direction:column; justify-content:center;
  border-left:1px solid var(--line);
}
.editorial-strip:nth-child(even) .strip-info { border-left:none; border-right:1px solid var(--line); }

.strip-num {
  font-family:var(--serif); font-size:4rem; font-weight:400;
  font-style:italic; color:var(--amber-mid); line-height:1;
  margin-bottom:16px; letter-spacing:-.02em;
  transition:color .3s;
}
.editorial-strip:hover .strip-num { color:var(--amber); }

.strip-info h3 {
  font-family:var(--serif); font-size:2.4rem; font-weight:400;
  color:var(--white); margin-bottom:14px; letter-spacing:-.02em;
  line-height:1.15;
}
.strip-info p { font-size:.9rem; color:var(--fog); line-height:1.9; }

/* ============================================================
   CAPABILITIES — clean text-only grid
   ============================================================ */
.cap-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  max-width:1300px; margin:0 auto;
}
.cap-card {
  padding:36px 30px;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  position:relative; transition:background .35s;
}
.cap-card:hover { background:var(--surface); }
.cap-n {
  font-family:var(--serif); font-size:.75rem; font-style:italic;
  color:var(--amber); margin-bottom:16px; letter-spacing:.05em;
}
.cap-card h3 {
  font-family:var(--serif); font-size:1.1rem; font-weight:400;
  color:var(--white); margin-bottom:10px; letter-spacing:-.01em;
  line-height:1.3;
}
.cap-card p { font-size:.82rem; color:var(--fog); line-height:1.75; }

/* ============================================================
   PROCESS — ultra clean
   ============================================================ */
.process-list {
  max-width:820px; margin:0 auto;
  border-top:1px solid var(--line);
}
.process-row {
  display:grid; grid-template-columns:90px 1fr;
  gap:0; padding:36px 0;
  border-bottom:1px solid var(--line);
  opacity:0; transform:translateY(16px);
  transition:opacity .7s var(--spring), transform .7s var(--spring);
}
.process-row.active { opacity:1; transform:translateY(0); }
.p-num {
  font-family:var(--serif); font-size:2.6rem; font-style:italic;
  font-weight:400; color:var(--amber-mid); line-height:1;
  padding-top:6px; transition:color .3s;
}
.process-row:hover .p-num { color:var(--amber); }
.p-body h3 {
  font-family:var(--serif); font-size:1.3rem; font-weight:400;
  color:var(--white); margin-bottom:8px; letter-spacing:-.01em;
}
.p-body p { font-size:.88rem; color:var(--fog); line-height:1.85; }

/* ============================================================
   RESPONSIBILITY
   ============================================================ */
.resp-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:0;
  border-top:1px solid var(--line); border-left:1px solid var(--line);
  max-width:1100px; margin:0 auto;
}
.resp-card {
  padding:44px 38px;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  transition:background .3s;
}
.resp-card:hover { background:var(--surface); }
.resp-card h3 {
  font-family:var(--serif); font-size:1.2rem; font-weight:400;
  color:var(--white); margin-bottom:14px;
  display:flex; align-items:center; gap:12px; letter-spacing:-.01em;
}
.resp-card h3 svg { width:18px; height:18px; stroke:var(--amber); fill:none; stroke-width:1.5; flex-shrink:0; }
.resp-card p { font-size:.88rem; color:var(--fog); line-height:1.9; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width:760px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item:first-child { border-top:1px solid var(--line); }
.faq-q {
  width:100%; padding:22px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-family:var(--serif); font-size:1.1rem; font-weight:400;
  color:var(--cream); text-align:left; transition:color .3s;
}
.faq-q:hover { color:var(--amber); }
.faq-q svg {
  width:16px; height:16px; flex-shrink:0;
  stroke:var(--amber); fill:none; stroke-width:1.5;
  transition:transform .35s var(--spring);
}
.faq-item.open .faq-q { color:var(--amber); }
.faq-item.open .faq-q svg { transform:rotate(45deg); }
.faq-body { max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.faq-body p { padding:0 0 20px; font-size:.88rem; color:var(--fog); line-height:1.9; }

/* ============================================================
   CONTACT — LIGHT SECTION
   ============================================================ */
.contact-section {
  background:var(--paper); padding:130px 60px;
}
.contact-inner {
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:80px; max-width:1200px; margin:0 auto;
}
.contact-left .label { color:var(--amber); }
.contact-left .label::before { background:var(--amber); }
.contact-left .heading-dark { margin-bottom:20px; }
.contact-left .body-dark { margin-bottom:36px; }

.contact-left h4 {
  font-family:var(--serif); font-size:1.05rem; font-weight:400;
  color:var(--ink-on-paper); margin:30px 0 10px;
}
.contact-left h4:first-of-type { margin-top:0; }

.c-row {
  display:flex; align-items:center; gap:12px;
  padding:11px 0; border-bottom:1px solid var(--paper-mid);
  font-size:.88rem; color:#7A746C;
}
.c-row svg { width:15px; height:15px; stroke:var(--amber); fill:none; stroke-width:1.5; flex-shrink:0; }
.c-row a { color:var(--amber); transition:opacity .3s; }
.c-row a:hover { opacity:.7; }

.contact-form {
  background:var(--ink-on-paper);
  padding:48px 42px;
  display:flex; flex-direction:column; gap:16px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group label {
  font-size:.54rem; font-weight:500; letter-spacing:.24em;
  text-transform:uppercase; color:var(--fog);
}
.form-group input, .form-group select, .form-group textarea {
  padding:12px 14px;
  background:#1E1E1E; border:1px solid rgba(255,255,255,.08);
  color:var(--cream); font-family:var(--sans); font-size:.9rem; font-weight:300;
  outline:none; transition:border-color .3s; -webkit-appearance:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--amber);
}
.form-group textarea { resize:vertical; min-height:100px; }
.form-group select { cursor:pointer; }

.file-drop {
  padding:20px 14px; border:1px dashed rgba(255,255,255,.08);
  background:#1E1E1E; text-align:center; cursor:pointer; transition:border-color .3s;
}
.file-drop:hover { border-color:var(--amber-mid); }
.file-drop p { font-size:.82rem; color:var(--fog); }
.file-drop span { color:var(--amber); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding:80px 60px 36px; background:var(--ink); border-top:1px solid var(--line); }
.footer-inner {
  display:flex; justify-content:space-between; flex-wrap:wrap;
  gap:48px; max-width:1300px; margin:0 auto;
}
.footer-brand .nav-logo { margin-bottom:14px; }
.footer-brand p { font-size:.82rem; color:var(--fog); max-width:260px; line-height:1.85; }
.footer-col h4 {
  font-family:var(--serif); font-size:1rem; font-weight:400;
  color:var(--white); margin-bottom:18px;
}
.footer-col a { display:block; font-size:.82rem; color:var(--fog); padding:5px 0; transition:color .3s; }
.footer-col a:hover { color:var(--amber); }
.footer-bottom {
  max-width:1300px; margin:48px auto 0;
  padding-top:22px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-bottom p { font-size:.7rem; color:var(--fog); letter-spacing:.06em; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1200px) {
  .cap-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:1024px) {
  .navbar { padding:18px 28px; }
  .navbar.scrolled { padding:13px 28px; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .mobile-menu { display:flex; }

  .hero { padding:0 28px 72px; }
  .hero-scroll { right:28px; }

  .section { padding:90px 28px; }
  .statement { padding:90px 28px; }
  .stats-bar { padding:50px 28px; }

  .about-split { grid-template-columns:1fr; }
  .about-img-side { min-height:400px; }
  .about-text-side { padding:60px 28px; }

  .editorial-strip { grid-template-columns:1fr !important; min-height:auto; }
  .editorial-strip .strip-img { height:300px; }
  .editorial-strip .strip-img .img-inner { height:300px; }
  .editorial-strip:nth-child(even) .strip-img  { order:0; }
  .editorial-strip:nth-child(even) .strip-info { order:1; }
  .strip-info { padding:44px 28px; border:none !important; border-top:1px solid var(--line) !important; }
  .editorial-strip:nth-child(even) .strip-info { border-right:none !important; }

  .cap-grid { grid-template-columns:repeat(2,1fr); }
  .resp-grid { grid-template-columns:1fr; }
  .contact-inner { grid-template-columns:1fr; gap:40px; }
  .contact-section { padding:90px 28px; }
  .footer { padding:60px 28px 28px; }
}
@media (max-width:640px) {
  .hero { padding:80px 20px 40px; justify-content:center; }
  .hero-h1 { font-size:3rem; }
  .hero-scroll { display:none; }
  .section { padding:70px 20px; }
  .statement { padding:70px 20px; }
  .stats-bar { padding:40px 20px; }
  .stats-inner { gap:32px; }
  .cap-grid { grid-template-columns:1fr; }
  .resp-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .contact-form { padding:28px 20px; }
  .contact-section { padding:70px 20px; }
  .footer { padding:48px 20px 24px; }
  .footer-inner { flex-direction:column; gap:30px; }
  .navbar { padding:14px 20px; }
  .hero-ctas { flex-direction:column; }
}
