:root {
  --coral: #FF5A3C;
  --coral-lt: #FF8A4D;
  --pink: #FF7AA8;
  --ink: #0A0A0A;
  --paper: #FFFFFF;
  --muted: #6B6B6B;
  --line: #ECECEC;
  --grad: linear-gradient(135deg, var(--coral-lt), var(--coral), var(--pink));
  --maxw: 1080px;
  --pad: clamp(20px, 5vw, 64px);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Space Grotesk", system-ui, sans-serif; line-height: 1.05; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.eyebrow {
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral); font-weight: 600; margin-bottom: 14px;
}

.btn {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--ink); color: var(--paper);
  font-weight: 600; text-decoration: none;
  padding: 16px 26px; border-radius: 999px;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--lg { padding: 20px 34px; font-size: 1.05rem; }

.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  background: rgba(255, 255, 255, 0.88);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav__brand img { height: 22px; width: auto; display: block; }

.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px var(--pad);
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
  color: rgba(255, 255, 255, 0.6); font-size: .92rem;
}
.footer a { color: rgba(255, 255, 255, 0.85); }
.footer a:hover { color: var(--coral); }
.footer__brand { display: inline-flex; align-items: center; }
.footer__brand img { height: 26px; width: auto; display: block; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--coral); }

.hero { padding-top: clamp(40px, 7vw, 80px); }
.hero__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.hero__title { font-size: clamp(2.1rem, 6vw, 4rem); font-weight: 700; letter-spacing: -.02em; }
.hero__sub { font-size: clamp(1rem, 2.2vw, 1.25rem); color: var(--muted); margin: 22px 0 32px; max-width: 46ch; }
.hero__photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; border-radius: 20px; background: var(--grad);
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__photo img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center bottom;
}
@media (max-width: 760px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__photo { aspect-ratio: 4/5; max-width: 320px; margin-inline: auto; }
}

.built { background: #FAFAFA; border-block: 1px solid var(--line); }
.built__head { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 36px; }
.built__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.vcard {
  display: flex; flex-direction: column; gap: 8px;
  padding: 26px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; text-decoration: none;
  transition: border-color .15s ease, transform .15s ease;
}
.vcard:hover { border-color: var(--coral); transform: translateY(-3px); }
.vcard__name { font-family: "Space Grotesk"; font-weight: 700; font-size: 1.2rem; }
.vcard__desc { color: var(--muted); font-size: .95rem; }
.vcard__go { color: var(--coral); font-weight: 600; font-size: .9rem; margin-top: auto; }

.story__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 5vw, 56px); }
.story__head { font-size: clamp(1.7rem, 4.5vw, 3rem); letter-spacing: -.02em; }
.story__body p { font-size: clamp(1rem, 2vw, 1.18rem); margin-bottom: 18px; color: #2A2A2A; }
.story__body p:last-child { margin-bottom: 0; }
@media (max-width: 760px) { .story__grid { grid-template-columns: 1fr; } }

.work__head { font-size: clamp(1.6rem, 4vw, 2.6rem); }
.work__lead { color: var(--muted); font-size: 1.1rem; margin: 14px 0 36px; max-width: 50ch; }
.work__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.wcard { padding: 28px; border: 1px solid var(--line); border-radius: 16px; border-top: 3px solid var(--coral); }
.wcard h3 { font-size: 1.25rem; margin-bottom: 10px; }
.wcard p { color: var(--muted); }

.voices { background: var(--ink); color: var(--paper); }
.voices .eyebrow { color: var(--pink); }
.voices__head { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 36px; }
.voices__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.quote { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 26px; }
.quote blockquote { font-size: 1.1rem; line-height: 1.5; margin-bottom: 16px; }
.quote figcaption { color: var(--pink); font-size: .9rem; font-weight: 600; }

.talk { background: var(--grad); color: var(--ink); text-align: center; }
.talk__inner { max-width: 720px; margin: 0 auto; }
.talk__head { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.02em; }
.talk__sub { font-size: 1.15rem; margin: 18px auto 32px; max-width: 52ch; opacity: .95; }
.talk .btn { background: var(--ink); color: var(--paper); }
.talk__alt { margin-top: 22px; font-size: .95rem; opacity: .9; }
.talk__alt a { color: var(--ink); font-weight: 600; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.vcard:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
