@import url("https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "21zero5";
  src: url("21zero5-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
}

:root {
  --ink: #1c1c1a;
  --muted: #5d5b55;
  --cream: #f7f0dc;
  --cream-2: #fff8e7;
  --green: #baf986;
  --green-deep: #4ba946;
  --pink: #f4a6b6;
  --coral: #f06955;
  --blue: #b6dcf4;
  --lavender: #c7a5ec;
  --yellow: #ffd86d;
  --line: rgba(28, 28, 26, 0.16);
  --shadow: 0 18px 48px rgba(28, 28, 26, 0.11);
  --stack-top: 0px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Rethink Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.header-hidden .site-header {
  transform: translateY(calc(-100% + 8px));
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 12% 10%, rgba(186, 249, 134, 0.55), transparent 22rem),
    radial-gradient(circle at 92% 24%, rgba(182, 220, 244, 0.5), transparent 26rem),
    radial-gradient(circle at 50% 84%, rgba(244, 166, 182, 0.34), transparent 25rem);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 220, 0.94);
  backdrop-filter: blur(16px);
  transition: transform 260ms ease;
}

.topbar {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}

.ticker {
  display: flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  gap: 34px;
  padding-inline: 18px;
  animation: ticker 28s linear infinite;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.ticker span::after {
  content: "•";
  margin-left: 34px;
  color: var(--green);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.main-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 9px clamp(18px, 4vw, 56px);
}

.brand {
  justify-self: center;
}

.brand img {
  width: 64px;
  height: auto;
}

.nav-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links {
  justify-self: start;
}

.nav-links a,
.site-footer a,
.cart-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 12px;
}

.nav-links a:hover,
.site-footer a:hover,
.cart-link:hover {
  border-color: var(--line);
  background: var(--cream-2);
}

.cart-link {
  justify-self: end;
  gap: 10px;
  background: var(--cream-2);
  font-size: 0.92rem;
  font-weight: 800;
}

.cart-link span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 0.78rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  overflow: hidden;
  padding: calc(96px + clamp(36px, 6vw, 76px)) clamp(18px, 5vw, 74px) clamp(26px, 5vw, 58px);
}

.hero::after {
  position: absolute;
  inset: 10% 4% auto auto;
  z-index: 0;
  width: min(43vw, 610px);
  aspect-ratio: 1;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, #c8ff7b 0%, #59bf58 100%);
  box-shadow: 0 34px 80px rgba(53, 145, 52, 0.18);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(28, 28, 26, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 26, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-copy,
.print-prompt,
.hero-actions {
  position: relative;
  z-index: 2;
}

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

.kicker,
.section-label,
.tag,
.prompt-eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
}

.kicker,
.section-label {
  color: var(--green-deep);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 10vw, 10rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: lowercase;
}

h1 {
  max-width: 760px;
}

h2 {
  max-width: 920px;
  font-size: clamp(3.3rem, 7.8vw, 7.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 0.94;
  text-transform: lowercase;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 600;
  line-height: 1.42;
}

.hero-pills,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills {
  margin-top: 26px;
}

.hero-pills a,
.prompt-row button,
.wizard-chat-form button,
.quote-submit,
.quote-preview a,
.product-card a,
.section-heading a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 800;
  text-transform: lowercase;
}

.hero-pills a:last-child,
.product-card a,
.section-heading a {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.hero-art {
  display: grid;
  min-height: 440px;
  place-items: center;
}

.hero-blob {
  position: relative;
  display: grid;
  width: min(100%, 620px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #c8ff7b 0%, #59bf58 100%);
}

.hero-product {
  position: relative;
  z-index: 1;
  width: 92%;
  transform: translateX(-4%);
  filter: drop-shadow(0 22px 28px rgba(40, 90, 36, 0.18));
}

.hero-shadow {
  position: absolute;
  bottom: 12%;
  width: 42%;
  opacity: 0.45;
}

.print-prompt {
  grid-column: 1 / -1;
  width: min(100%, 1060px);
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(16px, 3vw, 26px);
  background: rgba(255, 248, 231, 0.92);
  box-shadow: var(--shadow);
}

.print-prompt label {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 0.92;
}

.chat-head {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
}

.chat-live {
  display: inline-flex;
  min-height: 30px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: white;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: lowercase;
}

.chat-live span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-deep);
  box-shadow: 0 0 0 5px rgba(186, 249, 134, 0.48);
}

.chat-messages {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.chat-message {
  width: fit-content;
  max-width: min(100%, 720px);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.38;
}

.chat-message.is-bot {
  background: white;
}

.chat-message.is-user {
  justify-self: end;
  background: var(--green);
}

.prompt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.prompt-row input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  padding: 15px 18px;
  background: white;
  color: var(--ink);
  font-weight: 600;
}

.prompt-row input:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(186, 249, 134, 0.56);
}

