:root {
  --paper: #fbf9f4;
  --paper-deep: #f4efe5;
  --ink: #133930;
  --muted: #616f6b;
  --accent: #ee5a43;
  --accent-deep: #d54730;
  --sand: #c9a674;
  --divider: #dfd3c2;
  --serif: ui-serif, "New York", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 89% 31%, rgb(201 166 116 / 24%), transparent 25rem),
    radial-gradient(circle at 7% 86%, rgb(201 166 116 / 14%), transparent 22rem),
    var(--paper);
  content: "";
}

a {
  color: inherit;
}

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

.landing-page {
  overflow: hidden;
}

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

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

.site-header,
.hero,
.promise-section,
.process-section,
.privacy-section,
.closing-section,
.site-footer {
  width: min(100% - 3rem, 76rem);
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 6.5rem;
  border-bottom: 1px solid rgb(19 57 48 / 12%);
}

.wordmark {
  width: max-content;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 2.1rem;
}

.site-nav a,
.text-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 1px solid var(--divider);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  min-height: calc(100vh - 6.5rem);
  padding-block: 4rem 6rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.35rem, 6.5vw, 6.25rem);
  line-height: 0.98;
}

h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  line-height: 1.02;
}

.hero-intro,
.section-copy > p:last-child,
.closing-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0.8rem 2rem rgb(213 71 48 / 18%);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 1rem 2.3rem rgb(213 71 48 / 28%);
  transform: translateY(-1px);
}

.artwork-frame {
  position: relative;
  isolation: isolate;
}

.artwork-frame::before {
  position: absolute;
  z-index: -1;
  inset: 8% 7% 5%;
  border-radius: 43% 57% 58% 42% / 49% 43% 57% 51%;
  background: rgb(244 239 229 / 84%);
  content: "";
  transform: rotate(-4deg);
}

.artwork-frame-hero::after {
  position: absolute;
  z-index: -2;
  right: -13%;
  bottom: 3%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(201 166 116 / 17%);
  content: "";
  filter: blur(1px);
}

.promise-section,
.privacy-section,
.closing-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-copy {
  margin: 0;
}

.process-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--divider);
}

.process-heading .eyebrow {
  order: 2;
  margin-bottom: 0.55rem;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-top: 3rem;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--divider);
}

.process-list li:first-child {
  padding-top: 0;
}

.step-number {
  padding-top: 0.35rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin: 0;
  font-size: 2rem;
}

.process-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.privacy-section {
  grid-template-columns: minmax(18rem, 0.78fr) minmax(20rem, 1.22fr);
}

.closing-section {
  grid-template-columns: 1.15fr 0.85fr;
  margin-block: 4rem 7rem;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  border: 1px solid var(--divider);
  border-radius: 2.5rem;
  background: rgb(244 239 229 / 75%);
}

.closing-copy > p:not(.eyebrow) {
  color: var(--ink);
}

.availability-pill {
  display: inline-flex;
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 8rem;
  border-top: 1px solid var(--divider);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p:last-child {
  justify-self: end;
}

@media (max-width: 800px) {
  .site-header,
  .hero,
  .promise-section,
  .process-section,
  .privacy-section,
  .closing-section,
  .site-footer {
    width: min(100% - 2rem, 42rem);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 5rem;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .promise-section,
  .process-layout,
  .privacy-section,
  .closing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 2rem;
    padding-block: 4rem 5rem;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-art {
    width: min(100%, 31rem);
    margin-inline: auto;
  }

  .promise-section,
  .privacy-section {
    gap: 2.5rem;
  }

  .promise-art,
  .privacy-art {
    width: min(78vw, 27rem);
    margin-inline: auto;
  }

  .process-heading {
    display: block;
  }

  .process-heading .eyebrow {
    margin-bottom: 1.2rem;
  }

  .process-art {
    grid-row: 1;
  }

  .privacy-art {
    grid-row: 2;
  }

  .closing-section {
    margin-block: 2rem 5rem;
    border-radius: 1.75rem;
  }

  .closing-art {
    grid-row: 1;
  }

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

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 460px) {
  .header-cta {
    padding-inline: 0.75rem;
    font-size: 0.78rem;
  }

  .wordmark {
    font-size: 2rem;
  }

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

  .button {
    width: 100%;
  }

  .closing-section {
    padding: 1.5rem;
  }
}

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

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