/* ═══════════════════════════════════════════════════
   JUMAE · Cinematic editorial design system
   Inspired by rewildyourself.com — pausado, amplio, premium
   ═══════════════════════════════════════════════════ */

:root {
  --navy: #0F2A4A;
  --navy-deep: #081A30;
  --navy-mid: #1A3A5C;
  --gold: #C8941F;
  --gold-light: #E0B85A;
  --ivory: #F7F5F1;
  --ivory-2: #EFEBE3;
  --ivory-3: #E5E0D5;
  --charcoal: #1A1A1A;
  --gray: #6B6B6B;
  --gray-soft: #8A8680;
  --gray-line: #D8D4CC;
  --display: "Fraunces", "Georgia", serif;
  --body: "Inter Tight", -apple-system, system-ui, sans-serif;
  --maxw: 1440px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-slow: cubic-bezier(.65,0,.35,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 60px; }
@media (max-width: 780px) { .wrap { padding: 0 28px; } }

/* ═══════════════════════════════════════════════════
   NAV — minimal top bar + numbered overlay menu
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 32px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s var(--ease);
  mix-blend-mode: normal;
}
.nav.scrolled {
  padding: 18px 60px;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 212, 204, 0.4);
}
.nav.dark { color: #fff; }
.nav.dark .brand { color: #fff; }
.nav.dark.scrolled {
  background: rgba(8, 26, 48, 0.9);
  border-bottom: 1px solid rgba(200, 148, 31, 0.2);
}
.nav.dark.scrolled .brand { color: #fff; }
.brand {
  font-family: var(--display); font-style: italic; font-weight: 600;
  font-size: 30px; color: var(--navy); letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 10px;
  transition: color .3s;
}
.brand::after {
  content: ""; width: 7px; height: 7px; background: var(--gold);
  display: inline-block; border-radius: 50%;
}
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-contact {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 500; opacity: 0.85; transition: opacity .2s;
}
.nav-contact:hover { opacity: 1; color: var(--gold); }
.menu-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--body); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600;
  color: inherit;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
}
.menu-btn .bars {
  display: inline-flex; flex-direction: column; gap: 4px;
}
.menu-btn .bars span {
  width: 22px; height: 1.5px; background: currentColor;
  transition: all .3s;
}

/* Overlay fullscreen menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy-deep); color: #fff;
  opacity: 0; visibility: hidden;
  transition: opacity .6s var(--ease-slow), visibility .6s;
  overflow-y: auto;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-inner {
  min-height: 100vh; padding: 32px 60px;
  display: flex; flex-direction: column;
}
.menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: auto; }
.menu-top .brand { color: #fff; }
.menu-close {
  background: none; border: none; color: #fff; cursor: pointer;
  font-family: var(--body); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600;
  display: flex; align-items: center; gap: 14px;
}
.menu-close::before { content: "✕"; font-size: 18px; color: var(--gold); }
.menu-links {
  list-style: none; padding: 80px 0 40px;
  max-width: 900px;
}
.menu-links li {
  border-top: 1px solid rgba(200,148,31,0.25);
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease-slow), transform .6s var(--ease-slow);
}
.menu-overlay.open .menu-links li { opacity: 1; transform: translateY(0); }
.menu-overlay.open .menu-links li:nth-child(1) { transition-delay: 0.15s; }
.menu-overlay.open .menu-links li:nth-child(2) { transition-delay: 0.20s; }
.menu-overlay.open .menu-links li:nth-child(3) { transition-delay: 0.25s; }
.menu-overlay.open .menu-links li:nth-child(4) { transition-delay: 0.30s; }
.menu-overlay.open .menu-links li:nth-child(5) { transition-delay: 0.35s; }
.menu-overlay.open .menu-links li:nth-child(6) { transition-delay: 0.40s; }
.menu-overlay.open .menu-links li:nth-child(7) { transition-delay: 0.45s; }
.menu-overlay.open .menu-links li:nth-child(8) { transition-delay: 0.50s; }
.menu-overlay.open .menu-links li:nth-child(9) { transition-delay: 0.55s; }
.menu-links li:last-child { border-bottom: 1px solid rgba(200,148,31,0.25); }
.menu-links a {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 30px;
  padding: 28px 0;
  font-family: var(--display); font-weight: 400; font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
  color: #fff;
  transition: color .3s, padding-left .4s var(--ease);
}
.menu-links a:hover { color: var(--gold-light); padding-left: 20px; }
.menu-links .num {
  font-family: var(--body); font-style: normal; font-size: 13px;
  font-weight: 500; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase;
}
.menu-links .arrow {
  font-family: var(--body); font-style: normal; font-size: 14px;
  color: var(--gold); opacity: 0; transform: translateX(-10px);
  transition: opacity .3s, transform .3s;
}
.menu-links a:hover .arrow { opacity: 1; transform: translateX(0); }
.menu-bottom {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 40px; border-top: 1px solid rgba(200,148,31,0.15);
  margin-top: auto;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
}
.menu-bottom a { color: var(--gold); }
@media (max-width: 780px) {
  .nav, .nav.scrolled { padding: 20px 28px; }
  .nav-contact { display: none; }
  .menu-inner { padding: 20px 28px; }
  .menu-links { padding: 50px 0 30px; }
  .menu-links a { grid-template-columns: 50px 1fr; gap: 18px; padding: 20px 0; }
  .menu-links .arrow { display: none; }
  .menu-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 36px;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600;
  transition: all .4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}
.btn::after {
  content: "→"; font-size: 14px;
  transition: transform .4s var(--ease);
}
.btn:hover::after { transform: translateX(6px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY BASE
   ═══════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 400;
  letter-spacing: -0.025em; color: var(--navy);
}
.eyebrow {
  font-family: var(--body); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}

/* ═══════════════════════════════════════════════════
   HOME · HERO cinematográfico
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 160px 60px 80px;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}
.sub-hero.video-hero .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}
.sub-hero.video-hero::before { opacity: 0; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  opacity: 0.55; filter: grayscale(20%) contrast(1.05);
  transition: transform 8s var(--ease-slow);
  animation: slowZoom 20s var(--ease-slow) infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,48,0.4) 0%, rgba(8,26,48,0.1) 30%, rgba(8,26,48,0.6) 100%),
    linear-gradient(90deg, rgba(8,26,48,0.5) 0%, rgba(8,26,48,0.1) 60%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero-meta {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7); font-weight: 500;
}
.hero-meta .year { color: var(--gold); font-weight: 600; }
.hero h1 {
  font-family: var(--display); font-weight: 400; font-style: italic;
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.88; letter-spacing: -0.04em; color: #fff;
  margin-bottom: 40px;
  max-width: 16ch;
}
.hero h1 .light { font-weight: 300; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  font-family: var(--display); font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255,255,255,0.82);
  max-width: 560px; line-height: 1.5; margin-bottom: 48px;
}
.hero-cta {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6); font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { height: 36px; opacity: 0.6; }
  50% { height: 50px; opacity: 1; }
}
@media (max-width: 780px) {
  .hero { padding: 120px 28px 60px; }
  .hero-top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero h1 { margin-bottom: 28px; }
  .scroll-hint { display: none; }
}

/* ═══════════════════════════════════════════════════
   Welcome / Intro section — luminoso, amplio
   ═══════════════════════════════════════════════════ */
.intro-block {
  background: var(--ivory);
  padding: 180px 0;
}
.intro-block .wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 120px;
  align-items: start;
}
.intro-block .left {
  position: sticky; top: 140px;
}
.intro-block .eyebrow { margin-bottom: 32px; }
.intro-block h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 40px;
  color: var(--navy);
  max-width: 14ch;
}
.intro-block h2 em { font-style: italic; }
.intro-block .quote {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--gold);
  line-height: 1.4; max-width: 380px;
  padding-left: 22px; border-left: 2px solid var(--gold);
}
.intro-block .body p {
  font-size: 18px; line-height: 1.8; color: #2a2a2a;
  margin-bottom: 28px;
}
.intro-block .body p:first-child {
  font-family: var(--display); font-style: italic;
  font-size: 26px; line-height: 1.45; color: var(--navy);
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .intro-block { padding: 120px 0; }
  .intro-block .wrap { grid-template-columns: 1fr; gap: 60px; }
  .intro-block .left { position: static; }
}

