:root {
  --ink: #07101f;
  --ink-soft: #0c1729;
  --navy: #142744;
  --blue: #526b91;
  --ice: #dbe3ef;
  --paper: #f3f1ec;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --text-muted: #697487;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: #fff;
  color: #000;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 72px);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, height 0.35s;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(7, 16, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(130%);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo { display: block; width: 174px; height: auto; }
.global-nav { display: flex; align-items: center; gap: 32px; }
.global-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
}
.global-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: #fff;
  transition: right .25s;
}
.global-nav a:hover::after { right: 0; }
.nav-contact {
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 100px;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(7,16,31,.98) 8%, rgba(12,27,51,.93) 52%, rgba(27,49,78,.92)),
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .19;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.hero-art { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one {
  width: min(62vw, 900px);
  aspect-ratio: 1;
  right: -13vw;
  top: -22%;
  background: radial-gradient(circle at 40% 42%, rgba(110,139,180,.28), rgba(44,75,117,.08) 45%, transparent 68%);
  border: 1px solid rgba(184,205,230,.08);
}
.orb-two {
  width: min(40vw, 600px);
  aspect-ratio: 1;
  right: 10vw;
  bottom: -36%;
  background: radial-gradient(circle, rgba(89,117,155,.2), transparent 67%);
}
.line {
  position: absolute;
  width: 1px;
  height: 140%;
  top: -20%;
  background: linear-gradient(transparent, rgba(255,255,255,.17), transparent);
  transform: rotate(31deg);
}
.line-one { right: 25%; }
.line-two { right: 38%; opacity: .4; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 110px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.4vw, 76px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.hero-line { display: block; }
.hero-line-accent { color: #cad5e6; }
.text-line { display: block; }
.hero-copy {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
}
.hero-actions { display: flex; gap: 12px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  transition: transform .25s, background .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: #f4f3ee; color: var(--ink); }
.button-ghost { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.button-ghost:hover { border-color: rgba(255,255,255,.75); }
.hero-foot {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 72px);
  right: clamp(24px, 4vw, 72px);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: .26em;
  color: rgba(255,255,255,.42);
}

.section { position: relative; padding: clamp(100px, 12vw, 180px) max(24px, calc((100vw - 1180px) / 2)); }
.section-number {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 56px;
  color: #9da5b1;
  font-size: 10px;
  letter-spacing: .2em;
}
.statement { background: #f3f1ec; }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); }
.section-kicker { color: #68778b; }
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -.04em;
}
.heading-line { display: block; white-space: nowrap; }
.statement-copy { padding-top: 52px; }
.statement-copy p {
  margin: 0 0 26px;
  color: #455064;
  font-size: 15px;
  line-height: 2.1;
}
.business { color: #fff; background: var(--ink); }
.business .section-kicker { color: #8ea0b8; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 72px; }
.section-head > p { margin: 0; color: #7e8999; font-size: 13px; line-height: 1.9; }
.business-list { border-top: 1px solid var(--line); }
.business-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.business-index { color: #65738a; font-family: var(--serif); font-size: 20px; }
.business-body { display: grid; grid-template-columns: 210px 1fr 210px; align-items: center; gap: 48px; }
.business-en { margin: 0; color: #8798b0; font-size: 10px; letter-spacing: .22em; }
.business-body h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.business-body > p:not(.business-en) { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }
.business-body a { justify-self: end; font-size: 11px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 8px; }
.business-body a:hover { border-color: #fff; }

.manifesto {
  min-height: 72vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(112,138,176,.24), transparent 34%),
    linear-gradient(145deg, #101b2d, #203858 56%, #08111e);
}
.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  width: 65vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transform: rotate(-26deg);
}
.manifesto::before { left: -12vw; top: 31%; }
.manifesto::after { right: -15vw; bottom: 20%; }
.manifesto-inner { position: relative; z-index: 1; text-align: center; padding: 100px 24px; }
.manifesto-inner p { margin: 0 0 24px; color: #aebfd5; font-size: 10px; letter-spacing: .3em; }
.manifesto-inner h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 7vw, 92px); font-weight: 400; line-height: 1.15; }

.company { background: #f3f1ec; }
.company-table { margin: 0; border-top: 1px solid #c8c9c5; }
.company-table > div { display: grid; grid-template-columns: 220px 1fr; padding: 27px 0; border-bottom: 1px solid #d3d3cf; }
.company-table dt { color: #768091; font-size: 11px; letter-spacing: .08em; }
.company-table dd { margin: 0; font-size: 14px; line-height: 1.8; }
.company-table a { text-underline-offset: 4px; }

.contact { padding: 120px 24px; color: #fff; background: #0a1424; text-align: center; }
.contact .section-kicker { color: #8193ad; }
.contact h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 70px); font-weight: 400; }
.contact p:not(.section-kicker) { margin: 24px 0 36px; color: rgba(255,255,255,.58); font-size: 13px; }
.button-light { background: #fff; color: var(--ink); }
.site-footer {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px clamp(24px, 4vw, 72px);
  color: #fff;
  background: #050c16;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: block; width: 176px; height: auto; }
.footer-links { display: flex; gap: 26px; }
.footer-links a,
.site-footer > p { color: rgba(255,255,255,.46); font-size: 9px; letter-spacing: .18em; text-decoration: none; }
.footer-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .menu-button {
    display: grid;
    gap: 7px;
    width: 40px;
    height: 40px;
    place-content: center;
    color: #fff;
    background: transparent;
    border: 0;
  }
  .menu-button span:not(.sr-only) { display: block; width: 22px; height: 1px; background: currentColor; transition: transform .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(7,16,31,.97);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .global-nav.is-open { display: flex; }
  .global-nav a { padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .nav-contact { margin-top: 14px; text-align: center; border: 1px solid rgba(255,255,255,.28) !important; }
  .statement-grid { grid-template-columns: 1fr; gap: 26px; }
  .statement-copy { padding-top: 0; }
  .business-card { grid-template-columns: 48px 1fr; }
  .business-body { grid-template-columns: 1fr; gap: 16px; }
  .business-body a { justify-self: start; margin-top: 6px; }
}

@media (max-width: 600px) {
  .brand-logo { width: 146px; }
  .hero-inner { width: calc(100% - 40px); padding-top: 125px; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 54px); }
  .section-title { font-size: clamp(34px, 10vw, 42px); }
  .hero-copy { font-size: 13px; }
  .desktop-only { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 300px; }
  .hero-foot { display: none; }
  .section { padding-left: 20px; padding-right: 20px; }
  .section-number { right: 20px; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 48px; }
  .business-card { padding: 38px 0; }
  .business-index { font-size: 16px; }
  .business-body h3 { font-size: 25px; }
  .company-table > div { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

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