.chat-row {
  align-items: center;
}

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-prompts button,
.steps button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-prompts button:hover,
.steps button:hover,
.steps button.is-active {
  background: var(--green);
}

.hero-actions {
  grid-column: 1 / -1;
}

.hero-actions p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 248, 231, 0.78);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.choice-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}

.choice-strip p {
  display: grid;
  min-height: 74px;
  margin: 0;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: lowercase;
}

.choice-strip p:last-child {
  border-right: 0;
}

.section,
.shop-section,
.custom-flow,
.operations,
.faq,
.site-footer {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 74px);
}

.section,
.shop-section,
.custom-flow,
.operations,
.faq,
.project-stack {
  scroll-margin-top: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
}

.intro p:last-child,
.flow-copy p,
.operations p,
.faq p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
}

.project-stack {
  padding: 0;
}

.stack-slide {
  --slide-reveal-offset: 0px;
  position: sticky;
  top: var(--stack-top);
  min-height: calc(100svh - var(--stack-top));
  overflow: hidden;
  scroll-margin-top: var(--slide-reveal-offset);
  border-top: 1px solid var(--line);
  background: var(--green);
}

.stack-slide:nth-child(1) {
  z-index: 1;
}

.stack-slide:nth-child(2) {
  z-index: 2;
}

.stack-slide:nth-child(3) {
  z-index: 3;
}

.slide-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(18px, 5vw, 56px);
  color: var(--ink);
  font-size: clamp(1.02rem, 1.6vw, 1.42rem);
  font-weight: 800;
  text-transform: lowercase;
}

.slide-file .slide-bar {
  background: var(--green);
}

.slide-idea .slide-bar {
  background: var(--pink);
}

.slide-shop .slide-bar {
  background: var(--blue);
}

.stack-layout {
  min-height: calc(100svh - var(--stack-top) - 58px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(22px, 5vw, 56px);
}

.slide-file {
  background: var(--green);
}

.slide-idea {
  --slide-reveal-offset: 58px;
  background: var(--pink);
  top: 58px;
}

.slide-shop {
  --slide-reveal-offset: 116px;
  background: var(--blue);
  top: 116px;
}

.slide-copy {
  max-width: 690px;
}

.slide-flavor {
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: lowercase;
}

.stack-slide h3 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.6vw, 7.2rem);
  line-height: 0.82;
  overflow-wrap: anywhere;
}

.stack-slide p {
  max-width: 620px;
  color: rgba(28, 28, 26, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.42;
}

.slide-meta {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: lowercase;
}

.license-note {
  max-width: 560px;
  border-left: 4px solid var(--ink);
  padding-left: 14px;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.slide-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-transform: lowercase;
}

.slide-actions a:last-child {
  background: transparent;
  color: var(--ink);
}

.slide-media {
  display: grid;
  place-items: center;
}

.slide-media img {
  width: min(100%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(28, 28, 26, 0.12);
  border-radius: 24px;
  object-fit: cover;
  background: var(--cream-2);
  box-shadow: 0 18px 42px rgba(28, 28, 26, 0.12);
  transform: rotate(2deg);
}

.slide-idea .slide-media img {
  transform: rotate(-2deg);
}

.slide-shop .slide-media img {
  transform: rotate(1deg);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 74px) clamp(70px, 9vw, 126px);
}

.collection-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.collection-card:nth-child(2) {
  background: var(--pink);
}

.collection-card:nth-child(3) {
  background: var(--blue);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  background: var(--cream-2);
}

.collection-card span {
  margin-top: 20px;
  font-size: 0.84rem;
  font-weight: 800;
}

.collection-card h3 {
  max-width: 360px;
}

.collection-card p {
  max-width: 360px;
  margin-top: auto;
  margin-bottom: 0;
  color: rgba(28, 28, 26, 0.72);
  font-weight: 700;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading .section-label {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream-2);
  box-shadow: 0 14px 34px rgba(28, 28, 26, 0.08);
}

.product-card.is-recommended {
  outline: 5px solid rgba(186, 249, 134, 0.72);
  outline-offset: 4px;
}

.product-visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--green);
}