/* ═══════════════════════════════════════════════════
   Lines of business — editorial numbered list
   Each line takes its own row with large type & image
   ═══════════════════════════════════════════════════ */
.lines {
  background: var(--ivory-2);
  padding: 180px 0 100px;
}
.lines-header { margin-bottom: 120px; }
.lines-header .eyebrow { margin-bottom: 36px; }
.lines-header h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400; line-height: 0.95;
  color: var(--navy); max-width: 16ch;
}
.lines-header h2 em { font-style: italic; color: var(--gold); }
.lines-header .lede {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--gray);
  max-width: 600px; line-height: 1.5;
  margin-top: 36px;
}

.line-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--gray-line);
  align-items: center;
  transition: background .5s var(--ease);
  position: relative;
}
.line-row:last-child { border-bottom: 1px solid var(--gray-line); }
.line-row::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: var(--ivory);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.line-row:hover::before { opacity: 1; }
.line-row > * { position: relative; z-index: 1; }
.line-num {
  font-family: var(--display); font-style: italic;
  font-size: 48px; color: var(--gold); font-weight: 600;
  line-height: 1;
}
.line-text h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
  transition: color .3s;
}
.line-row:hover .line-text h3 { color: var(--navy-deep); }
.line-text h3 em { font-style: italic; }
.line-text p {
  font-size: 16px; color: var(--gray);
  line-height: 1.7; max-width: 52ch;
  margin-bottom: 24px;
}
.line-text .more {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 12px;
  transition: gap .3s, color .3s;
}
.line-text .more::after {
  content: "→"; color: var(--gold);
  transition: transform .3s;
}
.line-row:hover .line-text .more { color: var(--gold); gap: 18px; }
.line-row:hover .line-text .more::after { transform: translateX(4px); }
.line-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.line-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
  filter: grayscale(20%);
}
.line-row:hover .line-image img { transform: scale(1.05); filter: grayscale(0%); }
@media (max-width: 1000px) {
  .lines { padding: 120px 0 80px; }
  .lines-header { margin-bottom: 80px; }
  .line-row { grid-template-columns: 60px 1fr; gap: 28px; padding: 40px 0; }
  .line-image { grid-column: 1 / -1; aspect-ratio: 16/10; margin-top: 20px; }
  .line-num { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════
   Philosophy strip — dark cinematic section
   ═══════════════════════════════════════════════════ */
.philosophy {
  background: var(--navy-deep); color: #fff;
  padding: 200px 0;
  position: relative; overflow: hidden;
}
.philosophy::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 1400px 700px at 70% 30%, rgba(200,148,31,0.12), transparent 60%);
}
.philosophy .wrap { position: relative; z-index: 2; }
.philosophy .eyebrow { color: var(--gold-light); margin-bottom: 40px; }
.philosophy .eyebrow::before { background: var(--gold-light); }
.philosophy blockquote {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(36px, 5vw, 84px);
  line-height: 1.1; color: #fff;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin-bottom: 60px;
}
.philosophy blockquote em { color: var(--gold-light); }
.philosophy .author {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 14px;
}
.philosophy .author::before {
  content: ""; width: 40px; height: 1px; background: var(--gold);
}

