:root {
  --page: #f4f0e8;
  --surface: #fffdf8;
  --ink: #252321;
  --muted: #756f68;
  --line: #d8d0c4;
  --accent: #d96c4f;
  --dark: #20252b;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--page); color: var(--ink); font: 16px/1.55 "DM Sans", sans-serif; }
a, button { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: absolute; left: 16px; top: -60px; padding: 10px 14px; background: var(--dark); color: white; z-index: 5; }
.skip-link:focus { top: 16px; }
.site-header { border-bottom: 1px solid var(--line); }
.nav-row { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark, .eyebrow, h1, h2, h3, .principle-list span { font-family: "Space Grotesk", sans-serif; }
.wordmark { font-size: 20px; font-weight: 700; letter-spacing: -.06em; text-decoration: none; }
nav { display: flex; gap: 28px; }
nav a { text-decoration: none; font-weight: 600; }
nav a:hover, .text-link:hover, footer a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; }
.hero { min-height: 670px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; padding-block: 72px; }
.eyebrow { margin: 0 0 18px; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.07em; }
h1 { font-size: clamp(4.3rem, 10vw, 8.2rem); }
h1 em { color: var(--accent); font-style: normal; }
.lede { max-width: 470px; margin: 28px 0; font-size: 20px; }
.text-link { font-weight: 600; text-underline-offset: 6px; }
.text-link span { color: var(--accent); margin-left: 8px; }
.hello-art { width: 100%; max-width: 620px; justify-self: end; }
.hello-art svg { display: block; width: 100%; height: auto; }
.bubble-shadow { fill: var(--dark); transform: translate(10px, 14px); }
.bubble { fill: var(--surface); stroke: var(--dark); stroke-width: 5; }
.hello-art text { fill: var(--dark); font: 700 112px "Space Grotesk", sans-serif; letter-spacing: -8px; }
.star { fill: var(--accent); }
.principles { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding-block: 105px; border-top: 1px solid var(--line); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.principle-list { border-top: 1px solid var(--line); }
.principle-list article { display: grid; grid-template-columns: 45px 150px 1fr; gap: 20px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--line); }
.principle-list span { color: var(--accent); font-size: 14px; font-weight: 600; }
h3 { font-size: 27px; }
.principle-list p { margin: 0; color: var(--muted); }
.hello-back { padding-block: 110px; background: var(--dark); color: var(--surface); }
.call-inner { max-width: 730px; margin-inline: auto; text-align: center; }
.call-inner .eyebrow { color: #c6c0b6; }
.call-inner p:not(.eyebrow):not(.greeting) { max-width: 550px; margin: 24px auto 30px; color: #d8d2c8; font-size: 18px; }
.hello-button { border: 0; padding: 15px 22px; background: var(--accent); color: var(--surface); font: 600 17px "Space Grotesk", sans-serif; cursor: pointer; }
.hello-button:hover { background: #e47b5d; }
.hello-button span { margin-left: 14px; }
.greeting { min-height: 28px; margin: 22px 0 0; color: #f5b09c; font-weight: 600; }
.site-footer { padding-block: 28px 38px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 14px; }
.footer-row p { margin: 0; }
.footer-row a { text-underline-offset: 5px; }
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 65px 80px; }
  .hello-art { max-width: 560px; justify-self: center; }
  .principles { grid-template-columns: 1fr; gap: 45px; padding-block: 75px; }
  .principle-list article { grid-template-columns: 38px 110px 1fr; }
}
@media (max-width: 520px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  nav { gap: 14px; font-size: 14px; }
  nav a:first-child { display: none; }
  h1 { font-size: 4.5rem; }
  .hello-art text { font-size: 96px; }
  .principle-list article { grid-template-columns: 32px 1fr; gap: 8px; }
  .principle-list p { grid-column: 2; }
  .footer-row { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