.product-card .tag,
.product-card h3,
.product-card .price {
  padding: 0 16px;
}

.product-card .tag {
  margin-top: 16px;
  color: var(--green-deep);
}

.product-card h3 {
  min-height: 72px;
  font-size: clamp(1.24rem, 2vw, 1.78rem);
}

.price {
  color: var(--muted);
  font-weight: 800;
}

.product-card a {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
}

.custom-flow {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  overflow: hidden auto;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(28, 28, 26, 0.62);
  backdrop-filter: blur(18px);
}

.custom-flow.is-open {
  display: grid;
}

.modal-shell {
  width: min(1180px, calc(100vw - clamp(28px, 6vw, 68px)));
  max-width: 100%;
  height: min(820px, calc(100svh - clamp(28px, 6vw, 68px)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.45fr);
  grid-template-rows: 66px minmax(0, 1fr);
  gap: 0;
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 231, 0.36);
  border-radius: 30px;
  background: var(--cream-2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.modal-topbar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 10px 18px;
  background: rgba(255, 248, 231, 0.96);
}

.modal-topbar .brand {
  justify-self: start;
}

.modal-topbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-transform: lowercase;
}

.modal-close {
  min-height: 38px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 800;
  text-transform: lowercase;
}

.wizard-chat,
.flow-panel {
  min-height: 0;
}

.wizard-chat {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  gap: 13px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 248, 231, 0.22);
  padding: clamp(18px, 2.5vw, 26px);
  background: var(--ink);
  color: var(--cream-2);
}

.wizard-chat h2 {
  margin-bottom: 0;
  color: var(--cream-2);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 0.86;
}

.wizard-chat > p:not(.section-label) {
  display: none;
}

.wizard-chat .section-label {
  color: var(--green);
}

.wizard-chat-log {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 2px;
}

.wizard-chat .chat-message {
  max-width: 100%;
  border-color: rgba(255, 248, 231, 0.22);
  font-size: 0.9rem;
}

.wizard-chat .chat-message.is-bot {
  background: rgba(255, 248, 231, 0.1);
  color: var(--cream-2);
}

.wizard-chat .chat-message.is-user {
  background: var(--green);
  color: var(--ink);
}

.wizard-chat .chat-message.is-pending {
  opacity: 0.72;
}

.wizard-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.wizard-chat-form input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 248, 231, 0.22);
  border-radius: 999px;
  outline: 0;
  padding: 14px 16px;
  background: rgba(255, 248, 231, 0.12);
  color: var(--cream-2);
  font-weight: 700;
}

.wizard-chat-form input::placeholder {
  color: rgba(255, 248, 231, 0.56);
}

.wizard-chat-form button {
  background: var(--green);
  color: var(--ink);
}

.wizard-chat-form input:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(186, 249, 134, 0.56);
}

.modal-prompts {
  margin-top: 0;
}