/* ═══════════════════════════════════════════════════
   Process / method — horizontal numbered steps
   ═══════════════════════════════════════════════════ */
.method {
  background: var(--ivory);
  padding: 180px 0;
}
.method-head { margin-bottom: 100px; max-width: 900px; }
.method-head .eyebrow { margin-bottom: 36px; }
.method-head h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 400; line-height: 0.95;
  color: var(--navy); max-width: 16ch;
}
.method-head h2 em { font-style: italic; }
.method-head .lede {
  font-family: var(--display); font-style: italic;
  font-size: 20px; color: var(--gray);
  margin-top: 32px; line-height: 1.5; max-width: 640px;
}
.method-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-line);
}
.method-step {
  padding: 50px 24px 60px;
  border-right: 1px solid var(--gray-line);
  transition: background .4s;
}
.method-step:last-child { border-right: none; }
.method-step:hover { background: var(--ivory-2); }
.method-step .n {
  font-family: var(--display); font-style: italic;
  font-size: 42px; color: var(--gold); font-weight: 600;
  line-height: 1; margin-bottom: 32px;
}
.method-step h4 {
  font-family: var(--display);
  font-size: 22px; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
  font-weight: 600;
}
.method-step p {
  font-size: 14px; color: var(--gray);
  line-height: 1.65;
}
@media (max-width: 1100px) {
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-step { border-right: none; border-bottom: 1px solid var(--gray-line); }
  .method-step:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .method-steps { grid-template-columns: 1fr; }
  .method { padding: 120px 0; }
}

