:root {
  --yellow: #f6df45;
  --yellow-bright: #ffe649;
  --ink: #171713;
  --ink-soft: #34342f;
  --paper: #f4f1e8;
  --paper-light: #fbfaf6;
  --line: rgba(23, 23, 19, 0.18);
  --white-line: rgba(255, 255, 255, 0.22);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --page: min(100% - 3rem, 1240px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--ink);
  color: var(--yellow);
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.7rem);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-contact):hover,
.main-nav a:not(.nav-contact):focus-visible {
  text-decoration: underline;
}

.nav-contact {
  padding: 0.6rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--ink);
  color: var(--yellow);
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 2rem;
  padding: 130px max(1.5rem, calc((100% - 1240px) / 2)) 72px;
  overflow: hidden;
  background: var(--yellow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.eyebrow,
.section-label,
.micro-label,
.echo-type {
  margin: 0 0 1.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.statement h2,
.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.7rem, 7.6vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero h1 em,
.statement h2 em,
.about h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 2.5rem 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 215px;
  padding: 0.92rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: transparent;
  color: var(--ink);
}

.text-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.hero-art {
  position: relative;
  width: min(46vw, 560px);
  justify-self: end;
}

.hero-art svg {
  width: 100%;
  overflow: visible;
}

.orbit,
.face-line,
.spark {
  fill: none;
  stroke: var(--ink);
}

.orbit {
  stroke-width: 1;
}

.orbit-one {
  stroke-dasharray: 5 9;
}

.orbit-two {
  opacity: 0.22;
}

.face-line {
  stroke-linecap: round;
  stroke-width: 4;
}

.spark {
  stroke-width: 2;
}

.dot {
  fill: var(--ink);
}

.hero-art p {
  position: absolute;
  right: 2%;
  bottom: 11%;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.25;
  transform: rotate(-5deg);
}

.hero-note {
  position: absolute;
  bottom: 2.2rem;
  left: max(1.5rem, calc((100% - 1240px) / 2));
  margin: 0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note span,
.section-label span {
  margin-right: 0.9rem;
  color: rgba(23, 23, 19, 0.52);
}

.statement,
.offer,
.echoes,
.contact,
.privacy {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.statement-content {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.statement h2 {
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.statement-text {
  padding-bottom: 0.5rem;
}

.statement-text p {
  margin: 0;
}

.statement-text p + p {
  margin-top: 1.35rem;
}

.statement blockquote {
  max-width: 870px;
  margin: clamp(4.5rem, 8vw, 8rem) 0 0 auto;
  padding: 0 0 0 2rem;
  border-left: 2px solid var(--ink);
}

.statement blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  font-style: italic;
  line-height: 1.25;
}

.offer {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.section-heading h2 {
  font-size: clamp(3rem, 5.3vw, 5.5rem);
  line-height: 0.96;
}

.offer-list {
  border-top: 1px solid var(--ink);
}

.offer-item {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1.45fr) auto;
  gap: 2rem;
  align-items: start;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}

.item-number {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.offer-item h3,
.price-note h3,
.echo-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.offer-item p:not(.item-number) {
  max-width: 700px;
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
}

.item-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.price-note {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 2rem;
  margin-top: 4rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--yellow);
}

.price-symbol {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.7;
}

.price-note h3 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.price-note p:last-child {
  max-width: 680px;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.service-note {
  max-width: 760px;
  margin: 1.3rem 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.about {
  padding: clamp(5.5rem, 10vw, 9rem) max(1.5rem, calc((100% - 1240px) / 2));
  background: var(--ink);
  color: white;
}

.section-label-light span {
  color: rgba(255, 255, 255, 0.5);
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.about h2 {
  font-size: clamp(3.5rem, 6.8vw, 7rem);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--white-line);
}

.about-mark svg {
  width: min(210px, 70%);
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-width: 2;
}

.about-copy {
  max-width: 700px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.about-copy .lead {
  margin-top: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-style: italic;
  line-height: 1.3;
}

.button-yellow {
  margin-top: 1.5rem;
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  background: transparent;
  color: var(--yellow);
}

.echoes {
  border-bottom: 1px solid var(--line);
}

.echo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.echo-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper-light);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.echo-card:hover,
.echo-card:focus-visible,
.echo-featured {
  background: var(--yellow);
}

.echo-card:hover,
.echo-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.echo-card p:not(.echo-type) {
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
}

.echo-card > span {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 4rem;
}

.contact h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.contact-grid > div:first-child > p {
  max-width: 520px;
  margin: 2rem 0 0;
  font-size: 1.1rem;
}

.contact-action {
  align-self: end;
}

.contact-action > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-style: italic;
  text-decoration: none;
}

.contact-action > a:hover,
.contact-action > a:focus-visible {
  background: var(--yellow);
}

.contact-action p {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy {
  border-top: 1px solid var(--line);
}

.privacy-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.privacy-summary p {
  grid-column: 2;
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.4;
}

.privacy-details {
  margin-top: 4rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.privacy-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.privacy-details summary::-webkit-details-marker {
  display: none;
}

.privacy-details summary span {
  font-size: 1.5rem;
  font-weight: 400;
}

.privacy-details details[open] summary span {
  transform: rotate(45deg);
}

.legal-copy {
  max-width: 850px;
  margin: 1rem auto 4rem;
}

.legal-copy h3 {
  margin: 2.2rem 0 0.6rem;
  font-size: 1rem;
}

.legal-copy p {
  margin: 0.8rem 0;
  color: var(--ink-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem max(1.5rem, calc((100% - 1240px) / 2));
  background: var(--yellow);
}

.site-footer p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copyright {
  font-family: var(--sans) !important;
  font-size: 0.68rem;
  font-style: normal !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .main-nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    min-height: 880px;
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 140px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-art {
    position: absolute;
    right: -110px;
    bottom: -90px;
    width: 480px;
    opacity: 0.34;
  }

  .statement-content,
  .section-heading,
  .about-intro,
  .about-body,
  .contact-grid,
  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .statement-text {
    max-width: 650px;
  }

  .section-heading {
    gap: 0.8rem;
  }

  .about-intro h2,
  .about-body .about-copy,
  .privacy-summary p {
    grid-column: 1;
  }

  .about-mark svg {
    width: 130px;
  }

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

  .echo-card {
    min-height: 300px;
  }

  .contact-action {
    max-width: 600px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --page: min(100% - 2rem, 1240px);
  }

  .site-header {
    min-height: 80px;
  }

  .brand span {
    font-size: 0.76rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-contact {
    padding: 0.48rem 0.75rem;
  }

  .hero {
    min-height: 780px;
    padding-inline: 1rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.8rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.4rem;
  }

  .hero-note {
    left: 1rem;
  }

  .hero-art {
    right: -150px;
    bottom: -75px;
    width: 430px;
  }

  .offer-item {
    grid-template-columns: 2.1rem 1fr;
    gap: 0.5rem;
  }

  .item-mark {
    display: none;
  }

  .price-note {
    grid-template-columns: 1fr;
  }

  .price-symbol {
    font-size: 4rem;
  }

  .about {
    padding-inline: 1rem;
  }

  .contact-grid {
    gap: 3rem;
  }

  .contact-action > a {
    font-size: 1.05rem;
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-inline: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-art,
  .hero-actions,
  .footer-links {
    display: none;
  }

  .hero,
  .about,
  .site-footer {
    background: white;
    color: black;
  }

  .hero {
    min-height: 0;
    padding-top: 2rem;
  }
}