.flow-panel {
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
  overflow: hidden auto;
  background: var(--cream-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
}

.quote-preview {
  padding: clamp(22px, 4vw, 38px);
}

.quote-preview .tag {
  color: var(--coral);
}

.quote-preview ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.quote-note {
  margin: -8px 0 24px;
  border-left: 4px solid var(--coral);
  padding-left: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-preview a {
  width: 100%;
}

.quote-copy {
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  padding-bottom: 8px;
}

.shop-suggestions {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.suggestion-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: white;
}

.suggestion-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.suggestion-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: lowercase;
}

.suggestion-card button {
  min-height: 40px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 800;
  text-transform: lowercase;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.quote-form.is-hidden {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-grid label,
.consent-check {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: lowercase;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
  font-weight: 650;
  text-transform: none;
}

.field-grid textarea {
  min-height: 126px;
  resize: vertical;
  line-height: 1.4;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(186, 249, 134, 0.48);
}

.file-field input {
  border-style: dashed;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-ui {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 12px;
  background: white;
  cursor: pointer;
}

.file-upload-ui b {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--ink);
  color: white;
  font-size: 0.86rem;
}

.file-upload-ui em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  text-transform: none;
}

.file-field > span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--ink);
  line-height: 1.35;
}

.consent-check input {
  margin-top: 2px;
}

.bot-field {
  display: none;
}

.form-message {
  min-height: 1.3em;
  margin: 0;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-submit {
  width: 100%;
}

.flow-panel.is-guided {
  box-shadow: 0 0 0 5px rgba(186, 249, 134, 0.44), var(--shadow);
}

.editorial-band {
  padding: clamp(58px, 8vw, 116px) clamp(18px, 5vw, 74px);
  background: var(--coral);
  color: var(--cream-2);
}

.editorial-band p {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 8.5rem);
  font-weight: 800;
  line-height: 0.82;
  text-transform: lowercase;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.ops-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: var(--cream-2);
  box-shadow: 0 14px 34px rgba(28, 28, 26, 0.08);
}

.ops-grid article:nth-child(2) {
  background: var(--lavender);
}

.ops-grid article:nth-child(3) {
  background: var(--yellow);
}

.faq {
  max-width: 980px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.16rem;
  font-weight: 800;
  text-transform: lowercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}

.footer-brand {
  justify-self: start;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
}

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

  .ticker {
    animation: none;
  }
}

@media (max-width: 980px) {
  .main-nav {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-row: 1;
    justify-self: start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .stack-layout,
  .modal-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    inset: 6% -18% auto auto;
    width: 76vw;
  }

  .hero-art {
    min-height: 360px;
    order: -1;
  }

  .mood-grid,
  .product-grid,
  .ops-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stack-layout {
    gap: 28px;
  }

  .slide-media {
    order: -1;
  }

  .slide-media img {
    width: min(100%, 360px);
  }

  .choice-strip {
    grid-template-columns: 1fr 1fr;
  }

  .modal-shell {
    height: auto;
    min-height: calc(100svh - 24px);
    grid-template-rows: auto auto auto;
  }

  .wizard-chat,
  .flow-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .flow-panel {
    overflow: visible;
  }

  .wizard-chat-log {
    max-height: 320px;
  }
}

@media (max-width: 660px) {
  .main-nav {
    padding: 12px 16px;
  }

  .brand img {
    width: 60px;
  }

  .cart-link {
    font-size: 0;
  }

  .cart-link span {
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 5.9rem);
  }

  h2 {
    font-size: clamp(3.25rem, 15vw, 5.4rem);
  }

  .hero {
    padding: 28px 16px 34px;
  }

  .chat-head {
    display: grid;
  }

  .hero-art {
    min-height: 280px;
  }

  .hero::after {
    inset: 6% -22% auto auto;
    width: 90vw;
  }

  .prompt-row,
  .wizard-chat-form,
  .steps,
  .field-grid,
  .section-heading,
  .mood-grid,
  .product-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .prompt-row button,
  .wizard-chat-form button,
  .hero-pills a {
    width: 100%;
  }

  .custom-flow {
    padding: 10px;
  }

  .modal-topbar {
    grid-template-columns: auto auto;
  }

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

  .suggestion-card {
    grid-template-columns: 1fr;
  }

  .choice-strip {
    grid-template-columns: 1fr;
  }

  .choice-strip p {
    min-height: 58px;
    border-right: 0;
  }

  .collection-card {
    min-height: auto;
  }

  .slide-actions a {
    width: 100%;
  }

  .stack-layout {
    padding: 16px;
  }

  .stack-slide h3 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .stack-slide p {
    font-size: 1rem;
  }

  .editorial-band p {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }
}
