:root {
  --ink: #102235;
  --ink-soft: #274057;
  --cream: #ede8de;
  --cream-2: #e4ddd0;
  --paper: #f7f4ee;
  --orange: #4f8f97;
  --orange-dark: #2f6670;
  --gold: #b8ada0;
  --mint: #9fbfb8;
  --sky: #829bb5;
  --line: rgba(11, 23, 40, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(4, 12, 24, 0.16);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --header-height: 84px;
  --container: min(1440px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--cream);
  background: var(--orange-dark);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(20px);
}

.site-header.is-dark:not(.is-scrolled) {
  color: var(--cream);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 820;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  font-size: 1.08rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.91rem;
  font-weight: 680;
}

.main-nav a {
  position: relative;
  opacity: 0.82;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--orange);
  transition: right 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 5px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(79, 143, 151, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: white;
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 23, 40, 0.14);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: white;
  border-color: rgba(11, 23, 40, 0.32);
}

.btn-dark {
  color: var(--cream);
  background: var(--ink);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--ink-soft);
}

.btn-outline-light {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--cream);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background: linear-gradient(100deg, rgba(10, 20, 32, 0.78) 0%, rgba(10, 20, 32, 0.58) 38%, rgba(10, 20, 32, 0.22) 72%, rgba(10, 20, 32, 0.38) 100%), url("../images/hero-office-building.png") center right / cover no-repeat;
  transform: scale(1.035);
  animation: hero-breathe 13s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 78% 34%, rgba(132, 181, 191, 0.14), transparent 30%), linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(8, 18, 28, 0.54));
}

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-1.2%, -0.8%, 0); }
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-height) + 84px) 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
}

.hero-copy {
  max-width: 860px;
}

.hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 860;
}

.hero h1 .accent {
  display: block;
  color: #88b5b6;
}

.hero-lede {
  max-width: 690px;
  margin: 34px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.48rem);
  color: rgba(244, 238, 226, 0.83);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-aside {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(5, 14, 28, 0.52);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-aside::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(79, 143, 151, 0.12);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 17px rgba(79, 143, 151, 0); }
}

.price-label {
  margin: 0 0 6px;
  color: rgba(244, 238, 226, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 850;
}

.price-note {
  margin: 13px 0 0;
  color: rgba(244, 238, 226, 0.7);
  font-size: 0.94rem;
}

.contact-mini {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-mini a {
  width: fit-content;
  color: rgba(244, 238, 226, 0.88);
}

.contact-mini a:hover,
.contact-mini a:focus-visible {
  color: var(--orange);
}

.hero-ticker {
  position: absolute;
  inset: auto 0 0;
  height: 38px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 11, 22, 0.6);
  backdrop-filter: blur(10px);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 38px;
  align-items: center;
  height: 100%;
  color: rgba(244, 238, 226, 0.68);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: ticker 27s linear infinite;
}

.ticker-track span::after {
  content: "•";
  margin-left: 38px;
  color: var(--orange);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: clamp(90px, 11vw, 170px) 0;
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 110px);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.section-heading p {
  margin: 0 0 8px;
  max-width: 560px;
  color: rgba(11, 23, 40, 0.68);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.story {
  background: var(--cream);
}

.story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(11, 23, 40, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 23, 40, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.story-stack {
  display: grid;
  gap: clamp(74px, 10vw, 154px);
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
}

.story-panel:nth-child(even) {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.12fr);
}

.story-panel:nth-child(even) .story-visual {
  order: 2;
}

.story-panel:nth-child(even) .story-copy {
  order: 1;
  padding-left: clamp(0px, 5vw, 76px);
}

.story-panel:nth-child(3) .story-copy {
  transform: translateY(42px);
}

.story-visual {
  position: relative;
  min-height: min(62vw, 700px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.story-visual > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 1.3s cubic-bezier(.16,.84,.44,1), filter 700ms ease;
}

.story-panel.is-visible .story-visual > img {
  transform: scale(1.035);
}

.story-panel:hover .story-visual > img {
  transform: scale(1.075);
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%, rgba(11,23,40,0.14));
  pointer-events: none;
}

.motion-route {
  position: absolute;
  z-index: 3;
  inset: 10% 8% auto auto;
  width: 45%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: rotate(-18deg);
  transform-origin: center;
  overflow: hidden;
}

.motion-route::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 100%;
  background: white;
  filter: blur(1px);
  animation: route-glint 2.8s linear infinite;
}

@keyframes route-glint {
  from { transform: translateX(-90px); }
  to { transform: translateX(420px); }
}

.motion-tag {
  position: absolute;
  z-index: 4;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: float-tag 5.4s ease-in-out infinite;
}

.motion-tag.one { left: 6%; bottom: 8%; }
.motion-tag.two { right: 7%; top: 12%; animation-delay: -2.2s; }

@keyframes float-tag {
  50% { transform: translateY(-12px); }
}

.story-copy {
  position: relative;
  max-width: 620px;
}

.story-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(79, 143, 151, 0.12);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-number::after {
  display: none;
}

.story-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.story-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(11, 23, 40, 0.68);
  font-size: clamp(1.04rem, 1.65vw, 1.3rem);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: var(--orange-dark);
  font-weight: 820;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(3px, -3px);
}

