:root {
  --night: #241d37;
  --night-soft: #392f51;
  --cream: #fff9ed;
  --paper: #f3edde;
  --peach: #f4a261;
  --lime: #c6f36b;
  --sky: #87c5ee;
  --ink: #201b2d;
  --quiet: #625b70;
  --rule: #d8cfba;
  --white: #ffffff;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(circle at 1px 1px, rgba(36, 29, 55, 0.16) 1px, transparent 0);
  background-size: 20px 20px;
}

a {
  color: inherit;
}

img {
  display: block;
}

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

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.topbar {
  width: min(calc(100% - 48px), var(--content));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--rule);
}

.identity,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.identity span,
.footer-brand span {
  display: grid;
  line-height: 1.2;
}

.identity strong,
.footer-brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.identity small,
.footer-brand small {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.topbar nav a {
  position: relative;
  color: var(--quiet);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.topbar nav a:hover,
.topbar nav a[aria-current="page"] {
  color: var(--night);
}

.topbar nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--peach);
}

main,
footer {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.opening {
  min-height: 650px;
  padding: 78px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: 76px;
}

.signal,
.section-number {
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal::before {
  content: "◆";
  margin-right: 9px;
  color: var(--peach);
  font-size: 0.7em;
}

.opening h1 {
  max-width: 750px;
  margin-bottom: 28px;
  font-size: clamp(4.1rem, 7.9vw, 7.4rem);
  line-height: 0.86;
}

.opening h1 em {
  color: var(--night-soft);
  font-weight: 400;
}

.intro {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--quiet);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.primary-action,
.quiet-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.primary-action {
  padding: 12px 20px;
  color: var(--white);
  background: var(--night);
  border: 2px solid var(--night);
  box-shadow: 6px 6px 0 var(--peach);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.primary-action:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--peach);
}

.quiet-action {
  color: var(--night);
  border-bottom: 2px solid var(--peach);
}

.chamber-board {
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  background: var(--night);
  transform: rotate(2deg);
  box-shadow: 18px 18px 0 rgba(244, 162, 97, 0.56);
}

.tile {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--night);
  background: var(--paper);
}

.tile b {
  font-size: clamp(1rem, 2vw, 1.7rem);
}