/* ═══════════════════════════════════════════════════
   CTA contact
   ═══════════════════════════════════════════════════ */
.cta {
  background: var(--navy-deep); color: #fff;
  padding: 200px 0;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--cta-img);
  background-size: cover; background-position: center;
  opacity: 0.2; filter: grayscale(40%);
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,48,0.85) 0%, rgba(8,26,48,0.95) 100%);
}
.cta .wrap { position: relative; z-index: 2; }
.cta .eyebrow { color: var(--gold-light); margin-bottom: 40px; }
.cta .eyebrow::before { background: var(--gold-light); }
.cta h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 400; font-style: italic;
  line-height: 0.95; color: #fff;
  max-width: 14ch;
  margin-bottom: 80px;
  letter-spacing: -0.03em;
}
.cta h2 em { color: var(--gold-light); }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(200,148,31,0.3);
}
.cta-item .label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold);
  font-weight: 600; margin-bottom: 18px;
}
.cta-item .val {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: #fff; line-height: 1.4;
}
.cta-item .val a:hover { color: var(--gold-light); }
.cta-action { margin-top: 60px; }
@media (max-width: 900px) {
  .cta { padding: 130px 0; }
  .cta h2 { margin-bottom: 50px; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(200,148,31,0.2);
  font-size: 12px;
}
.foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.foot .brand { color: #fff; font-size: 24px; text-transform: none; letter-spacing: -0.02em; }

/* ═══════════════════════════════════════════════════
   SUBPAGE HERO
   ═══════════════════════════════════════════════════ */
.sub-hero {
  position: relative; min-height: 90vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 160px 60px 100px;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep);
}
.sub-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  opacity: 0.5;
  filter: grayscale(15%) contrast(1.05);
  animation: slowZoom 24s var(--ease-slow) infinite alternate;
}
.sub-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,48,0.55) 0%, rgba(8,26,48,0.2) 30%, rgba(8,26,48,0.8) 100%),
    linear-gradient(90deg, rgba(8,26,48,0.7) 0%, rgba(8,26,48,0.2) 60%);
}
.sub-hero .wrap { position: relative; z-index: 2; width: 100%; }
.breadcrumb {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7); font-weight: 500;
  margin-bottom: 60px;
}
.breadcrumb a { opacity: 0.75; transition: opacity .2s; }
.breadcrumb a:hover { opacity: 1; color: var(--gold-light); }
.breadcrumb .sep { color: var(--gold); }
.sub-hero .line-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--display); font-style: italic;
  font-size: 18px; color: var(--gold-light);
  margin-bottom: 24px;
}
.sub-hero .line-tag::before {
  content: ""; width: 40px; height: 1px; background: var(--gold);
}
.sub-hero h1 {
  font-family: var(--display); font-weight: 400; font-style: italic;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.9; letter-spacing: -0.035em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 48px;
}
.sub-hero h1 em { color: var(--gold-light); }
.sub-hero .lede {
  font-family: var(--display); font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 60px;
}
.sub-hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 780px) {
  .sub-hero { padding: 120px 28px 60px; min-height: 80vh; }
  .breadcrumb { margin-bottom: 40px; }
  .sub-hero h1 { margin-bottom: 28px; }
  .sub-hero .lede { margin-bottom: 40px; }
}