.people-block {
  margin-top: clamp(100px, 13vw, 190px);
  padding-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.people-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.people-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.people-heading p {
  margin: 0;
  max-width: 580px;
  justify-self: end;
  color: rgba(11, 23, 40, 0.68);
  font-size: 1.08rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.person-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid rgba(11, 23, 40, 0.08);
  box-shadow: 0 20px 56px rgba(11, 23, 40, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.person-card:nth-child(2),
.person-card:nth-child(4) {
  transform: translateY(44px);
}

.person-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(11, 23, 40, 0.16);
}

.person-card:nth-child(2):hover,
.person-card:nth-child(4):hover {
  transform: translateY(36px);
}

.person-image {
  height: 330px;
  overflow: hidden;
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.16,.84,.44,1);
}

.person-card:hover .person-image img {
  transform: scale(1.04);
}

.person-copy {
  padding: 26px 24px 30px;
}

.person-copy span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.person-copy h4 {
  margin: 12px 0 0;
  font-size: 1.34rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.person-copy p {
  margin: 15px 0 0;
  color: rgba(11, 23, 40, 0.64);
  font-size: 0.93rem;
}

.opportunity {
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.opportunity::before {
  content: "IMPORTATION";
  position: absolute;
  top: 45%;
  left: -2%;
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
}

.opportunity-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.opportunity-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.1rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.opportunity-copy h2 span {
  color: var(--orange);
}

.opportunity-copy > p {
  max-width: 680px;
  margin: 32px 0 0;
  color: rgba(244, 238, 226, 0.7);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
}

.use-cases {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.use-cases span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(244,238,226,.82);
  background: rgba(255,255,255,.05);
  font-size: .85rem;
  font-weight: 720;
}

.acquisition-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius-xl);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.3);
}

.acquisition-card .price {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
}

.acquisition-card .price-label {
  color: rgba(11, 23, 40, 0.54);
}

.acquisition-card .price-note {
  color: rgba(11, 23, 40, 0.62);
}

.acquisition-links {
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.acquisition-links .btn {
  width: 100%;
}

.acquisition-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(11, 23, 40, 0.68);
  font-size: 0.9rem;
}

.detail-row strong {
  color: var(--ink);
  text-align: right;
}

.contact-section {
  margin-top: clamp(70px, 10vw, 130px);
  padding-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(42px, 8vw, 100px);
}

.contact-intro h3 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.contact-intro p {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(244, 238, 226, 0.65);
}

.contact-list {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 760;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--orange);
}

.direct-contact-card {
  align-self: start;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.direct-contact-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact-card h4 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.direct-contact-card > p:not(.direct-contact-kicker) {
  margin: 20px 0 0;
  color: rgba(11, 23, 40, 0.68);
  line-height: 1.65;
}

.direct-contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.direct-contact-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.direct-contact-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 23, 40, 0.12);
  color: rgba(11, 23, 40, 0.58);
  font-size: 0.88rem;
}

.direct-contact-meta strong {
  color: var(--ink);
  text-align: right;
}

.site-footer {
  color: var(--cream);
  background: #070f1c;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 840;
}

