:root {
  --paper: #f7f4ee;
  --paper-deep: #eee9df;
  --ink: #171717;
  --muted: #66635e;
  --line: rgba(23, 23, 23, 0.16);
  --orange: #f58b1f;
  --orange-light: #ffbd52;
  --charcoal: #232323;
  --max-width: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  width: calc(100% - (2 * var(--gutter)));
  max-width: var(--max-width);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.09);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.2rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: clamp(10.5rem, 19vw, 14rem);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.site-header nav a {
  padding-block: 0.8rem;
  color: #3f3d39;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-header nav a:hover {
  color: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(48rem, calc(100svh - 5.2rem));
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  min-height: inherit;
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  margin-right: 0.75rem;
  background: var(--orange);
  vertical-align: 0.25em;
  content: "";
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.5rem, 7.4vw, 7.1rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 span {
  color: var(--orange);
}

.hero-intro {
  max-width: 36rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  color: #4f4c47;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.button span {
  margin-left: 0.65rem;
  font-size: 1rem;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.button-secondary:hover {
  background: #fff;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(40vw, 34rem);
  aspect-ratio: 1;
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: 71%;
  filter: drop-shadow(0 1.4rem 2.5rem rgba(23, 23, 23, 0.18));
}

.mark-halo {
  position: absolute;
  z-index: 0;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 32%, rgba(255, 189, 82, 0.42), rgba(245, 139, 31, 0.09) 44%, transparent 71%);
  filter: blur(4px);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.orbit-one {
  inset: 2%;
  transform: rotate(22deg);
}

.orbit-one::after {
  top: 13%;
  right: 16%;
}

.orbit-two {
  inset: 18%;
  border-style: dashed;
  transform: rotate(-18deg);
}

.orbit-two::after {
  bottom: 3%;
  left: 33%;
  width: 0.35rem;
  height: 0.35rem;
}

.section {
  padding-block: clamp(5.5rem, 11vw, 9rem);
}

.section-heading {
  margin-bottom: clamp(2.6rem, 6vw, 5rem);
}

.section-heading h2,
.creative-intro h2,
.contact h2,
.legal-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-products {
  background: #ece7dd;
}

.section-products .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1.45fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 0.4rem;
  background: var(--charcoal);
  color: #fff;
}

.product-card::after {
  position: absolute;
  top: -45%;
  right: -12%;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 139, 31, 0.24), transparent 67%);
  content: "";
}

.product-number {
  align-self: start;
  color: var(--orange-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-copy,
.product-card .text-link {
  position: relative;
  z-index: 1;
}

.product-label {
  margin: 0 0 0.75rem;
  color: #aaa7a1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 1;
}

.product-copy > p:last-child {
  max-width: 29rem;
  margin: 1.2rem 0 0;
  color: #d1cec8;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-block: 0.5rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.light-link {
  border-bottom: 1px solid #6d6b67;
}

.light-link:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 10vw, 8rem);
  align-items: end;
}

.heading-split > p {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 19rem;
  padding: 1.5rem 1.6rem 2rem;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-0.35rem);
}

.service-index {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  max-width: 11rem;
  margin: 4.7rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.section-creative {
  background: var(--paper-deep);
}

.creative-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 10vw, 9rem);
}

.creative-intro > p:last-child {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.service-list li span:last-child {
  color: #8c8880;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.creative-note {
  margin: 2.5rem 0 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--orange);
  color: #55524d;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 13vw, 10rem);
  background: var(--charcoal);
  color: #fff;
}

.contact::after {
  position: absolute;
  top: -13rem;
  right: -9rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.018), 0 0 0 10rem rgba(255, 255, 255, 0.012);
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  color: #aaa7a1;
}

.contact h2 {
  max-width: 14ch;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #c4c1bb;
  font-size: 1.05rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #77736d;
  color: var(--orange-light);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-decoration: none;
}

.contact-link:hover {
  border-color: var(--orange-light);
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: #69655f;
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner > a:last-child {
  justify-self: end;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.footer-brand img {
  width: 2rem;
  height: auto;
}

.legal-main {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(11rem, 0.35fr) minmax(0, 0.85fr);
  gap: clamp(3rem, 9vw, 8rem);
  max-width: 1000px;
}

.legal-layout aside > p:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.legal-copy h1 {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-lede {
  margin: 2.5rem 0 4rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.5;
}

.legal-copy h2 {
  margin: 3rem 0 0.7rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.legal-copy p:not(.legal-lede) {
  margin: 0;
  color: var(--muted);
}

.legal-copy a {
  color: var(--ink);
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 2rem;
  text-align: center;
}

.not-found > img {
  width: 5.5rem;
  margin-bottom: 2rem;
}

.not-found .eyebrow::before {
  display: none;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.not-found > p:not(.eyebrow) {
  max-width: 30rem;
  margin: 1.5rem 0 2rem;
  color: var(--muted);
}

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

  .hero-art {
    width: 35vw;
  }

  .product-card {
    grid-template-columns: 0.35fr 1.65fr;
  }

  .product-card .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .service-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 4.7rem;
  }

  .brand-link {
    width: 10.8rem;
  }

  .site-header nav {
    gap: 1rem;
  }

  .site-header nav a {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .site-header nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 4.5rem 5rem;
  }

  .hero-art {
    position: absolute;
    z-index: -1;
    right: -7rem;
    bottom: -4rem;
    width: 20rem;
    opacity: 0.15;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .heading-split,
  .creative-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .heading-split {
    gap: 2rem;
  }

  .product-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-card .text-link {
    grid-column: 1;
  }

  .product-number {
    margin-bottom: 1.5rem;
  }

  .creative-grid {
    gap: 3.5rem;
  }

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

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .legal-layout aside {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .legal-layout aside .eyebrow,
  .legal-layout aside > p:last-child {
    margin: 0;
  }
}

@media (max-width: 520px) {
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .service-card,
  .service-card:nth-child(3) {
    min-height: 15rem;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-card h3 {
    margin-top: 3rem;
  }

  .contact-link {
    font-size: 1.15rem;
  }
}

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

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