:root {
  --red: #ce1126;
  --red-dark: #a70d1f;
  --ink: #171717;
  --muted: #66635f;
  --line: rgba(23, 23, 23, .12);
  --paper: #fff;
  --soft: #f8f7f5;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(100%, 780px); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,.05); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 190px; max-height: 54px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { text-decoration: none; font-size: .9rem; letter-spacing: .04em; }
.primary-nav a:hover { color: var(--red); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: 9px 12px; }

.home-hero, .page-hero { background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)), var(--hero-image); background-size: cover; background-position: center; }
.home-hero { min-height: calc(100vh - 84px); display: grid; place-items: center; text-align: center; padding: 90px 0; }
.hero-content { max-width: 860px; }
.hero-logo { width: min(500px, 82vw); margin: 0 auto 34px; }
.eyebrow { margin: 0 0 16px; color: var(--red); font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; }
.home-hero h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); max-width: 900px; margin: 0 auto 24px; }
.lead { max-width: 700px; margin: 0 auto 34px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; background: var(--red); color: #fff; border: 1px solid var(--red); text-decoration: none; font-weight: 700; letter-spacing: .03em; transition: .2s ease; }
.button:hover { background: var(--red-dark); transform: translateY(-2px); }
.section { padding: clamp(84px, 11vw, 150px) 0; }
.section-copy { background: var(--soft); }
.section h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); margin-bottom: 24px; }
.section-copy p:not(.eyebrow), .prose { font-size: 1.16rem; color: var(--muted); }
.venture-section { background: #fff; }
.section-heading { margin-bottom: 36px; }
.venture-card { display: flex; justify-content: space-between; gap: 40px; align-items: end; min-height: 320px; padding: clamp(34px, 6vw, 72px); border: 1px solid var(--line); text-decoration: none; background: linear-gradient(135deg, #fff 0%, #faf6f5 100%); transition: .25s ease; }
.venture-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(74,15,23,.10); border-color: rgba(206,17,38,.3); }
.venture-card h3 { max-width: 720px; font-size: clamp(2rem, 4vw, 4.2rem); font-family: var(--serif); font-weight: 500; }
.venture-kicker { color: var(--red); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; }
.page-hero { min-height: 54vh; display: grid; align-items: end; padding: 100px 0 70px; }
.page-hero h1 { font-size: clamp(3.5rem, 9vw, 7rem); margin-bottom: 0; }
.prose h2 { color: var(--ink); margin-top: 70px; font-size: clamp(2rem, 4vw, 3.5rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--ink); font-size: 2rem; }
.content-card { border: 1px solid var(--line); padding: 38px; background: #fff; }
.text-link, .contact-email a { color: var(--red); font-weight: 700; text-decoration: none; }
.contact-email { font-size: clamp(1.6rem, 4vw, 3rem); }
.site-footer { border-top: 1px solid var(--line); padding: 54px 0 24px; background: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; }
.footer-inner p { color: var(--muted); margin: 6px 0 0; }
.footer-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-links a { text-decoration: none; }
.copyright { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .header-inner { min-height: 72px; }
  .brand img { width: 150px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { position: absolute; top: 72px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px; }
  .home-hero { min-height: auto; padding: 90px 0; }
  .venture-card, .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* REV001 — Executive Hero */
.site-header {
  transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(23,23,23,.08);
  box-shadow: 0 10px 34px rgba(31,20,21,.06);
}
.header-inner { min-height: 96px; transition: min-height .28s ease; }
.site-header.is-scrolled .header-inner { min-height: 82px; }
.brand img { width: 270px; height: auto; transition: width .28s ease; }
.site-header.is-scrolled .brand img { width: 235px; }
.primary-nav a { position: relative; padding: 8px 0; transition: color .22s ease; }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--red);
  transition: right .22s ease;
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { right: 0; }
.primary-nav a.is-active { color: var(--red); }

.home-hero {
  min-height: calc(100svh - 96px);
  padding: clamp(110px, 14vh, 170px) 0 clamp(105px, 13vh, 155px);
  background-image: linear-gradient(rgba(255,255,255,.26), rgba(255,255,255,.20)), var(--hero-image);
}
.hero-content { max-width: 980px; }
.hero-logo {
  width: min(760px, 92vw);
  height: auto;
  margin: 0 auto 58px;
}
.home-hero .eyebrow {
  margin-bottom: 30px;
  color: rgba(167,13,31,.84);
  letter-spacing: .32em;
}
.home-hero h1 {
  max-width: 940px;
  margin-bottom: 30px;
  font-size: clamp(2.75rem, 5.8vw, 5.65rem);
  font-weight: 400;
  line-height: 1.04;
}
.home-hero .lead { margin-bottom: 44px; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.button-secondary { background: rgba(255,255,255,.76); color: var(--ink); border-color: rgba(23,23,23,.22); }
.button-secondary:hover { background: #fff; color: var(--red); border-color: var(--red); }

.hero-reveal { opacity: 0; animation: heroFade .8s ease forwards; }
.hero-reveal-logo { animation-delay: .08s; }
.hero-reveal-eyebrow { animation-delay: .20s; }
.hero-reveal-title { animation-delay: .32s; }
.hero-reveal-copy { animation-delay: .44s; }
.hero-reveal-actions { animation-delay: .56s; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 820px) {
  .header-inner, .site-header.is-scrolled .header-inner { min-height: 78px; }
  .brand img, .site-header.is-scrolled .brand img { width: 205px; }
  .primary-nav { top: 78px; }
  .home-hero { min-height: auto; padding: 92px 0 104px; }
  .hero-logo { width: min(610px, 94vw); margin-bottom: 44px; }
  .home-hero .eyebrow { letter-spacing: .23em; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: min(100%, 300px); }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .brand img, .site-header.is-scrolled .brand img { width: 180px; }
  .hero-logo { width: min(430px, 96vw); margin-bottom: 36px; }
  .home-hero { padding: 76px 0 88px; }
  .home-hero h1 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
}


/* REV002 — Who We Are */
.who-we-are {
  padding: clamp(108px, 12vw, 168px) 0;
  background: #fff;
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}
.who-we-are-heading {
  max-width: 610px;
}
.who-we-are .eyebrow {
  margin-bottom: 24px;
}
.who-we-are h2 {
  margin: 0;
  max-width: 610px;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 1.01;
  letter-spacing: -.025em;
}
.who-we-are-copy {
  max-width: 610px;
  padding-top: 48px;
  border-left: 1px solid var(--line);
  padding-left: clamp(34px, 4.5vw, 68px);
}
.section-copy.who-we-are .who-we-are-copy p {
  margin: 0;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.9;
}
.section-copy.who-we-are .who-we-are-copy .who-closing {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.38;
  font-style: italic;
}

@media (max-width: 820px) {
  .who-we-are { padding: 96px 0 104px; }
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .who-we-are-heading,
  .who-we-are-copy { max-width: 680px; }
  .who-we-are-copy {
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 480px) {
  .who-we-are { padding: 78px 0 88px; }
  .who-we-are-grid { gap: 38px; }
  .who-we-are .eyebrow { margin-bottom: 18px; }
  .who-we-are h2 {
    max-width: 340px;
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }
  .section-copy.who-we-are .who-we-are-copy p {
    font-size: 1.06rem;
    line-height: 1.82;
  }
  .section-copy.who-we-are .who-we-are-copy .who-closing {
    margin-top: 34px;
    padding-top: 28px;
    font-size: 1.5rem;
  }
}

/* REV003 — About NUSARAYA Editorial Page */
.about-hero {
  min-height: 600px;
  display: grid;
  align-items: center;
  padding: clamp(110px, 13vw, 170px) 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 52%, rgba(255,255,255,.34) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.about-hero-grid { display: grid; grid-template-columns: minmax(0, 690px) 1fr; }
.about-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7.4vw, 7rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}
.about-hero-rule { display: block; width: 30px; height: 1px; margin: 34px 0 28px; background: var(--red); }
.about-hero-lead {
  max-width: 620px;
  margin: 0;
  color: #494541;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  line-height: 1.38;
}
.about-story { padding: clamp(88px, 10vw, 132px) 0 clamp(96px, 11vw, 150px); background: #fff; }
.about-intro { max-width: 620px; padding-bottom: clamp(64px, 8vw, 96px); }
.about-intro h2,
.about-statement h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}
.about-intro h2 { max-width: 560px; font-size: clamp(2.8rem, 4.8vw, 4.5rem); line-height: 1.06; }
.about-intro > p:last-child { max-width: 560px; margin: 30px 0 0; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.about-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding: clamp(58px, 7vw, 86px) 0;
  border-top: 1px solid var(--line);
}
.about-statement h2 { max-width: 820px; font-size: clamp(2.35rem, 4.1vw, 3.9rem); line-height: 1.12; }
.about-symbol { width: 116px; height: 116px; justify-self: center; }
.about-symbol svg,
.principle svg { width: 100%; height: 100%; fill: none; stroke: var(--red); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.about-principles { padding-top: clamp(64px, 8vw, 92px); border-top: 1px solid var(--line); }
.about-principles-lead { max-width: 760px; margin: 0 0 52px; color: var(--muted); font-size: 1.08rem; }
.principles-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.principle { min-width: 0; padding: 0 clamp(20px, 2.7vw, 38px); text-align: center; border-left: 1px solid var(--line); }
.principle:first-child { border-left: 0; padding-left: 0; }
.principle:last-child { padding-right: 0; }
.principle svg { width: 54px; height: 54px; margin: 0 auto 22px; }
.principle h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.principle p { margin: 0 auto; max-width: 180px; color: var(--muted); font-size: .92rem; line-height: 1.65; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 900px) {
  .about-hero { min-height: 520px; background-position: 58% center; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-statement { grid-template-columns: minmax(0, 1fr) 120px; }
  .principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 0; }
  .principle:nth-child(odd) { border-left: 0; }
  .principle:nth-child(even) { border-left: 1px solid var(--line); }
  .principle:last-child { grid-column: 1 / -1; max-width: 320px; justify-self: center; border-left: 0; }
}

@media (max-width: 620px) {
  .about-hero { min-height: auto; padding: 94px 0 102px; background-position: 62% center; }
  .about-hero-copy h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .about-hero-lead { max-width: 360px; font-size: 1.45rem; }
  .about-story { padding: 76px 0 92px; }
  .about-intro { padding-bottom: 58px; }
  .about-intro h2 { font-size: clamp(2.6rem, 12vw, 3.7rem); }
  .about-statement { grid-template-columns: 1fr; gap: 34px; padding: 54px 0; }
  .about-statement h2 { font-size: clamp(2.15rem, 10vw, 3.1rem); }
  .about-symbol { width: 92px; height: 92px; justify-self: start; }
  .about-principles-lead { margin-bottom: 38px; }
  .principles-grid { grid-template-columns: 1fr; gap: 0; }
  .principle,
  .principle:nth-child(even),
  .principle:nth-child(odd),
  .principle:last-child {
    grid-column: auto;
    max-width: none;
    padding: 34px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .principle:first-child { border-top: 0; padding-top: 10px; }
  .principle p { max-width: 280px; }
}

/* v1.3.0 — Corporate Editorial Edition */
.editorial-hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: clamp(140px, 16vw, 210px) 0 clamp(82px, 10vw, 126px);
  background-image: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 46%, rgba(255,255,255,.35) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
}
.editorial-hero__inner { max-width: 940px; margin-left: max(0px, calc((100vw - var(--max)) / 2)); }
.editorial-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.1vw, 7rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.04em;
}
.editorial-hero__lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: #504b47;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.7;
}
.editorial-hero--ventures { background-position: center 45%; }
.editorial-hero--contact { min-height: 620px; }

.editorial-intro { padding: clamp(96px, 11vw, 150px) 0; background: #fff; }
.editorial-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}
.editorial-intro h2,
.editorial-heading h2,
.editorial-cta h2,
.contact-editorial h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.03em;
}
.editorial-intro h2 { max-width: 720px; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 1.07; }
.editorial-intro__copy { padding: 34px 0 0 clamp(34px, 4vw, 66px); border-left: 1px solid var(--line); }
.editorial-intro__copy p { margin: 0 0 28px; color: var(--muted); font-size: 1.12rem; line-height: 1.85; }
.editorial-intro__copy p:last-child { margin-bottom: 0; }

.editorial-principles { padding: clamp(92px, 11vw, 146px) 0; background: var(--soft); }
.editorial-heading { max-width: 760px; margin-bottom: clamp(50px, 7vw, 82px); }
.editorial-heading h2 { font-size: clamp(2.7rem, 4.7vw, 4.5rem); line-height: 1.08; }
.editorial-principles__grid { border-top: 1px solid var(--line); }
.editorial-principle {
  display: grid;
  grid-template-columns: 70px minmax(220px, .75fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  padding: clamp(34px, 4.5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}
.editorial-principle > span,
.venture-thesis article > span { color: var(--red); font-size: .78rem; font-weight: 700; letter-spacing: .16em; }
.editorial-principle h3,
.venture-thesis h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 500; line-height: 1.15; }
.editorial-principle p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }

.editorial-quote { padding: clamp(110px, 14vw, 185px) 0; background: #1b1718; color: #fff; text-align: center; }
.editorial-quote p { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; line-height: 1.15; letter-spacing: -.03em; }
.editorial-quote p::before { content: '“'; display: block; margin-bottom: 18px; color: var(--red); font-size: 4.5rem; line-height: .5; }

.editorial-cta { padding: clamp(86px, 10vw, 126px) 0; background: #fff; }
.editorial-cta--soft { background: var(--soft); }
.editorial-cta__inner { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.editorial-cta h2 { max-width: 760px; font-size: clamp(2.6rem, 4.8vw, 4.6rem); line-height: 1.08; }
.editorial-cta .button { flex: 0 0 auto; }

.venture-showcase { padding: 0 0 clamp(104px, 12vw, 160px); background: #fff; }
.venture-feature { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr); min-height: 660px; border: 1px solid var(--line); }
.venture-feature__visual { min-height: 520px; background-image: linear-gradient(rgba(22,16,17,.08), rgba(22,16,17,.08)), var(--venture-image); background-size: cover; background-position: center; }
.venture-feature__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(46px, 6vw, 84px); background: #fff; }
.venture-feature__content h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.4rem, 5.8vw, 6.2rem); font-weight: 500; letter-spacing: -.04em; }
.venture-feature__statement { margin: 20px 0 26px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.05rem); line-height: 1.35; }
.venture-feature__content > p:not(.eyebrow):not(.venture-feature__statement) { color: var(--muted); font-size: 1.05rem; line-height: 1.78; }
.venture-feature__pillars { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; padding: 0; list-style: none; }
.venture-feature__pillars li { padding: 8px 12px; border: 1px solid var(--line); font-size: .82rem; letter-spacing: .04em; }
.venture-feature__content .button { align-self: flex-start; }

.venture-thesis { padding: clamp(94px, 11vw, 145px) 0; background: #1b1718; color: #fff; }
.venture-thesis .eyebrow { color: #ef7b88; }
.venture-thesis__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.16); }
.venture-thesis article { min-height: 330px; padding: 42px clamp(28px, 3.4vw, 52px) 38px; border-left: 1px solid rgba(255,255,255,.16); }
.venture-thesis article:first-child { border-left: 0; padding-left: 0; }
.venture-thesis h3 { margin-top: 44px; }
.venture-thesis article p { margin: 22px 0 0; color: rgba(255,255,255,.68); line-height: 1.75; }

.contact-editorial { padding: clamp(96px, 12vw, 160px) 0; background: #fff; }
.contact-editorial__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .68fr); gap: clamp(72px, 10vw, 150px); }
.contact-editorial__primary { max-width: 760px; }
.contact-editorial h2 { font-size: clamp(3rem, 5.6vw, 5.5rem); line-height: 1.04; }
.contact-editorial__email { display: inline-block; margin: 48px 0 30px; color: var(--red); font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.1rem); text-decoration: none; line-height: 1.1; }
.contact-editorial__email:hover { color: var(--red-dark); }
.contact-editorial__primary > p:last-child { max-width: 610px; color: var(--muted); font-size: 1.06rem; line-height: 1.8; }
.contact-editorial__details { border-top: 1px solid var(--line); }
.contact-editorial__details > div { padding: 30px 0; border-bottom: 1px solid var(--line); }
.contact-editorial__details p { margin: 0; }
.contact-editorial__details p:last-child { color: var(--muted); line-height: 1.7; }
.contact-closing { padding: clamp(100px, 13vw, 170px) 0; background: var(--soft); text-align: center; }
.contact-closing p { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.8vw, 4.8rem); line-height: 1.18; letter-spacing: -.03em; }

.site-footer { padding: clamp(70px, 8vw, 100px) 0 28px; background: #171415; color: #fff; border-top: 0; }
.footer-main { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(160px, .6fr) minmax(230px, .8fr); gap: clamp(48px, 8vw, 120px); }
.footer-brand img { width: min(330px, 100%); filter: brightness(0) invert(1); }
.footer-brand p { max-width: 500px; margin: 28px 0 0; color: rgba(255,255,255,.64); line-height: 1.75; }
.footer-nav,
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-nav a,
.footer-contact a { color: #fff; text-decoration: none; }
.footer-nav a:hover,
.footer-contact a:hover { color: #ef7b88; }
.footer-label { margin: 0 0 12px; color: #ef7b88; font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-contact > p:last-child { margin: 14px 0 0; color: rgba(255,255,255,.5); font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.46); font-size: .78rem; letter-spacing: .03em; }

@media (max-width: 900px) {
  .editorial-hero { min-height: 560px; background-position: 62% center; }
  .editorial-intro__grid,
  .contact-editorial__grid { grid-template-columns: 1fr; gap: 50px; }
  .editorial-intro__copy { max-width: 680px; padding: 0; border-left: 0; }
  .venture-feature { grid-template-columns: 1fr; }
  .venture-feature__visual { min-height: 460px; }
  .venture-thesis__grid { grid-template-columns: 1fr; }
  .venture-thesis article,
  .venture-thesis article:first-child { min-height: 0; padding: 38px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .venture-thesis h3 { margin-top: 26px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .editorial-hero { min-height: auto; padding: 100px 0 84px; background-position: 68% center; }
  .editorial-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .editorial-hero__lead { font-size: 1.08rem; }
  .editorial-principle { grid-template-columns: 48px 1fr; gap: 16px 20px; }
  .editorial-principle p { grid-column: 2; }
  .editorial-cta__inner { align-items: flex-start; flex-direction: column; }
  .venture-feature__visual { min-height: 340px; }
  .venture-feature__content { padding: 38px 26px 46px; }
  .contact-editorial__email { overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