.footer-brand img {
  width: 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(244, 238, 226, 0.62);
  font-size: 0.86rem;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(244, 238, 226, 0.42);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(.16,.84,.44,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-panel .story-visual,
.story-panel .story-copy {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 900ms ease, transform 1s cubic-bezier(.16,.84,.44,1);
}

.story-panel .story-copy {
  transition-delay: 120ms;
}

.story-panel.is-visible .story-visual,
.story-panel.is-visible .story-copy {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  padding: 22px;
  color: var(--cream);
  background: rgba(7, 15, 28, 0.95);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
  transform: translateY(calc(100% + 50px));
  opacity: 0;
  pointer-events: none;
  transition: transform 440ms cubic-bezier(.16,.84,.44,1), opacity 300ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner h2 {
  margin: 0;
  font-size: 1.2rem;
}

.cookie-banner p {
  margin: 8px 0 0;
  color: rgba(244,238,226,.68);
  font-size: .88rem;
}

.cookie-actions {
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: .82rem;
}

.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: end;
  color: var(--cream);
  background: radial-gradient(circle at 78% 28%, rgba(79,143,151,.24), transparent 25%), linear-gradient(135deg, #0b1728, #102b40);
}

.page-hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-height) + 100px) 0 72px;
}

.page-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.9rem, 6.3vw, 6.2rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.page-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(244,238,226,.72);
  font-size: 1.15rem;
}

.legal-page {
  padding: 90px 0 120px;
}

.legal-layout {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  display: grid;
  gap: 10px;
}

.legal-nav a {
  padding: 10px 0;
  color: rgba(11,23,40,.58);
  font-weight: 700;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--orange-dark);
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.legal-content h3 {
  margin: 46px 0 14px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: rgba(11,23,40,.7);
}

.legal-content ul {
  padding-left: 20px;
}

.notice-box {
  margin: 30px 0;
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: var(--cream);
  border-radius: 0 16px 16px 0;
}

.acquisition-page-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 90px 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .58fr);
  gap: clamp(48px, 8vw, 110px);
}

.acquisition-page-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.7vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.acquisition-page-copy p {
  color: rgba(11,23,40,.68);
  font-size: 1.08rem;
}

.acquisition-page-copy ul {
  padding-left: 20px;
  color: rgba(11,23,40,.68);
}

.light-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  color: var(--cream);
  background: var(--ink);
}

.not-found h1 {
  margin: 0;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: .8;
  color: var(--orange);
}

.not-found h2 {
  margin: 28px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.not-found p {
  max-width: 600px;
  color: rgba(244,238,226,.68);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .hero-inner,
  .opportunity-grid,
  .contact-section,
  .acquisition-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 560px;
  }

  .story-panel,
  .story-panel:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .person-card:nth-child(2),
  .person-card:nth-child(4),
  .person-card:nth-child(2):hover,
  .person-card:nth-child(4):hover {
    transform: none;
  }

  .acquisition-card {
    position: static;
    max-width: 640px;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 28px, 1440px);
    --header-height: 72px;
    --radius-xl: 24px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: 98;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 20px 22px 28px;
    color: var(--ink);
    background: rgba(251,248,242,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 40px rgba(0,0,0,.12);
    transform: translateY(-130%);
    transition: transform 260ms ease;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-open .main-nav {
    transform: translateY(0);
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 110px);
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 20vw, 7.6rem);
  }

  .section-heading,
  .people-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .people-heading p {
    justify-self: start;
  }

  .story-panel,
  .story-panel:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .story-panel:nth-child(even) .story-visual,
  .story-panel:nth-child(even) .story-copy {
    order: initial;
  }

  .story-panel:nth-child(even) .story-copy {
    padding-left: 0;
  }

  .story-panel:nth-child(3) .story-copy {
    transform: none;
  }

  .story-visual {
    min-height: 62vw;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .person-card {
    min-height: 0;
  }


  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: .94rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero-actions,
  .cookie-actions {
    display: grid;
  }

  .hero-actions .btn,
  .cookie-actions .btn {
    width: 100%;
  }

  .hero-aside {
    padding: 22px;
  }

  .detail-row {
    display: grid;
    gap: 2px;
  }

  .detail-row strong {
    text-align: left;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .story-panel .story-visual,
  .story-panel .story-copy {
    opacity: 1;
    transform: none;
  }
}