/* ═══════════════════════════════════════════════════
   Subpage — Intro with large image on right
   ═══════════════════════════════════════════════════ */
.sub-intro {
  background: var(--ivory);
  padding: 180px 0;
}
.sub-intro .wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 120px;
  align-items: center;
}
.sub-intro .left .eyebrow { margin-bottom: 36px; }
.sub-intro h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 400; line-height: 1.0;
  color: var(--navy);
  margin-bottom: 40px;
  max-width: 14ch;
}
.sub-intro h2 em { font-style: italic; }
.sub-intro .body p {
  font-size: 17px; line-height: 1.8; color: #2a2a2a;
  margin-bottom: 24px;
}
.sub-intro .body .highlight {
  font-family: var(--display); font-style: italic;
  font-size: 24px; color: var(--navy);
  padding-left: 24px; border-left: 3px solid var(--gold);
  margin: 36px 0 0;
  line-height: 1.5;
}
.sub-intro .right {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy);
}
.sub-intro .right img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 2s var(--ease-slow);
}
.sub-intro:hover .right img { transform: scale(1.03); }
.sub-intro .badge {
  position: absolute; bottom: 32px; left: 32px;
  background: var(--navy-deep); color: #fff;
  padding: 18px 26px;
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.2em; font-weight: 600;
  border-left: 3px solid var(--gold);
}
@media (max-width: 1000px) {
  .sub-intro { padding: 120px 0; }
  .sub-intro .wrap { grid-template-columns: 1fr; gap: 60px; }
  .sub-intro .right { aspect-ratio: 16/10; }
}

/* ═══════════════════════════════════════════════════
   Offerings — numbered list items (full width)
   ═══════════════════════════════════════════════════ */
