@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #102b2d;
  --ink-soft: #254649;
  --cream: #f5f0e6;
  --paper: #fbf8f1;
  --white: #fff;
  --gold: #ffc000;
  --gold-dark: #d49d00;
  --teal: #1e6b68;
  --line: rgba(16, 43, 45, .14);
  --shadow: 0 24px 70px rgba(16, 43, 45, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100% - 40px));
  --font-display: "Manrope", "Trebuchet MS", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: 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; z-index: 1000; top: 12px; left: 12px;
  padding: 10px 16px; background: var(--gold); color: var(--ink);
  transform: translateY(-150%); transition: transform .2s;
  border-radius: 8px; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }

.eyebrow {
  margin: 0 0 18px;
  font-size: .75rem; font-weight: 800; letter-spacing: .19em;
  text-transform: uppercase; color: var(--teal);
}
h1, h2, h3 {
  margin: 0; font-family: var(--font-display); line-height: 1.04;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.75rem, 8vw, 7.6rem); font-weight: 800; }
h2 { font-size: clamp(2.5rem, 5.2vw, 5rem); font-weight: 750; }
h3 { font-size: clamp(2rem, 3vw, 3rem); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .25s, box-shadow .25s, padding .25s;
}
.site-header.scrolled {
  background: rgba(251, 248, 241, .92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 88px; display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-family: var(--font-display); font-weight: 800;
}
.brand-mark {
  width: 42px; aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: var(--gold);
  font-size: .72rem; letter-spacing: .04em;
}
.brand-name { font-size: 1rem; letter-spacing: -.02em; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  text-decoration: none; font-size: .88rem; font-weight: 700;
  transition: color .2s;
}
.site-nav a:not(.nav-cta):hover { color: var(--teal); }
.nav-cta {
  padding: 11px 18px; border-radius: 999px; background: var(--ink); color: #fff;
}
.menu-toggle { display: none; }

.hero {
  position: relative; min-height: 860px; height: 100svh; overflow: hidden;
  display: grid; align-items: center;
  background:
    radial-gradient(circle at 82% 32%, rgba(255,192,0,.18), transparent 24%),
    linear-gradient(135deg, #fbf8f1 0%, #f2ecdf 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(16,43,45,.03));
}
.hero-texture {
  position: absolute; inset: 0; opacity: .26; pointer-events: none;
  background-image: radial-gradient(rgba(16,43,45,.25) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 52%);
}
.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 70px; align-items: center; padding-top: 76px;
}
.hero-copy { max-width: 690px; }
.hero h1 span { color: var(--teal); }
.hero-lead { max-width: 620px; margin: 30px 0 0; font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 15px 23px; border-radius: 999px; text-decoration: none;
  font-weight: 800; font-size: .9rem; transition: transform .2s, box-shadow .2s, background .2s;
}
.button svg, .project-link svg, .now-list svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); box-shadow: 0 12px 30px rgba(212,157,0,.22); }
.button-primary:hover { box-shadow: 0 16px 36px rgba(212,157,0,.3); }
.button-quiet { border: 1px solid var(--line); }
.button-quiet:hover { background: #fff; }

.hero-art { position: relative; min-height: 570px; }
.hero-card {
  position: absolute; padding: 34px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-card-main {
  width: min(390px, 76%); top: 105px; left: 52%; transform: translateX(-50%) rotate(-4deg);
  background: var(--ink); color: #fff;
}
.hero-card-main::after {
  content: ""; position: absolute; width: 70px; height: 8px;
  top: 26px; right: 28px; border-radius: 99px; background: var(--gold);
}
.hero-card-main .mini-label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: #aac8c6; }
.hero-card-main strong { display: block; margin: 12px 0 80px; font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5.1rem); line-height: .9; letter-spacing: -.06em; color: var(--gold); }
.hero-card-main p { max-width: 250px; margin: 0; color: #c8d7d6; font-size: .94rem; }
.floating-tile {
  position: absolute; z-index: 2; width: 100px; aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 26px; background: #fff;
  box-shadow: 0 20px 50px rgba(16,43,45,.16);
}
.floating-tile svg { width: 50px; fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linejoin: round; stroke-linecap: round; }
.tile-book { top: 60px; left: 1%; transform: rotate(-10deg); }
.tile-run { top: 40px; right: 2%; transform: rotate(9deg); background: var(--gold); }
.tile-code { bottom: 60px; left: 6%; transform: rotate(8deg); background: #d7e8e3; }
.tile-learn { bottom: 72px; right: 2%; transform: rotate(-8deg); }
.orbit { position: absolute; border: 1px solid rgba(30,107,104,.19); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; top: 22px; left: 50%; transform: translateX(-50%); }
.orbit-two { width: 390px; height: 390px; top: 86px; left: 50%; transform: translateX(-50%); }
.scroll-cue {
  position: absolute; z-index: 2; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-cue svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2; animation: bounce 1.8s infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }

.projects { background: var(--ink); color: #fff; }
.section-heading {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px;
  align-items: end; margin-bottom: 64px;
}
.projects .eyebrow { color: var(--gold); }
.section-heading > p { max-width: 460px; margin: 0 0 5px; color: #b9cdcc; font-size: 1.08rem; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project-card {
  position: relative; min-height: 590px; padding: 42px; overflow: hidden;
  display: flex; flex-direction: column; border-radius: var(--radius-lg);
  color: var(--ink); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.project-card:hover { transform: translateY(-7px); box-shadow: 0 25px 55px rgba(0,0,0,.22); }
.project-card::after {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  right: -120px; bottom: -120px; border: 1px solid rgba(16,43,45,.15);
}
.project-books { background: #ead9ca; }
.project-wordsearch { background: #f3df8d; }
.project-tools { background: #cce0dc; }
.project-race { background: #d7d5cd; }
.project-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-number { font-family: var(--font-display); font-size: 1rem; }
.project-type { opacity: .65; }
.project-icon {
  width: 86px; aspect-ratio: 1; display: grid; place-items: center;
  margin: 58px 0 36px; border: 1px solid rgba(16,43,45,.2); border-radius: 50%;
}
.project-icon svg { width: 48px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.project-icon .accent-stroke { stroke: #b26348; stroke-width: 4; }
.project-card h3 { max-width: 440px; }
.project-card p { max-width: 480px; margin: 24px 0 32px; color: rgba(16,43,45,.76); }
.project-link {
  position: relative; z-index: 1; margin-top: auto; align-self: flex-start;
  display: inline-flex; gap: 10px; align-items: center; padding-bottom: 5px;
  border-bottom: 2px solid currentColor; text-decoration: none; font-weight: 800; font-size: .88rem;
}
.project-link svg { transition: transform .2s; }
.project-link:hover svg { transform: translateX(4px); }

.statement { background: var(--gold); padding: 105px 0; }
.statement-inner { display: grid; grid-template-columns: auto 1fr; gap: 35px; align-items: start; }
.quote-mark { font-family: Georgia, serif; font-size: 9rem; line-height: .8; opacity: .32; }
blockquote { margin: 0; max-width: 940px; font-family: var(--font-display); font-size: clamp(2rem, 4.1vw, 4.1rem); line-height: 1.16; letter-spacing: -.045em; font-weight: 600; }
blockquote strong { display: block; color: #fff; font-weight: 800; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 640px; }
.portrait-placeholder {
  height: 610px; display: grid; place-content: center; text-align: center;
  border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(145deg, rgba(16,43,45,.02), rgba(16,43,45,.5)),
    radial-gradient(circle at 65% 25%, #6e9390, #17393b 60%);
  color: #fff;
}
.portrait-placeholder span { font-family: var(--font-display); font-size: 8rem; font-weight: 800; letter-spacing: -.1em; opacity: .32; }
.portrait-placeholder p { margin: 5px 0 0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.about-badge {
  position: absolute; right: -35px; bottom: 42px; width: 150px; aspect-ratio: 1;
  display: grid; place-content: center; text-align: center; border-radius: 50%;
  background: var(--gold); box-shadow: var(--shadow); transform: rotate(-7deg);
}
.about-badge strong { font-family: var(--font-display); font-size: 1.1rem; }
.about-badge span { font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; }
.about-copy h2 { margin-bottom: 32px; }
.about-copy > p { max-width: 670px; color: var(--ink-soft); }
.about-copy .large-copy { font-size: 1.32rem; color: var(--ink); font-weight: 600; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 45px; border-top: 1px solid var(--line); padding-top: 30px; }
.about-facts div { display: flex; flex-direction: column; }
.about-facts strong { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--teal); }
.about-facts span { margin-top: 7px; font-size: .78rem; font-weight: 700; color: var(--ink-soft); }

.now { padding-top: 0; }
.now-card {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px;
  padding: 70px; border-radius: var(--radius-lg); background: #dceae6;
}
.now-copy p:last-child { max-width: 420px; color: var(--ink-soft); }
.now-list { align-self: center; }
.now-list a {
  display: grid; grid-template-columns: 12px 1fr auto; gap: 17px; align-items: center;
  padding: 25px 0; border-bottom: 1px solid rgba(16,43,45,.16); text-decoration: none;
}
.now-list a:first-child { border-top: 1px solid rgba(16,43,45,.16); }
.now-list strong { display: block; font-family: var(--font-display); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-dark); box-shadow: 0 0 0 5px rgba(212,157,0,.13); }
.now-list svg { transition: transform .2s; }
.now-list a:hover svg { transform: translateX(5px); }

.contact { background: var(--teal); color: #fff; }
.contact .eyebrow { color: var(--gold); }
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.contact-copy { padding-bottom: 7px; }
.contact-copy p { max-width: 470px; color: #d8e8e6; margin: 0 0 28px; font-size: 1.1rem; }
.button-light { background: #fff; color: var(--ink); }

.site-footer { background: #091f21; color: #fff; }
.footer-main { display: flex; justify-content: space-between; gap: 70px; padding: 75px 0; }
.footer-brand { align-self: flex-start; }
.footer-brand .brand-mark { background: var(--gold); color: var(--ink); }
.footer-links { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links strong { margin-bottom: 15px; color: var(--gold); font-family: var(--font-display); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { margin: 5px 0; color: #c4d2d1; text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: #8ea5a4; font-size: .76rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 960px) {
  .section { padding: 90px 0; }
  .hero { min-height: auto; height: auto; padding: 150px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 520px; max-width: 620px; width: 100%; margin: 0 auto; }
  .scroll-cue { display: none; }
  .section-heading, .about-grid, .now-card, .contact-inner { grid-template-columns: 1fr; gap: 45px; }
  .about-visual { max-width: 620px; width: calc(100% - 30px); }
  .now-card { padding: 50px; }
  .about-copy { max-width: 760px; }
}
@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .header-inner { height: 74px; }
  .menu-toggle {
    position: relative; z-index: 102; display: grid; gap: 5px; padding: 10px;
    border: 0; background: transparent; cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column;
    justify-content: center; gap: 25px; background: var(--paper);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { font-family: var(--font-display); font-size: 1.5rem; }
  .nav-cta { font-family: var(--font-body) !important; font-size: .9rem !important; }
  .hero { padding: 125px 0 70px; }
  h1 { font-size: clamp(3.35rem, 17vw, 5.8rem); }
  .hero-art { min-height: 420px; }
  .hero-card-main { top: 72px; width: 73%; padding: 26px; }
  .hero-card-main strong { margin-bottom: 58px; }
  .floating-tile { width: 75px; border-radius: 20px; }
  .floating-tile svg { width: 38px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 300px; height: 300px; }
  .tile-book { top: 35px; }
  .tile-run { top: 25px; }
  .tile-code { bottom: 35px; }
  .tile-learn { bottom: 42px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 540px; padding: 30px; }
  .project-icon { margin: 45px 0 30px; }
  .statement-inner { grid-template-columns: 1fr; gap: 0; }
  .quote-mark { height: 70px; }
  .about-visual { min-height: 500px; }
  .portrait-placeholder { height: 500px; }
  .about-badge { right: -8px; bottom: -25px; width: 125px; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .now-card { width: calc(100% - 20px); padding: 34px 25px; }
  .now-list a { grid-template-columns: 10px 1fr auto; gap: 12px; font-size: .9rem; }
  .footer-main { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { gap: 20px; }
}
@media (max-width: 430px) {
  .brand-name { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-art { min-height: 370px; }
  .hero-card-main { width: 77%; }
  .floating-tile { width: 66px; }
  .project-top { align-items: flex-start; }
  .project-type { text-align: right; }
  .about-facts { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
.portrait-photo {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}