.tile i {
  color: var(--night-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
}

.tile-a {
  grid-row: span 2;
  background: var(--peach);
}

.tile-b {
  grid-column: span 2;
  background: var(--lime);
}

.tile-c {
  background: var(--cream);
}

.tile-d {
  background: var(--sky);
}

.tile-e {
  grid-column: span 2;
  background: var(--paper);
}

.tile-f {
  background: var(--peach);
}

.studio-note,
.page-intro,
.privacy-route {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 54px;
}

.studio-note {
  margin-bottom: 90px;
  padding: 56px;
  color: var(--white);
  background: var(--night);
}

.studio-note .section-number,
.studio-note p {
  color: #c8bfd8;
}

.studio-note h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.studio-note p {
  max-width: 690px;
  margin-bottom: 0;
}

.route-section {
  padding: 0 0 100px;
}

.route-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.route-heading .signal {
  margin-bottom: 7px;
}

.route-heading h2,
.privacy-route h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.route-list article {
  min-height: 310px;
  padding: 34px 34px 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
}

.route-list article:last-child {
  border-right: 0;
}

.route-list article > span {
  color: var(--peach);
  font-size: 0.78rem;
  font-weight: 900;
}

.route-list h3 {
  margin: auto 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.route-list p {
  color: var(--quiet);
  font-size: 0.92rem;
}

.route-list a {
  width: fit-content;
  color: var(--night);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration-color: var(--peach);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.support-address h2 a,
.policy-copy a {
  font-weight: 700;
  text-decoration-color: var(--peach);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

footer {
  min-height: 150px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--rule);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
footer > p {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

footer > p {
  margin-bottom: 0;
  white-space: nowrap;
}

.inner-page {
  padding-top: 72px;
}

.page-intro {
  margin-bottom: 74px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  align-items: end;
}

.page-intro h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  line-height: 0.92;
}

.page-intro > p,
.page-intro > div:last-child p {
  color: var(--quiet);
}

.support-workflow {
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
}

.support-address {
  padding: 38px;
  background: var(--sky);
  border: 2px solid var(--night);
  box-shadow: 9px 9px 0 var(--night);
}

.support-address h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.support-address p:not(.signal) {
  margin-bottom: 28px;
  color: var(--night-soft);
}

.request-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.request-steps li {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--rule);
}

.request-steps li > span {
  color: var(--peach);
  font-size: 0.78rem;
  font-weight: 900;
}

.request-steps strong {
  display: block;
  margin-bottom: 4px;
}

.request-steps p {
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.faq-section {
  margin-bottom: 90px;
  padding: 56px;
  color: var(--white);
  background: var(--night);
}

.faq-section .section-number {
  color: #c8bfd8;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-grid article {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-grid article:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-grid article:nth-child(even) {
  padding-left: 32px;
}

.faq-grid h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.faq-grid p {
  margin-bottom: 0;
  color: #c8bfd8;
  font-size: 0.9rem;
}

.privacy-route {
  margin-bottom: 88px;
  padding: 42px 48px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(240px, 0.8fr) auto;
  align-items: center;
  gap: 38px;
  background: var(--paper);
  border: 1px solid var(--rule);
}

.privacy-route .signal {
  margin-bottom: 8px;
}

.privacy-route p {
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.scope-notice {
  margin-bottom: 62px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  background: var(--peach);
  border: 2px solid var(--night);
}

.scope-notice p {
  margin-bottom: 0;
  color: var(--night-soft);
}

.policy-layout {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 76px;
}

.policy-index {
  position: sticky;
  top: 20px;
  display: grid;
  border-top: 4px solid var(--night);
}

.policy-index span,
.policy-index a {
  padding: 12px 3px;
  border-bottom: 1px solid var(--rule);
  font-size: 0.78rem;
  text-decoration: none;
}

.policy-index span {
  color: var(--quiet);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-index a:hover {
  color: var(--peach);
}

.policy-copy {
  border-top: 4px solid var(--night);
}

.policy-copy section {
  position: relative;
  padding: 42px 0 44px 74px;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 20px;
}

.clause-number {
  position: absolute;
  top: 47px;
  left: 0;
  color: var(--peach);
  font-size: 0.82rem;
  font-weight: 900;
}

.policy-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.policy-copy p {
  max-width: 760px;
  color: var(--quiet);
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.missing-page {
  width: min(calc(100% - 48px), 780px);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.missing-page img {
  margin-bottom: 28px;
}

.missing-page h1 {
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.95;
}

.missing-page > p:not(.signal) {
  margin-bottom: 28px;
  color: var(--quiet);
}

@media (max-width: 900px) {
  .opening {
    grid-template-columns: 1fr;
  }

  .chamber-board {
    width: min(100%, 560px);
    justify-self: center;
  }

  .route-list {
    grid-template-columns: 1fr;
  }

  .route-list article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .route-list article:last-child {
    border-bottom: 0;
  }

  .page-intro,
  .support-workflow,
  .privacy-route {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .policy-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-index span {
    grid-column: 1 / -1;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .topbar,
  main,
  footer {
    width: min(calc(100% - 28px), var(--content));
  }

  .topbar {
    padding: 15px 0 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .topbar nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .topbar nav a {
    font-size: 0.76rem;
  }

  .topbar nav a[aria-current="page"]::after {
    bottom: -8px;
  }

  .opening {
    min-height: auto;
    padding: 58px 0 68px;
    gap: 52px;
  }

  .opening h1,
  .page-intro h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .chamber-board {
    gap: 7px;
    padding: 7px;
    box-shadow: 10px 10px 0 rgba(244, 162, 97, 0.56);
  }

  .tile {
    padding: 10px;
  }

  .studio-note,
  .page-intro,
  .scope-notice {
    grid-template-columns: 1fr;
  }

  .studio-note,
  .faq-section {
    padding: 34px 24px;
  }

  .route-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-list article {
    padding: 28px 18px;
  }

  footer {
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  footer > p {
    grid-column: auto;
  }

  .inner-page {
    padding-top: 52px;
  }

  .page-intro {
    margin-bottom: 54px;
    gap: 28px;
  }

  .support-address {
    padding: 28px 22px;
    box-shadow: 7px 7px 0 var(--night);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid article,
  .faq-grid article:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }

  .privacy-route {
    padding: 30px 24px;
  }

  .scope-notice {
    gap: 8px;
    padding: 24px 20px;
  }

  .policy-index {
    grid-template-columns: 1fr;
  }

  .policy-copy section {
    padding: 68px 0 38px;
  }

  .clause-number {
    top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-action {
    transition: none;
  }
}
