:root {
  --ink: #0b0b0b;
  --ink-soft: #151311;
  --paper: #f2ede6;
  --paper-2: #e8dfd4;
  --white: #fffdf9;
  --copper: #a9633f;
  --copper-light: #c98963;
  --muted: #77716b;
  --line: rgba(12, 12, 12, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --header-h: 78px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--copper); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  left: -210px;
  top: -210px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(170, 98, 60, .16), rgba(170, 98, 60, 0) 68%);
  transform: translate3d(var(--x, 0), var(--y, 0), 0);
  transition: opacity .35s ease;
}
body.has-pointer .cursor-glow { opacity: 1; }

.site-header {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1200px, calc(100% - 32px));
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(10, 10, 10, .72);
  color: #fff;
  box-shadow: 0 14px 42px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, .9);
  border-color: rgba(255, 255, 255, .18);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 50px; height: 50px; border-radius: 14px; object-fit: cover; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.1; gap: 4px; }
.brand-copy strong { font-size: 12px; letter-spacing: .12em; }
.brand-copy small { color: rgba(255, 255, 255, .58); font-size: 9px; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.5vw, 34px); }
.desktop-nav a { position: relative; font-size: 12px; color: rgba(255, 255, 255, .72); transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--copper-light); transition: right .3s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; padding: 12px 15px; border-radius: 12px; background: #fff; color: #0b0b0b; font-size: 12px; font-weight: 700; transition: transform .25s ease, background .25s ease; }
.header-cta:hover { transform: translateY(-2px); background: #f0e3d8; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  padding: 150px max(28px, calc((100vw - 1320px) / 2)) 100px;
  background: #090909;
  color: #fff;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.55) 55%, transparent 100%);
  opacity: .72;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #090909);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  opacity: .35;
  background: radial-gradient(circle at 35% 35%, rgba(183, 112, 75, .64), rgba(73, 37, 21, .1) 56%, transparent 72%);
  animation: floatOrb 14s ease-in-out infinite alternate;
}
.hero-orb-one { left: -260px; top: -240px; }
.hero-orb-two { right: -300px; bottom: -320px; animation-delay: -7s; animation-duration: 18s; }
@keyframes floatOrb {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(100px,65px,0) scale(1.12); }
  100% { transform: translate3d(20px,140px,0) scale(.96); }
}

