:root {
  --bg: #eaf0f6;
  --surface: #f7fafd;
  --surface-strong: #203248;
  --surface-soft: #ffffff;
  --text: #203248;
  --muted: #50657b;
  --line: rgba(185, 200, 216, 0.75);
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.12);
  --accent-secondary: #3a78a1;
  --max-width: 1180px;
  --container-pad: 32px;
  --text-measure: 30rem;
  --text-measure-wide: 40rem;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(32, 50, 72, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(58, 120, 161, 0.14), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(255, 122, 26, 0.1), transparent 24%),
    linear-gradient(180deg, #e3ebf3 0%, #edf3f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 80%);
  opacity: 0.28;
}

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

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

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px var(--container-pad) 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(438px, 60vw);
  min-width: 220px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.96rem;
  padding-top: 10px;
}

.site-nav a {
  color: var(--muted);
}

.hero,
.page-hero,
.intro,
.offerings,
.services,
.audiences,
.story,
.projects,
.contact,
.site-footer {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 54px;
  align-items: start;
  padding: 44px 0 56px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 52px;
  align-items: start;
  padding: 48px 0 72px;
}

.page-hero-simple {
  grid-template-columns: 1fr;
}

.page-hero-about {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 56px;
}

.page-hero-copy {
  max-width: 760px;
  padding-left: 20px;
}

.page-hero h1 {
  margin: 0;
  max-width: none;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.page-hero-text {
  max-width: var(--text-measure-wide);
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.page-hero-aside {
  align-self: center;
  max-width: 420px;
  margin-left: auto;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.page-hero-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero-summary {
  display: grid;
  gap: 16px;
}

.page-hero-row {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.page-hero-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-hero-row span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-hero-row strong {
  color: var(--surface-strong);
  font-size: 1.02rem;
  line-height: 1.5;
}

.page-hero-points {
  margin: 22px 0 0;
  padding: 20px 0 0 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.6;
}

.milestones {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
  padding: 32px var(--container-pad) 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.milestone-intro h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.milestone-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.milestone {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.milestone span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.milestone h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.milestone p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 56px;
  align-items: start;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.about-grid-secondary {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

.about-copy {
  padding-left: 20px;
}

.about-copy h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
}

.about-copy p {
  max-width: var(--text-measure-wide);
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.about-facts,
.about-values {
  display: grid;
  gap: 20px;
}

.about-fact,
.about-value {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.about-fact span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-fact strong,
.about-value h3 {
  display: block;
  margin: 0;
  color: var(--surface-strong);
  font-size: 1.34rem;
  line-height: 1.25;
}

.about-fact p,
.about-value p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy h1,
.section-heading h2,
.story-panel h2,
.contact-copy h2 {
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero-copy h1 {
  font-size: 2rem;
  max-width: none;
  margin: 0;
  text-wrap: balance;
}

.hero-text,
.intro p,
.service p,
.story-panel p,
.timeline-step p,
.project p,
.contact-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: var(--text-measure);
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.68;
}

.hero-copy {
  max-width: 600px;
  padding-left: 20px;
}

.hero-copy .eyebrow {
  display: block;
  margin: 0 0 14px;
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-meta span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--surface-strong);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.eyebrow,
.visual-label,
.project-type,
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-start;
  padding-top: 92px;
}

.visual-panel {
  width: 100%;
  padding: 0;
}

.visual-stack {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.visual-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.visual-row span:first-child {
  color: var(--surface-strong);
  font-weight: 700;
}

.visual-row span:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.intro {
  padding: 8px 0 64px;
}

.intro p {
  max-width: var(--text-measure-wide);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-grid,
.offerings,
.audiences,
.story,
.projects,
.contact {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.offerings {
  box-sizing: border-box;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
}

.section-heading > * {
  min-width: 0;
}

.section-heading h2,
.story-panel h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  max-width: none;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.service-list,
.offering-list,
.audience-list,
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 100%;
}

.offering-list {
  padding-left: 0;
}

.service,
.offering,
.audience,
.project {
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service span,
.offering span,
.timeline-step strong {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.service h3,
.offering h3,
.audience h3,
.timeline-step h3,
.project h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.service p,
.offering p {
  color: var(--muted);
  line-height: 1.72;
}

.audience p {
  color: var(--muted);
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.story-panel {
  position: sticky;
  top: 24px;
  padding-left: 20px;
}

.story-panel p {
  max-width: var(--text-measure);
  margin: 18px 0 0;
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 30px;
  width: 100%;
  max-width: 100%;
}

.timeline-step {
  padding: 24px 0 0 24px;
  border-left: 1px solid var(--line);
}

.timeline-step p,
.project p,
.contact-copy p {
  max-width: var(--text-measure);
  line-height: 1.72;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
}

.contact-card a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-copy {
  padding-left: 20px;
}

.contact-card .button {
  margin-top: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .offering-list,
  .audience-list,
  .milestones,
  .milestone-list,
  .story,
  .about-grid,
  .contact,
  .section-heading,
  .service-list,
  .project-list {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .offerings,
  .audiences,
  .story,
  .projects,
  .contact {
    padding: 64px 0;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .offering-list {
    padding-left: 0;
  }

  .brand {
    width: min(360px, 78vw);
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .page-hero {
    gap: 32px;
  }

  .page-hero-copy,
  .hero-copy,
  .section-heading,
  .about-copy,
  .story-panel,
  .contact-copy {
    padding-left: 0;
  }

  .page-hero-aside {
    max-width: none;
    margin-left: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .story-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --container-pad: 20px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .brand {
    width: min(320px, 100%);
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .hero-visual,
  .contact-card {
    border-radius: 22px;
  }

  .visual-panel {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 22px;
  }

  .section-grid,
  .story,
  .projects,
  .contact {
    padding: 52px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
