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

:root {
  --paper: #f4f0e7;
  --paper-deep: #e7e0d2;
  --ink: #17221f;
  --muted: #606964;
  --forest: #183c32;
  --mint: #b9f6d2;
  --lime: #d8fb71;
  --coral: #f47d61;
  --line: rgba(23, 34, 31, .18);
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  width: var(--shell);
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark { width: 25px; fill: var(--coral); }

.site-nav { display: flex; align-items: center; gap: 30px; }

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 5px; }

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.nav-cta:hover { background: var(--forest); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  padding: 190px max(24px, calc((100vw - 1180px) / 2)) 62px;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, .75fr);
  grid-template-rows: 1fr auto;
  gap: 64px 100px;
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 2; align-self: center; }

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .93;
}

.hero h1 { max-width: 800px; font-size: clamp(66px, 8vw, 124px); }

.hero h1 em { color: var(--coral); font-style: normal; }

.hero-lead {
  max-width: 680px;
  margin: 38px 0 0;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--forest); }

.text-link { font-size: 14px; font-weight: 600; text-underline-offset: 6px; }

.hero-card {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 38px;
  border-radius: 50% 50% 45% 45% / 44% 44% 56% 56%;
  background: var(--mint);
  aspect-ratio: .9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: rotate(3deg);
}