.hero-content, .hero-visual { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 600; }
.eyebrow span { width: 38px; height: 1px; background: var(--copper-light); }
.hero h1, .display { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: .94; }
.hero h1 { margin: 30px 0 24px; max-width: 790px; font-size: clamp(66px, 7.7vw, 126px); }
.hero h1 em, .display em { color: var(--copper-light); font-weight: 400; }
.hero-lead { max-width: 700px; color: rgba(255,255,255,.64); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; font-size: 12px; font-weight: 700; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: #fff; }
.button-primary:hover { background: #bb7650; }
.button-ghost { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.78); }
.button-ghost:hover { color: #fff; border-color: rgba(255,255,255,.38); }
.button-light { background: #fff; color: #111; }
.button-light:hover { background: #f4e5db; }
.hero-meta { margin-top: clamp(38px, 6vh, 76px); padding-top: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-meta div { display: grid; gap: 3px; }
.hero-meta strong { font-size: 12px; }
.hero-meta span { color: rgba(255,255,255,.42); font-size: 10px; }
.hero-photo-wrap { position: relative; height: min(71vh, 760px); min-height: 560px; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; transform: scale(1.035); animation: heroBreath 12s ease-in-out infinite alternate; }
@keyframes heroBreath { from { transform: scale(1.035); } to { transform: scale(1.085); } }
.photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03) 20%, rgba(0,0,0,.54) 100%); }
.photo-badge { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: end; justify-content: space-between; gap: 24px; color: #fff; }
.photo-badge span { font-size: 10px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .12em; }
.photo-badge strong { max-width: 210px; text-align: right; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.08; }
.hero-stamp { position: absolute; left: -55px; bottom: 70px; width: 122px; height: 122px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: #17110e; box-shadow: 0 15px 50px rgba(0,0,0,.25); }
.hero-stamp svg { position: absolute; inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px); animation: spin 22s linear infinite; }
.hero-stamp text { fill: #3a2d26; font: 600 9px var(--sans); letter-spacing: 2px; }
.hero-stamp > span { font-family: var(--serif); font-size: 42px; }
@keyframes spin { to { transform: rotate(360deg); } }
.scroll-cue { position: absolute; z-index: 3; left: max(28px, calc((100vw - 1320px) / 2)); bottom: 30px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.46); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.scroll-cue i { position: relative; width: 54px; height: 1px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: translateX(-100%); animation: scan 2s ease-in-out infinite; }
@keyframes scan { 0% { transform: translateX(-100%); } 65%,100% { transform: translateX(100%); } }

.section-pad { padding: clamp(82px, 10vw, 145px) max(24px, calc((100vw - 1320px) / 2)); }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 35px; color: #827870; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section-label span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--copper); }
.section-label-light { color: rgba(255,255,255,.48); }
.section-label-light span { border-color: rgba(255,255,255,.17); color: var(--copper-light); }
.display { margin: 0; font-size: clamp(52px, 6.7vw, 105px); }
.statement { background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(40px, 8vw, 120px); align-items: end; }
.statement-grid .display { max-width: 940px; }
.statement-copy { color: #5d5752; font-size: 15px; line-height: 1.8; }
.statement-copy p:first-child { color: #1f1b18; font-weight: 600; }
.statement-copy p + p { margin-top: 20px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(60px, 8vw, 120px); }
.pain-card { position: relative; min-height: 390px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.3); transition: transform .35s ease, background .35s ease; }
.pain-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.7); }
.pain-card::before { content: ""; position: absolute; left: -35%; top: -40%; width: 90%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(169,99,63,.14); transition: transform .6s ease; }
.pain-card:hover::before { transform: scale(1.18); }
.pain-card-accent { background: var(--copper); color: #fff; border-color: transparent; }
.pain-card-accent:hover { background: #b66f49; }
.pain-number { position: relative; z-index: 1; font-size: 10px; color: #9b8e84; }
.pain-card-accent .pain-number { color: rgba(255,255,255,.6); }
.pain-card h3 { position: relative; z-index: 1; margin: 120px 0 16px; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3vw, 43px); line-height: 1; }
.pain-card p { position: relative; z-index: 1; max-width: 360px; margin: 0; color: #706860; font-size: 13px; }
.pain-card-accent p { color: rgba(255,255,255,.72); }
.pain-arrow { position: absolute; right: 22px; bottom: 20px; font-size: 22px; }

.ecosystem { background: #0d0d0d; color: #fff; }
.ecosystem-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.ecosystem-heading .display { max-width: 880px; }
.ecosystem-heading > p { max-width: 430px; margin: 0 0 10px; color: rgba(255,255,255,.48); font-size: 14px; }
.ecosystem-list { margin-top: clamp(65px, 8vw, 115px); border-top: 1px solid var(--line-light); }
.ecosystem-row { display: grid; grid-template-columns: 80px 1fr 1.2fr 44px; gap: 24px; align-items: center; min-height: 145px; border-bottom: 1px solid var(--line-light); transition: background .3s ease, padding .3s ease; }
.ecosystem-row:hover { background: rgba(255,255,255,.035); padding-left: 16px; padding-right: 16px; }
.ecosystem-row > span { color: var(--copper-light); font-size: 10px; }
.ecosystem-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px); font-weight: 400; }
.ecosystem-row p { max-width: 540px; margin: 0; color: rgba(255,255,255,.47); font-size: 13px; }
.ecosystem-row i { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-style: normal; transition: transform .3s ease, background .3s ease; }
.ecosystem-row:hover i { transform: rotate(45deg); background: var(--copper); border-color: var(--copper); }

.how { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 150px); background: var(--paper-2); }
.how-intro { position: sticky; top: 130px; align-self: start; }
.how-intro .display { font-size: clamp(50px, 5.2vw, 82px); }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.step-index { color: var(--copper); font-size: 11px; }
.step-body h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 36px; font-weight: 400; line-height: 1.05; }
.step-body p { max-width: 550px; margin: 0; color: #6d655f; font-size: 13px; }

.ventures { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; background: var(--paper); }
.ventures-media { overflow: hidden; min-height: 750px; }
.ventures-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.ventures-media:hover img { transform: scale(1.035); }
.ventures-copy { display: flex; flex-direction: column; justify-content: center; padding-left: clamp(38px, 6vw, 100px); padding-right: max(30px, calc((100vw - 1320px) / 2)); }
.ventures-copy .display { font-size: clamp(52px, 5.6vw, 89px); }
.ventures-copy > p { max-width: 620px; margin: 32px 0 0; color: #665f59; font-size: 14px; }
.ventures-copy .fine-print { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: #8a827b; font-size: 10px; }
.text-link { display: inline-flex; align-items: center; gap: 18px; align-self: flex-start; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid #111; font-size: 12px; font-weight: 700; }

.inside { background: #f7f2eb; }
.inside-head { display: grid; grid-template-columns: .4fr 1.6fr; gap: 30px; align-items: start; }
.inside-head .section-label { margin-top: 14px; }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 440px 440px 560px; gap: 16px; margin-top: 75px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; border-radius: 26px; background: #d8cec3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to bottom, transparent, rgba(0,0,0,.7)); pointer-events: none; }
.gallery-item figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: #fff; font-family: var(--serif); font-size: 25px; line-height: 1.1; }
.gallery-a { grid-row: 1 / 3; }
.gallery-d { grid-column: 1 / -1; }
.gallery-d img { object-position: 50% 42%; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 140px); background: var(--paper); }
.faq-head .display { font-size: clamp(50px, 5.4vw, 84px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 34px; gap: 20px; align-items: center; padding: 26px 0; font-family: var(--serif); font-size: clamp(24px, 2.5vw, 36px); line-height: 1.08; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font: 400 18px var(--sans); transition: transform .3s ease, background .3s ease; }
.faq-item[open] summary span { transform: rotate(45deg); background: #111; color: #fff; }
.faq-item > div { overflow: hidden; }
.faq-item p { max-width: 690px; margin: 0; padding: 0 50px 28px 0; color: #6a625c; font-size: 14px; }

.contact { position: relative; overflow: hidden; background: #0a0a0a; color: #fff; }
.contact-bg { position: absolute; inset: -30%; background: radial-gradient(circle at 75% 35%, rgba(169,99,63,.28), transparent 29%), radial-gradient(circle at 25% 80%, rgba(113,62,39,.18), transparent 25%); animation: contactGlow 14s ease-in-out infinite alternate; }
@keyframes contactGlow { to { transform: translate3d(-4%, 3%, 0) scale(1.06); } }
.contact-top, .contact-grid { position: relative; z-index: 1; }
.contact-top .display { max-width: 1040px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 72px; }
.contact-primary { min-height: 470px; padding: 34px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; border: 1px solid var(--line-light); border-radius: 28px; background: rgba(255,255,255,.045); backdrop-filter: blur(8px); }
.contact-kicker { margin-bottom: auto; color: var(--copper-light); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-primary .phone { font-family: var(--serif); font-size: clamp(46px, 5vw, 78px); line-height: 1; }
.contact-primary p { max-width: 560px; margin: 18px 0 26px; color: rgba(255,255,255,.55); font-size: 13px; }
.contact-socials { border-top: 1px solid var(--line-light); }
.contact-socials a { display: grid; grid-template-columns: 120px 1fr 34px; align-items: center; gap: 20px; min-height: 108px; border-bottom: 1px solid var(--line-light); transition: padding .3s ease, background .3s ease; }
.contact-socials a:hover { padding-left: 16px; padding-right: 16px; background: rgba(255,255,255,.035); }
.contact-socials span { color: rgba(255,255,255,.42); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.contact-socials strong { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px); font-weight: 400; }
.contact-socials i { font-style: normal; }

.site-footer { padding: 44px max(24px, calc((100vw - 1320px) / 2)) 26px; background: #080808; color: #fff; border-top: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 55px; height: 55px; border-radius: 14px; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand strong { font-size: 12px; letter-spacing: .12em; }
.footer-brand span { color: rgba(255,255,255,.4); font-size: 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; margin: 42px 0; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.35); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 0.8fr; }
  .hero h1 { font-size: clamp(64px, 8vw, 100px); }
  .hero-stamp { left: -40px; }
  .statement-grid, .ecosystem-heading { gap: 55px; }
  .pain-card { min-height: 360px; }
  .inside-head { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { justify-self: end; width: 46px; height: 46px; display: grid; place-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: transparent; color: #fff; cursor: pointer; }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: absolute; left: 0; right: 0; top: calc(100% + 10px); padding: 10px; display: grid; gap: 2px; visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(10,10,10,.96); box-shadow: 0 24px 60px rgba(0,0,0,.28); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .mobile-nav.open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-nav a { padding: 13px 12px; border-radius: 10px; color: rgba(255,255,255,.72); font-size: 13px; }
  .mobile-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
  .mobile-nav .mobile-contact { margin-top: 6px; background: var(--copper); color: #fff; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 142px; }
  .hero-content { padding-bottom: 10px; }
  .hero-visual { max-width: 760px; }
  .hero-photo-wrap { min-height: 560px; height: 68vh; }
  .hero-stamp { left: auto; right: -16px; bottom: 46px; }
  .scroll-cue { display: none; }
  .statement-grid, .ecosystem-heading, .how, .faq { grid-template-columns: 1fr; }
  .statement-copy { max-width: 720px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-card-accent { grid-column: 1 / -1; }
  .ecosystem-row { grid-template-columns: 55px 1fr 44px; padding: 24px 0; }
  .ecosystem-row p { grid-column: 2 / 3; }
  .ecosystem-row i { grid-column: 3; grid-row: 1; }
  .how-intro { position: static; }
  .ventures { grid-template-columns: 1fr; }
  .ventures-media { min-height: 650px; height: 76vh; }
  .ventures-copy { padding-right: max(24px, calc((100vw - 1320px) / 2)); }
  .gallery { grid-template-rows: 400px 400px 500px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --radius-xl: 26px; }
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 66px; padding: 8px; border-radius: 18px; }
  .brand img { width: 46px; height: 46px; border-radius: 12px; }
  .brand-copy small { display: none; }
  .hero { gap: 34px; padding: 118px 16px 74px; }
  .hero h1 { margin-top: 24px; font-size: clamp(58px, 18vw, 82px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; gap: 12px; }
  .hero-meta div { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-photo-wrap { min-height: 460px; height: 62vh; border-radius: 26px; }
  .photo-badge { align-items: start; flex-direction: column; gap: 7px; }
  .photo-badge strong { text-align: left; font-size: 22px; }
  .hero-stamp { width: 98px; height: 98px; right: -8px; bottom: 35px; }
  .hero-stamp > span { font-size: 34px; }
  .display { font-size: clamp(48px, 15vw, 68px); }
  .section-pad { padding-left: 16px; padding-right: 16px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card-accent { grid-column: auto; }
  .pain-card { min-height: 330px; }
  .pain-card h3 { margin-top: 95px; }
  .ecosystem-row { grid-template-columns: 40px 1fr; gap: 14px; }
  .ecosystem-row p { grid-column: 2; }
  .ecosystem-row i { display: none; }
  .step { grid-template-columns: 44px 1fr; gap: 12px; }
  .step-body h3 { font-size: 31px; }
  .ventures-media { min-height: 540px; height: 70vh; }
  .ventures-copy { padding-left: 16px; padding-right: 16px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; margin-top: 50px; }
  .gallery-a, .gallery-d { grid-row: auto; grid-column: auto; }
  .gallery-item { height: 420px; border-radius: 20px; }
  .gallery-d { height: 320px; }
  .faq { gap: 50px; }
  .faq-item summary { font-size: 27px; }
  .contact-primary { min-height: 430px; padding: 22px; }
  .contact-primary .phone { font-size: clamp(42px, 13vw, 58px); }
  .contact-socials a { grid-template-columns: 90px 1fr 20px; min-height: 92px; gap: 12px; }
  .contact-socials strong { font-size: 25px; overflow-wrap: anywhere; }
  .footer-bottom { flex-direction: column; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
  .pain-card:hover, .button:hover, .hero-photo, .gallery-item:hover img, .ventures-media:hover img { transform: none; }
}

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