:root {
  --deep-violet: #3B235A;
  --soft-violet: #6E4A9E;
  --near-white: #F5F5F7;
  --soft-gray: #D1D1D6;
  --charcoal: #1C1C1E;
  --white: #FFFFFF;
  --shell: 1184px;
  --pad: clamp(20px, 4vw, 48px);
  --section-space: clamp(88px, 12vw, 168px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--near-white);
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--near-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

::selection {
  background: var(--soft-violet);
  color: var(--white);
}

.shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--deep-violet);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(209,209,214,.65);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  width: 52px;
  height: 38px;
  object-fit: cover;
  object-position: center;
}

.brand-wordmark {
  width: 151px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 34px);
}

.site-nav a,
.back-link,
.footer-links a,
.instagram-link {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -.01em;
}

.site-nav a,
.back-link {
  color: rgba(28,28,30,.72);
  transition: color 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.back-link:hover,
.back-link:focus-visible { color: var(--deep-violet); }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: 14px;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 10px;
  cursor: pointer;
}

.menu-icon {
  width: 21px;
  height: 14px;
  display: grid;
  align-content: space-between;
}

.menu-icon i {
  height: 1.5px;
  width: 100%;
  display: block;
  background: currentColor;
  transition: transform 240ms ease;
}

.menu-button[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(6.25px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-6.25px) rotate(-45deg); }

.section-white { background: var(--white); }
.section-near-white { background: var(--near-white); }
.section-violet { background: var(--deep-violet); color: var(--white); }

.hero {
  min-height: min(820px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 136px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--soft-violet);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-light { color: rgba(255,255,255,.66); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-weight: 580;
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 30px;
  max-width: 760px;
  font-size: clamp(52px, 7.2vw, 92px);
  line-height: .98;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.12;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: rgba(28,28,30,.78);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.48;
  letter-spacing: -.025em;
}

.hero-secondary {
  max-width: 620px;
  margin-bottom: 40px;
  color: rgba(28,28,30,.56);
  font-size: 17px;
  line-height: 1.62;
}

.slogan {
  width: min(322px, 72%);
  height: auto;
}

.hero-art {
  display: grid;
  place-items: center;
}

.hero-logo-wrap {
  width: min(100%, 500px);
  transform: rotate(-1.5deg);
  animation: logo-drift 8s var(--ease) infinite alternate;
}

.hero-logo-wrap img {
  width: 100%;
  height: auto;
}

@keyframes logo-drift {
  from { transform: translate3d(0, 4px, 0) rotate(-1.5deg); }
  to { transform: translate3d(0, -8px, 0) rotate(-.4deg); }
}

.statement,
.work,
.principles,
.about,
.contact,
.attention {
  padding-block: var(--section-space);
}

.statement-inner { max-width: 1010px; }
.statement h2 { max-width: 980px; }

.statement-copy {
  max-width: 760px;
  margin-left: auto;
  padding-top: clamp(24px, 3vw, 44px);
}

.statement-copy p,
.section-body p,
.attention-copy p,
.contact-inner > p,
.legal-block p,
.legal-lead {
  color: rgba(28,28,30,.68);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.7;
  letter-spacing: -.02em;
}

.statement-copy p:not(:last-child),
.section-body p:not(:last-child),
.attention-copy p:not(:last-child),
.legal-block p:not(:last-child) { margin-bottom: 20px; }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(64px, 9vw, 136px);
  align-items: start;
}

.section-heading h2 { margin-bottom: 0; }
.section-body { padding-top: 36px; }

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--deep-violet);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft-violet);
  box-shadow: 0 0 0 5px rgba(110,74,158,.09);
}

.narrow-heading { max-width: 780px; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(64px, 8vw, 120px);
  margin-top: clamp(56px, 7vw, 94px);
}

.principle {
  min-height: 250px;
  padding: 32px 0 44px;
  border-top: 1px solid var(--soft-gray);
}

.principle-number {
  display: block;
  margin-bottom: 44px;
  color: var(--soft-violet);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .16em;
}

.principle p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(28,28,30,.62);
  font-size: 17px;
  line-height: 1.65;
}

.attention-inner { max-width: 1040px; }
.attention h2 { max-width: 930px; }

.attention-copy {
  max-width: 760px;
  margin-left: auto;
  padding-top: clamp(18px, 3vw, 38px);
}

.attention-copy p { color: rgba(255,255,255,.72); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--deep-violet);
  text-decoration: none;
  font-weight: 650;
  transition: gap 220ms ease, opacity 220ms ease;
}

.text-link:hover,
.text-link:focus-visible { gap: 14px; }
.text-link-light { color: var(--white); }
.attention .text-link { margin-left: calc(100% - 760px); }

.contact-inner { max-width: 860px; }
.contact-inner > p { max-width: 660px; margin-bottom: 36px; }

.contact-email {
  display: block;
  width: fit-content;
  margin-bottom: 20px;
  color: var(--deep-violet);
  text-decoration: none;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 560;
  letter-spacing: -.045em;
}

.contact-email:hover,
.contact-email:focus-visible { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 6px; }

