:root {
  --green: #adb19d;
  --peach: #f1b39a;
  --sand: #e9c9b1;
  --blue: #a1b1bc;
  --charcoal: #333333;
  --cream: #fbf7f3;
  --white: #ffffff;
  --border: rgba(51, 51, 51, 0.13);
  --serif: "Cormorant Infant", serif;
  --sans: "Montserrat", sans-serif;
  --shadow: 0 24px 70px rgba(51, 51, 51, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select { font: inherit; }

::selection {
  background: var(--peach);
  color: var(--charcoal);
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: 1rem;
  padding: .7rem 1rem;
  background: var(--charcoal);
  color: white;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.soft-bg {
  background: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(51,51,51,.07);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 125px;
  height: 46px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand img {
  width: 50%;
  height: auto;
  transform: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .76rem;
  font-weight: 550;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--green);
  transition: right .25s ease;
}

.main-nav a:hover::after {
  right: 0;
}

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 0 22px;
  background: var(--green);
}

.button {
  padding: 0 25px;
}

.button.primary {
  color: white;
  background: var(--charcoal);
  box-shadow: 0 13px 30px rgba(51,51,51,.13);
}

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

.button.full { width: 100%; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--charcoal);
  margin: 6px 0;
}

.hero {
  padding-top: 76px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  min-height: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 650;
}

.hero h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 25px;
  max-width: 720px;
  font-size: clamp(3.6rem, 6.7vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.045em;
}

.hero h1 em {
  color: var(--green);
  font-weight: 500;
}

.lead {
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
}

.text-link {
  font-size: .82rem;
  font-weight: 600;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.shape {
  position: absolute;
  border-radius: 48% 52% 60% 40% / 52% 42% 58% 48%;
}

.shape-peach {
  width: 240px;
  height: 270px;
  right: -75px;
  top: 0;
  background: var(--peach);
  border-radius: 50%;
}

.shape-sand {
  width: 155px;
  height: 155px;
  left: 20px;
  bottom: 32px;
  background: var(--sand);
  border-radius: 50%;
}

.shape-blue {
  width: 92px;
  height: 138px;
  right: 40px;
  bottom: 10px;
  background: var(--blue);
  border-radius: 60% 40% 60% 40%;
  transform: rotate(30deg);
}

.hero-mark {
  position: absolute;
  width: 320px;
  height: 320px;
  left: 48%;
  top: 49%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-mark img {
  width: 95%;
  mix-blend-mode: multiply;
}

.hero-quote {
  position: absolute;
  right: -16px;
  bottom: 85px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.05;
  font-style: italic;
}

.quick-values {
  margin-top: 78px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(51,51,51,.65);
  font-size: .69rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-values i {
  width: 6px;
  height: 6px;
  background: var(--peach);
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.section-intro h2,
.section-heading h2,
.center-heading h2,
.waitlist-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.body-copy {
  max-width: 680px;
  font-size: 1.02rem;
}

.body-copy p:first-child {
  font-size: 1.15rem;
}

.placeholder-note {
  margin-top: 30px;
  padding: 20px 24px;
  border-left: 3px solid var(--peach);
  background: white;
  font-size: .88rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 10px auto;
  font-size: .92rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .25s ease;
}

.service-card:hover { transform: translateY(-5px); }

.service-card.green { background: rgba(173,177,157,.56); }
.service-card.peach { background: rgba(241,179,154,.58); }
.service-card.sand { background: rgba(233,201,177,.62); }
.service-card.blue { background: rgba(161,177,188,.57); }

.service-number {
  margin-bottom: auto;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .16em;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
}

.service-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
}

.process-section {
  background: var(--charcoal);
  color: white;
}

.process-section .eyebrow {
  color: var(--sand);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.process-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.process-list > li > span {
  color: var(--peach);
  font-size: .72rem;
  letter-spacing: .16em;
}

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

.process-list p {
  margin: 0;
  color: rgba(255,255,255,.72);
  max-width: 720px;
  font-size: .9rem;
}

.values-section {
  background: var(--cream);
}

.center-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.value-card {
  text-align: center;
  padding: 30px 17px;
  border-radius: var(--radius);
  background: white;
  min-height: 245px;
}

.icon-line {
  width: 62px;
  height: 62px;
  border: 2px solid currentColor;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.value-card:nth-child(1) .icon-line { color: var(--green); }
.value-card:nth-child(2) .icon-line { color: var(--peach); }
.value-card:nth-child(3) .icon-line { color: var(--green); }
.value-card:nth-child(4) .icon-line { color: var(--sand); }
.value-card:nth-child(5) .icon-line { color: var(--blue); }

.value-card h3 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.value-card p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.55;
}

.waitlist-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(241,179,154,.27), transparent 26%),
    radial-gradient(circle at 95% 86%, rgba(161,177,188,.28), transparent 24%),
    white;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.waitlist-copy > p:not(.eyebrow) {
  max-width: 500px;
}

.privacy-card {
  margin-top: 34px;
  padding: 23px 25px;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  max-width: 520px;
}

.privacy-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.privacy-card p {
  margin: 0;
  font-size: .82rem;
}

.waitlist-form {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(51,51,51,.2);
  border-radius: 14px;
  padding: 0 15px;
  background: white;
  color: var(--charcoal);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(173,177,157,.18);
}

.field.invalid input {
  border-color: #a64a40;
}

.error {
  min-height: 18px;
  display: block;
  color: #8b3c35;
  font-size: .7rem;
  margin-top: 3px;
}

.checkbox {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  margin: 5px 0 22px;
  font-size: .74rem;
  line-height: 1.55;
}

.checkbox input {
  margin-top: 4px;
  accent-color: var(--green);
}

.checkbox a { text-decoration: underline; }

.form-status {
  margin: 16px 0 0;
  font-size: .78rem;
  text-align: center;
  min-height: 1.5em;
}

.form-status.success { color: #49634e; }
.form-status.error-state { color: #8b3c35; }

.honeypot {
  position: absolute;
  left: -10000px;
}

.contact-section {
  padding-top: 20px;
}

.contact-card {
  padding: 56px;
  border-radius: 34px;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.contact-card h2 {
  max-width: 500px;
}

.contact-details {
  border-top: 1px solid rgba(51,51,51,.25);
}

.contact-details p {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(51,51,51,.25);
  font-size: .82rem;
}

.contact-details span {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .63rem;
  padding-top: 2px;
}

.site-footer {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr .8fr;
  gap: 50px;
  padding-top: 35px;
  border-top: 1px solid var(--border);
  font-size: .75rem;
}

.footer-brand img {
  width: 190px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
}

.footer-copy p {
  margin: 0 0 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 24px 30px;
    background: white;
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open { display: flex; }

  .main-nav a { padding: 7px 0; }

  .hero-grid,
  .split,
  .waitlist-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 30px; }

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

  .hero-art {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .split,
  .waitlist-grid,
  .contact-card {
    gap: 48px;
  }

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

  .values-grid {
    grid-template-columns: repeat(3,1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p { margin-left: 0; }

  .quick-values {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .section { padding: 78px 0; }

  .nav-wrap { min-height: 78px; }
  .brand { width: 112px; height: 42px; }
  .main-nav { top: 78px; }

  .hero { padding-top: 48px; }
  .hero-grid { min-height: auto; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }

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

  .text-link { align-self: flex-start; }

  .hero-art { min-height: 390px; }
  .shape-peach { width: 170px; height: 190px; right: -50px; }
  .shape-sand { width: 115px; height: 115px; left: 0; }
  .shape-blue { width: 65px; height: 95px; right: 10px; }
  .hero-mark { width: 235px; height: 235px; }
  .hero-quote { font-size: 1.2rem; right: 0; }

  .quick-values { margin-top: 40px; }
  .quick-values i { display: none; }

  .service-grid,
  .values-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: 265px; }

  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .waitlist-form { padding: 24px 20px; }

  .contact-card { padding: 34px 25px; }

  .contact-details p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-brand img { width: 170px; }
}