.offerings {
  background: var(--ivory-2);
  padding: 180px 0;
}
.offerings-head { max-width: 900px; margin-bottom: 120px; }
.offerings-head .eyebrow { margin-bottom: 36px; }
.offerings-head h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 400; line-height: 0.95;
  color: var(--navy); max-width: 18ch;
}
.offerings-head h2 em { font-style: italic; color: var(--gold); }
.offerings-list { border-top: 1px solid var(--gray-line); }
.offering-item {
  display: grid; grid-template-columns: 80px 1fr 2fr;
  gap: 60px; align-items: baseline;
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-line);
  transition: padding-left .5s var(--ease), background .5s var(--ease);
  position: relative;
}
.offering-item::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.offering-item:hover { padding-left: 30px; }
.offering-item:hover::before { transform: scaleY(1); }
.offering-item .n {
  font-family: var(--display); font-style: italic;
  font-size: 28px; color: var(--gold); font-weight: 600;
}
.offering-item h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500; line-height: 1.1;
  color: var(--navy); letter-spacing: -0.015em;
}
.offering-item p {
  font-size: 16px; color: var(--gray);
  line-height: 1.7; max-width: 62ch;
}
@media (max-width: 900px) {
  .offerings { padding: 120px 0; }
  .offering-item { grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; }
  .offering-item p { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════════
   Gallery — asymmetric cinematic
   ═══════════════════════════════════════════════════ */
.gallery {
  background: var(--ivory);
  padding: 180px 0;
}
.gallery-head { max-width: 900px; margin-bottom: 100px; }
.gallery-head .eyebrow { margin-bottom: 36px; }
.gallery-head h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 400; line-height: 0.95;
  color: var(--navy); max-width: 14ch;
}
.gallery-head h2 em { font-style: italic; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 20px;
}
.g-img { overflow: hidden; background: var(--navy); position: relative; }
.g-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
}
.g-img:hover img { transform: scale(1.05); }
.g-1 { grid-column: 1 / 8; grid-row: 1 / 5; }
.g-2 { grid-column: 8 / 13; grid-row: 1 / 3; }
.g-3 { grid-column: 8 / 13; grid-row: 3 / 5; }
.g-4 { grid-column: 1 / 6; grid-row: 5 / 8; }
.g-5 { grid-column: 6 / 13; grid-row: 5 / 8; }
@media (max-width: 900px) {
  .gallery { padding: 120px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-1 { grid-column: 1 / -1; grid-row: auto; }
  .g-2 { grid-column: 1; grid-row: auto; }
  .g-3 { grid-column: 2; grid-row: auto; }
  .g-4 { grid-column: 1; grid-row: auto; }
  .g-5 { grid-column: 2; grid-row: auto; }
}

/* ═══════════════════════════════════════════════════
   Sectors — dark list
   ═══════════════════════════════════════════════════ */
.sectors {
  background: var(--navy-deep); color: #fff;
  padding: 180px 0;
  position: relative; overflow: hidden;
}
.sectors::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 1200px 600px at 80% 20%, rgba(200,148,31,0.1), transparent 60%);
}
.sectors .wrap { position: relative; z-index: 2; }
.sectors-head { max-width: 900px; margin-bottom: 100px; }
.sectors-head .eyebrow { color: var(--gold-light); margin-bottom: 36px; }
.sectors-head .eyebrow::before { background: var(--gold-light); }
.sectors-head h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 400; line-height: 0.95;
  color: #fff; max-width: 14ch;
}
.sectors-head h2 em { font-style: italic; color: var(--gold-light); }
.sectors-head .lede {
  font-family: var(--display); font-style: italic;
  font-size: 20px; color: rgba(255,255,255,0.75);
  margin-top: 32px; line-height: 1.5; max-width: 640px;
}
.sectors-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(200,148,31,0.25);
}
.sector {
  padding: 36px 30px 36px 0;
  border-bottom: 1px solid rgba(200,148,31,0.2);
  border-right: 1px solid rgba(200,148,31,0.2);
  display: flex; align-items: baseline; gap: 24px;
  transition: background .4s, padding-left .4s var(--ease);
}
.sector:hover { background: rgba(200,148,31,0.06); padding-left: 20px; }
.sector:nth-child(3n) { border-right: none; }
.sector .n {
  font-family: var(--display); font-style: italic;
  font-size: 14px; color: var(--gold); font-weight: 600;
}
.sector .t {
  font-family: var(--display);
  font-size: 24px; color: #fff;
  letter-spacing: -0.01em; font-weight: 400;
}
@media (max-width: 900px) {
  .sectors { padding: 120px 0; }
  .sectors-list { grid-template-columns: repeat(2, 1fr); }
  .sector:nth-child(3n) { border-right: 1px solid rgba(200,148,31,0.2); }
  .sector:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .sectors-list { grid-template-columns: 1fr; }
  .sector { border-right: none !important; }
}

/* ═══════════════════════════════════════════════════
   Cross-sell — other lines
   ═══════════════════════════════════════════════════ */
.cross {
  background: var(--ivory);
  padding: 180px 0;
}
.cross-head { max-width: 900px; margin-bottom: 100px; }
.cross-head .eyebrow { margin-bottom: 36px; }
.cross-head h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 400; line-height: 0.95;
  color: var(--navy); max-width: 14ch;
}
.cross-head h2 em { font-style: italic; }
.cross-list { border-top: 1px solid var(--gray-line); }
.cross-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-line);
  transition: padding-left .5s var(--ease);
  position: relative;
}
.cross-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.cross-item:hover { padding-left: 30px; }
.cross-item:hover::before { transform: scaleY(1); }
.cross-item .n {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--gold); font-weight: 600;
}
.cross-item h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400; line-height: 1.1;
  color: var(--navy); letter-spacing: -0.015em;
  transition: color .3s;
}
.cross-item:hover h3 { color: var(--gold); font-style: italic; }
.cross-item .arrow {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--navy);
  font-weight: 600;
  display: flex; align-items: center; gap: 14px;
}
.cross-item .arrow::after { content: "→"; color: var(--gold); }
@media (max-width: 780px) {
  .cross { padding: 120px 0; }
  .cross-item { grid-template-columns: 50px 1fr; gap: 20px; padding: 28px 0; }
  .cross-item .arrow { grid-column: 1 / -1; margin-top: 8px; }
}

/* ═══════════════════════════════════════════════════
   Reveal on scroll
   ═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 1.2s var(--ease-slow), transform 1.2s var(--ease-slow); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }
