:root {
  --coral: #FF6F91;
  --soft-coral: #FF8FAB;
  --charcoal: #161616;
  --cream: #FFF8F3;
  --blush: #FDECEF;
  --line: rgba(22, 22, 22, 0.14);
  --max: 1180px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(22, 22, 22, 0.10);
  background-color: #BFE2F7;
  background-image: url("assets/sky-felt-full-v2.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.brand-subtitle {
  color: rgba(22, 22, 22, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand {
  font-family: "Dela Gothic One", Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: -0.055em;
}

.brand-small { font-size: clamp(1.05rem, 2vw, 1.45rem); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a { transition: color 140ms ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--coral); }

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  background-color: #BFE2F7;
  background-image: url("assets/sky-felt-full-v2.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 72px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 110px) var(--pad);
}

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

.contact {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background-color: #BFE2F7;
  background-image: url("assets/sky-felt-full-v2.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.contact-grid {
  position: relative;
  z-index: 2;
}

.hero-logo {
  margin: 0 0 clamp(28px, 4vw, 52px);
  line-height: 0;
}

.hero-logo-image {
  display: block;
  width: min(100%, clamp(420px, 62vw, 980px));
  height: auto;
}

.hero-line {
  display: grid;
  margin: 0 0 34px;
  font-size: clamp(3rem, 6.1vw, 5.8rem);
  line-height: 0.94;
  font-weight: 850;
  letter-spacing: -0.06em;
}


.hero-felt-button {
  display: inline-block;
  width: clamp(285px, 28vw, 430px);
  line-height: 0;
  border-radius: 18px;
  transition: transform 140ms ease, filter 140ms ease;
}

.hero-felt-button img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-felt-button:hover,
.hero-felt-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  outline: none;
}

.hero-felt-button:focus-visible {
  filter: brightness(1.03) drop-shadow(0 0 0.2rem rgba(22,22,22,.35));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease;
}

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

.hero-art {
  position: relative;
  min-height: min(520px, 48vw);
}




.shape { position: absolute; }

.shape-blush {
  width: min(330px, 78%);
  aspect-ratio: 1;
  left: 8%;
  top: 12%;
  border-radius: 50%;
  background: var(--blush);
}

.shape-coral {
  width: clamp(72px, 10vw, 120px);
  aspect-ratio: 1;
  right: 8%;
  top: 7%;
  border-radius: 50%;
  background: var(--coral);
}

.shape-charcoal {
  width: clamp(135px, 19vw, 210px);
  height: clamp(210px, 30vw, 320px);
  right: 2%;
  bottom: 0;
  border-radius: 999px 999px 0 0;
  background: var(--charcoal);
}

.line-stack {
  position: absolute;
  left: 19%;
  bottom: 2%;
  display: flex;
  gap: 10px;
  height: 180px;
}
.line-stack i { width: 3px; height: 100%; background: var(--coral); }

.portrait-bubble {
  position: absolute;
  z-index: 3;
  left: -2%;
  top: 11%;
  width: clamp(128px, 15vw, 182px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(22,22,22,.18);
}
.portrait-bubble img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

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



.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 130px) var(--pad);
}

.section-shell h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.accent-rule {
  width: 58px;
  height: 3px;
  margin: 24px 0 28px;
  background: var(--coral);
}

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

.steps li {
  display: grid;
  grid-template-columns: minmax(92px, 128px) 1fr;
  gap: 12px;
  align-items: center;
  min-height: clamp(92px, 10vw, 128px);
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  font-weight: 650;
}

.step-number-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.step-number-image img {
  display: block;
  width: clamp(84px, 8vw, 110px);
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.12));
}


.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 9vw, 120px);
  align-items: start;
}

.contact-intro p {
  max-width: 235px;
  margin-top: 54px;
  font-weight: 650;
}

.contact-form { display: grid; gap: 20px; }
.contact-form label {
  display: grid;
  grid-template-columns: minmax(140px, 185px) 1fr;
  gap: 18px;
  align-items: start;
  font-weight: 700;
}
.contact-form label > span { padding-top: 14px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22,22,22,.18);
  border-radius: 7px;
  outline: none;
  background: rgba(255,255,255,.72);
  color: var(--charcoal);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.contact-form input { min-height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 160px; padding: 14px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,111,145,.15);
}

.submit-felt-button {
  justify-self: end;
  width: clamp(220px, 25vw, 360px);
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
  cursor: pointer;
  transition: transform 140ms ease, filter 140ms ease;
}

.submit-felt-button img {
  display: block;
  width: 100%;
  height: auto;
}

.submit-felt-button:hover,
.submit-felt-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  outline: none;
}

.submit-felt-button:focus-visible {
  filter: brightness(1.03) drop-shadow(0 0 0.2rem rgba(22,22,22,.35));
}
.honeypot { position: absolute !important; left: -9999px !important; }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 26px var(--pad);
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
}
.brand-footer { color: var(--coral); }
.brand-lockup-footer { align-items: center; }
@media (max-width: 760px) {
  .site-header { min-height: 64px; }
  .brand-lockup { gap: 8px; }
  .brand-subtitle { font-size: 0.66rem; }
  .nav-process { display: none; }
  .nav-links { font-size: .86rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 74px;
  }

  .hero-logo {
    margin-bottom: 26px;
  }

  .hero-logo-image {
    width: min(100%, 92vw);
  }

  .hero-line { font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero-felt-button { width: min(100%, 360px); }
  .button { width: 100%; max-width: 340px; }

  .hero-art {
    min-height: 300px;
    margin-top: -24px;
  }
  .shape-blush { width: 250px; left: 18%; top: 12%; }
  .shape-coral { width: 74px; right: 10%; top: 4%; }
  .shape-charcoal { width: 130px; height: 195px; right: 2%; }
  .line-stack { left: 46%; height: 130px; }
  .portrait-bubble { width: 116px; left: 8%; top: 10%; border-width: 4px; }

  .section-shell { padding-top: 72px; padding-bottom: 72px; }
  .steps li { grid-template-columns: 82px 1fr; min-height: 84px; }
  .step-number-image img { width: 74px; }

  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .contact-intro p { margin-top: 34px; }
  .contact-form label { grid-template-columns: 1fr; gap: 8px; }
  .contact-form label > span { padding-top: 0; }
  .submit-felt-button { justify-self: stretch; width: min(100%, 360px); }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .brand-lockup-footer { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
