:root {
  --ink: #171714;
  --paper: #f4f0e8;
  --paper-dark: #e9e2d6;
  --acid: #e8ff57;
  --coral: #ff6b53;
  --pink: #efb7d5;
  --line: rgba(23, 23, 20, 0.22);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-110%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem var(--gutter);
}

.brand {
  display: block;
  width: clamp(11rem, 17vw, 15rem);
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-contact svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.header-contact:hover svg,
.header-contact:focus-visible svg {
  transform: translateX(0.25rem);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  overflow: hidden;
  padding: 9rem var(--gutter) 5rem;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -20%;
  left: 52%;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 183, 213, 0.55), rgba(239, 183, 213, 0) 68%);
  content: "";
  filter: blur(12px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 58rem;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0.32rem rgba(255, 107, 83, 0.18);
}

h1 {
  max-width: 11ch;
  margin: clamp(2rem, 5vh, 4.5rem) 0 2rem;
  font-size: clamp(4rem, 8.4vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

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

.hero-intro {
  max-width: 37rem;
  margin: 0 0 2.2rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.2rem, -0.2rem);
}

.hero-art {
  position: relative;
  width: min(38vw, 34rem);
  aspect-ratio: 1;
  justify-self: center;
}

.sun {
  position: absolute;
  z-index: 1;
  inset: 17%;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 1.4rem 4rem rgba(148, 164, 37, 0.18);
}

.sun::before,
.sun::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.sun::before {
  top: 15%;
  right: 19%;
  width: 13%;
  height: 13%;
  background: var(--coral);
}

.sun::after {
  bottom: 17%;
  left: 17%;
  width: 7%;
  height: 7%;
  background: var(--pink);
}

.orbit {
  position: absolute;
  z-index: 2;
  inset: 4%;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.orbit-one {
  animation: drift 18s linear infinite;
  transform: rotate(18deg) scaleY(0.45);
}

.orbit-two {
  animation: drift-reverse 24s linear infinite;
  transform: rotate(-42deg) scaleY(0.62);
}

.orbit-one::after,
.orbit-two::after {
  position: absolute;
  top: 45%;
  right: -0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.orbit-two::after {
  top: 8%;
  right: 17%;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--coral);
}

.art-note {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 9%;
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(-8deg);
}

.scroll-note {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scroll-note span {
  font-size: 1rem;
}

.statement {
  display: grid;
  padding: clamp(7rem, 13vw, 13rem) var(--gutter);
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: 3rem;
}

.statement-copy {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.6vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.statement-copy span {
  display: inline-block;
  padding: 0 0.12em 0.05em;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  transform: rotate(-2deg);
}

.principles {
  display: grid;
  padding: clamp(7rem, 11vw, 11rem) var(--gutter);
  background: var(--paper-dark);
  grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.principles-heading h2 {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.principle-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
}

.principle-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.number {
  padding-top: 0.25rem;
  color: rgba(23, 23, 20, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.principle-list h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.principle-list p {
  max-width: 31rem;
  margin: 0;
  color: rgba(23, 23, 20, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact {
  padding: clamp(6rem, 12vw, 12rem) var(--gutter) clamp(5rem, 8vw, 8rem);
  background: var(--coral);
}

.contact-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(23, 23, 20, 0.35);
}

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

.contact h2 {
  margin: clamp(3rem, 7vw, 7rem) 0;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.7rem;
  border-radius: 100px;
  background: var(--ink);
  color: white;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-0.18rem);
}

.phone-link {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  display: grid;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 2rem;
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: 1.25fr 0.7fr 0.7fr;
  column-gap: clamp(2rem, 7vw, 8rem);
}

.footer-brand img {
  max-width: 15rem;
  filter: invert(1);
}

.footer-brand > p {
  margin: 1.4rem 0 0;
  color: rgba(244, 240, 232, 0.6);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.site-footer address {
  font-style: normal;
}

.site-footer p {
  margin: 0;
}

.footer-heading {
  margin-bottom: 1rem !important;
  color: rgba(244, 240, 232, 0.5);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer address p:last-child,
.company-details p:last-child {
  font-size: 0.86rem;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 240, 232, 0.18);
  color: rgba(244, 240, 232, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  grid-column: 1 / -1;
  text-transform: uppercase;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom span {
  padding-left: 0.4rem;
}

@keyframes drift {
  to { transform: rotate(378deg) scaleY(0.45); }
}

@keyframes drift-reverse {
  to { transform: rotate(-402deg) scaleY(0.62); }
}

@media (max-width: 850px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 9rem;
    padding-bottom: 7rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art {
    position: absolute;
    z-index: 0;
    top: 8rem;
    right: -10rem;
    width: 27rem;
    opacity: 0.55;
  }

  h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .scroll-note {
    display: none;
  }

  .statement,
  .principles {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    max-width: 20ch;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 1.4rem;
  }

  .brand {
    width: 10.5rem;
  }

  .header-contact span {
    display: none;
  }

  .header-contact {
    width: 2.6rem;
    height: 2.6rem;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero::before {
    left: 20%;
  }

  h1 {
    margin-top: 3.2rem;
    font-size: clamp(3.8rem, 17vw, 5.5rem);
  }

  .hero-art {
    top: 8rem;
    right: -12rem;
  }

  .statement {
    gap: 2.2rem;
  }

  .statement-copy {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .principle-list li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.8rem;
  }

  .contact-topline p:last-child {
    display: none;
  }

  .contact h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .primary-button {
    width: 100%;
    gap: 0.8rem;
    padding: 0 1.3rem;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-bottom {
    margin-top: 1rem;
  }
}

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

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