.instagram-link {
  display: inline-flex;
  gap: 8px;
  color: rgba(28,28,30,.6);
}

.instagram-link:hover,
.instagram-link:focus-visible { color: var(--deep-violet); }

.site-footer {
  padding-block: 64px 44px;
  border-top: 1px solid rgba(209,209,214,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "signature links"
    "copyright copyright";
  gap: 50px;
  align-items: start;
}

.footer-signature { grid-area: signature; }
.footer-wordmark { width: 180px; height: auto; margin-bottom: 14px; }
.footer-slogan { width: 230px; height: auto; }
.footer-links {
  grid-area: links;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a { color: rgba(28,28,30,.58); }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--deep-violet); }

.copyright {
  grid-area: copyright;
  margin: 0;
  color: rgba(28,28,30,.42);
  font-size: 12px;
}

.simple-header { position: relative; }
.legal-main, .company-main { background: var(--white); }
.legal-hero { padding-block: clamp(84px, 11vw, 146px); }
.legal-shell { max-width: 860px; }
.legal-hero h1 { max-width: 830px; font-size: clamp(48px, 6.4vw, 80px); }
.legal-lead { max-width: 720px; margin-bottom: 0; }
.legal-content, .company-content { padding-block: clamp(72px, 9vw, 124px); }

.legal-block {
  padding-block: 42px;
  border-top: 1px solid var(--soft-gray);
}

.legal-block:first-child { padding-top: 0; border-top: 0; }
.legal-block h2 { margin-bottom: 20px; font-size: clamp(28px, 3vw, 38px); line-height: 1.1; }
.legal-block h3 { margin-top: 34px; font-size: clamp(20px, 2.2vw, 24px); }
.legal-block p { font-size: 17px; line-height: 1.75; }
.legal-block a { color: var(--deep-violet); text-underline-offset: 3px; }
.legal-block ul,
.legal-block ol {
  margin: 0 0 20px;
  padding-left: 1.4em;
  color: rgba(28,28,30,.68);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -.02em;
}
.legal-block li { margin-bottom: 6px; }
.legal-block > *:last-child { margin-bottom: 0; }
.updated { margin-top: 28px; color: rgba(28,28,30,.42) !important; font-size: 13px !important; }
.doc-meta { margin-top: 20px; color: rgba(28,28,30,.45); font-size: 14px; line-height: 1.6; }

.company-facts { margin: 0; }
.company-facts > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding-block: 28px;
  border-top: 1px solid var(--soft-gray);
}
.company-facts > div:first-child { border-top: 0; padding-top: 0; }
.company-facts dt { color: rgba(28,28,30,.45); font-size: 14px; }
.company-facts dd { margin: 0; font-size: 19px; line-height: 1.55; }
.company-facts a { color: var(--deep-violet); text-underline-offset: 3px; }

.not-found-page { min-height: 100vh; background: var(--near-white); }
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  padding-block: 60px;
}
.brand-centered { margin-bottom: 90px; }
.not-found h1 { font-size: clamp(46px, 7vw, 82px); }
.not-found > p:not(.eyebrow) { color: rgba(28,28,30,.62); font-size: 18px; line-height: 1.6; }

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.js .reveal-delay { transition-delay: 90ms; }
.js .reveal-delay-short { transition-delay: 55ms; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--soft-violet);
  outline-offset: 5px;
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr .62fr; gap: 40px; }
  .hero-logo-wrap { width: 400px; }
  .attention .text-link { margin-left: 0; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 72px; }
  .brand-mark { width: 46px; height: 32px; }
  .brand-wordmark { width: 132px; }
  .menu-button { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px var(--pad) 30px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(209,209,214,.8);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms var(--ease), opacity 220ms ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 16px 0; font-size: 18px; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 82px 96px; }
  .hero-copy { max-width: 760px; }
  .hero-art { justify-content: start; }
  .hero-logo-wrap { width: min(72vw, 440px); margin-left: -4vw; }

  .two-column { grid-template-columns: 1fr; gap: 30px; }
  .section-body { padding-top: 0; max-width: 720px; }
  .statement-copy, .attention-copy { margin-left: 0; }
  .principle-grid { gap: 0 40px; }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "signature" "links" "copyright";
    gap: 34px;
  }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --pad: 20px; --section-space: 88px; }
  h1 { font-size: clamp(48px, 14vw, 67px); }
  h2 { font-size: clamp(38px, 11vw, 51px); }
  .hero-grid { padding-block: 68px 78px; gap: 52px; }
  .hero-secondary { font-size: 16px; }
  .slogan { width: 248px; }
  .hero-logo-wrap { width: min(86vw, 400px); margin-left: -8vw; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle { min-height: 0; }
  .principle-number { margin-bottom: 28px; }
  .contact-email { font-size: clamp(26px, 8vw, 40px); word-break: break-word; }
  .footer-links { gap: 20px; }
  .company-facts > div { grid-template-columns: 1fr; gap: 8px; }
  .back-link { font-size: 13px; }
  .legal-hero h1 { font-size: clamp(44px, 12vw, 62px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