.hero-card > * { transform: rotate(-3deg); }
.spark { align-self: flex-end; margin-right: 12%; font-size: 34px; }
.card-kicker { margin: 0 0 8px 8%; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.card-statement { margin: 0 0 20px 8%; font: 600 clamp(33px, 3.7vw, 54px)/.95 "Manrope", sans-serif; letter-spacing: -.06em; }
.card-note { max-width: 240px; margin: 0 8%; font-size: 14px; }

.hero-footer {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.hero-orbit { position: absolute; border: 1px solid rgba(23, 34, 31, .11); border-radius: 50%; }
.orbit-one { width: 680px; height: 680px; right: -220px; top: 80px; }
.orbit-two { width: 420px; height: 420px; right: -40px; top: 220px; }

.statement {
  padding: 120px max(24px, calc((100vw - 980px) / 2));
  background: var(--lime);
}

.statement p {
  margin: 0;
  font: 400 clamp(34px, 5vw, 68px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.statement strong { font-weight: 600; }

.section-shell { width: var(--shell); margin-inline: auto; }

.services {
  display: grid;
  grid-template-columns: .8fr 1.35fr;
  gap: 100px;
  padding-block: 150px;
}

.section-heading h2,
.about-copy h2 { font-size: clamp(48px, 5.7vw, 80px); }

.service { display: grid; grid-template-columns: 45px 1fr 35px; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.service:last-child { border-bottom: 1px solid var(--line); }
.service-number { font-size: 12px; font-weight: 600; color: var(--muted); }
.service h3 { margin: 0 0 12px; font: 600 23px/1.2 "Manrope", sans-serif; letter-spacing: -.035em; }
.service p { max-width: 590px; margin: 0; color: var(--muted); }
.service-symbol { justify-self: end; font-size: 24px; color: var(--coral); }

.experience { padding-block: 140px; background: var(--forest); color: white; }
.experience-intro { display: flex; align-items: end; justify-content: space-between; gap: 80px; }
.light h2 { color: white; }
.experience-lead { max-width: 420px; margin: 0 0 8px; font-size: 21px; color: rgba(255,255,255,.68); }

.logo-field {
  display: flex;
  width: min(1350px, calc(100vw - 48px));
  margin: 100px auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.company {
  display: inline-flex;
  min-width: 210px;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  padding: 22px 32px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  font: 600 clamp(24px, 2.8vw, 39px)/1 "Manrope", sans-serif;
  letter-spacing: -.05em;
}

.company:nth-child(2n) { transform: translateY(18px); }
.company-featured { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.company-wide { min-width: 310px; }
.company small { margin-left: 12px; font: 500 11px/1 "DM Sans", sans-serif; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }

.now-block { padding-top: 70px; border-top: 1px solid rgba(255,255,255,.2); }
.now-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.now-item { min-height: 260px; padding: 28px; border: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; }
.now-item.accent { background: var(--coral); color: var(--ink); border-color: var(--coral); }
.now-item > span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .65; }
.now-item h3 { margin: auto 0 10px; font: 600 clamp(34px, 4vw, 56px)/1 "Manrope", sans-serif; letter-spacing: -.06em; }
.now-item p { max-width: 250px; margin: 0; opacity: .7; }
.experience-note { margin: 30px 0 0; font-size: 12px; color: rgba(255,255,255,.5); }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; padding-block: 160px; align-items: center; }
.about-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.portrait-shape { width: min(430px, 90%); aspect-ratio: .82; display: grid; place-items: center; border-radius: 48% 48% 40% 40% / 42% 42% 58% 58%; background: var(--coral); transform: rotate(-4deg); }
.portrait-shape span { font: 600 clamp(90px, 12vw, 170px)/1 "Manrope", sans-serif; letter-spacing: -.12em; transform: rotate(4deg); }
.orbit-label { position: absolute; right: 0; top: 60px; width: 130px; height: 130px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); font-size: 13px; font-weight: 600; line-height: 1.1; text-align: center; transform: rotate(9deg); }
.large-copy { margin: 38px 0 24px; font-size: clamp(21px, 2.4vw, 29px); line-height: 1.4; letter-spacing: -.025em; }
.about-copy > p:last-of-type { color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 45px 0 0; padding-top: 25px; border-top: 1px solid var(--line); }
.about-facts div { display: flex; flex-direction: column; gap: 8px; }
.about-facts dt { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.about-facts dd { margin: 0; font-weight: 600; }

.principles { padding: 100px 0 150px; border-top: 1px solid var(--line); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; }
.principles article > span { display: block; margin-bottom: 40px; font-size: 30px; color: var(--coral); }
.principles h3 { margin: 0 0 12px; font: 600 25px/1.2 "Manrope", sans-serif; letter-spacing: -.04em; }
.principles p { margin: 0; color: var(--muted); }

.contact { position: relative; overflow: hidden; min-height: 650px; display: grid; place-items: center; padding: 110px 24px; background: var(--mint); text-align: center; }
.contact-inner { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(58px, 8vw, 110px); }
.contact p:not(.eyebrow) { max-width: 520px; margin: 30px auto; font-size: 20px; }
.contact-link { display: inline-block; margin-top: 14px; font: 600 clamp(22px, 3vw, 38px)/1.3 "Manrope", sans-serif; letter-spacing: -.04em; text-underline-offset: 9px; }
.contact-star { position: absolute; width: 290px; right: -60px; bottom: -80px; fill: var(--lime); transform: rotate(10deg); }

.site-footer { padding: 70px max(24px, calc((100vw - 1180px) / 2)) 30px; background: var(--ink); color: white; }
.footer-brand { font-size: 38px; }
.footer-brand .brand-mark { width: 38px; }
.footer-details { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin: 75px 0; color: rgba(255,255,255,.68); }
.footer-details p, .footer-details address { margin: 0; font-style: normal; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto 1fr; gap: 30px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.2); font-size: 12px; color: rgba(255,255,255,.55); }
.footer-bottom span:last-child { justify-self: end; }

.legal-page { min-height: 100vh; }
.legal-header { position: static; transform: none; margin: 0 auto; }
.legal-main { width: min(760px, calc(100vw - 48px)); margin: 0 auto; padding: 100px 0 150px; }
.legal-main h1 { margin: 0 0 20px; font: 500 clamp(56px, 9vw, 96px)/.95 "Manrope", sans-serif; letter-spacing: -.07em; }
.legal-main .updated { margin-bottom: 70px; color: var(--muted); }
.legal-main h2 { margin: 48px 0 12px; font: 600 24px/1.2 "Manrope", sans-serif; letter-spacing: -.03em; }
.legal-main p { font-size: 17px; color: var(--muted); }
.legal-main a { color: var(--ink); }

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 680px); }
  .site-header { min-height: 72px; }
  .menu-toggle { display: flex; align-items: center; gap: 10px; border: 0; background: transparent; font: 500 14px "DM Sans", sans-serif; }
  .menu-lines { width: 18px; height: 10px; border-top: 1px solid; border-bottom: 1px solid; }
  .site-nav { position: absolute; top: 65px; right: 0; display: none; min-width: 230px; flex-direction: column; align-items: stretch; padding: 22px; background: var(--ink); color: white; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
  .site-nav.is-open { display: flex; }
  .nav-cta { background: var(--coral); color: var(--ink); text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; padding-top: 145px; gap: 65px; }
  .hero-card { width: min(420px, 90%); justify-self: center; }
  .hero-footer { grid-column: 1; }
  .services, .about { grid-template-columns: 1fr; gap: 70px; }
  .experience-intro { align-items: start; flex-direction: column; }
  .now-grid, .principles-grid { grid-template-columns: 1fr; }
  .principles-grid { gap: 55px; }
  .principles article > span { margin-bottom: 18px; }
  .about-visual { min-height: 460px; }
  .about-facts { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding-inline: 18px; }
  .hero h1 { font-size: clamp(58px, 20vw, 88px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link { text-align: center; }
  .hero-card { padding: 28px; }
  .hero-footer { gap: 20px; flex-direction: column; }
  .statement { padding-block: 90px; }
  .services, .about { padding-block: 100px; }
  .experience { padding-block: 100px; }
  .logo-field { margin-block: 70px; }
  .company, .company-wide { width: 100%; min-width: 0; min-height: 105px; transform: none !important; }
  .now-item { min-height: 220px; }
  .about-visual { min-height: 370px; }
  .orbit-label { width: 100px; height: 100px; top: 25px; }
  .principles { padding-block: 80px 100px; }
  .contact { min-height: 580px; }
  .footer-details { grid-template-columns: 1fr; margin-block: 55px; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-bottom span:last-child { justify-self: start; }
}

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