:root {
  --green: #00b67f;
  --green-deep: #004f32;
  --ink: #192128;
  --muted: #56616b;
  --bg: #f2ede4;
  --card: #fffdf8;
  --beige: #efe7d8;
  --line: rgba(0, 90, 57, 0.14);
  --shadow: 0 34px 74px rgba(25, 33, 40, 0.14), 0 10px 26px rgba(0, 79, 50, 0.06);
  --soft-shadow: 0 22px 58px rgba(25, 33, 40, 0.075), 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Instrument Serif", Georgia, serif;
  --radius-lg: 18px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 182, 127, 0.065), transparent 23%),
    radial-gradient(circle at 11% 25%, rgba(232, 214, 184, 0.72), transparent 22%),
    radial-gradient(circle at 50% 88%, rgba(210, 190, 158, 0.26), transparent 28%),
    linear-gradient(180deg, #faf7f0 0%, #f2ede4 58%, #eee7da 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.home-page,
body.faq-page,
body.how-page,
body.request-page {
  position: relative;
  overflow-x: hidden;
  background: #f2ede4;
}

body.home-page::before,
body.faq-page::before,
body.how-page::before,
body.request-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(252, 247, 237, 0.08), rgba(238, 231, 218, 0.16));
  background-size: auto, cover;
  background-position: center, center top;
  background-repeat: no-repeat;
  opacity: 0.98;
}

body.home-page::before {
  background-image:
    linear-gradient(180deg, rgba(252, 247, 237, 0.02), rgba(238, 231, 218, 0.08)),
    url("assets/home-fabric-background.png");
  background-position: center, center top;
}

body.how-page::before {
  background-image:
    linear-gradient(180deg, rgba(252, 247, 237, 0.03), rgba(238, 231, 218, 0.12)),
    url("assets/how-fabric-background.png");
  background-position: center, center top;
}

body.faq-page::before {
  background-image:
    linear-gradient(180deg, rgba(252, 247, 237, 0.03), rgba(238, 231, 218, 0.12)),
    url("assets/faq-fabric-background.png");
  background-position: center, center top;
}

body.request-page::before {
  background-image:
    linear-gradient(180deg, rgba(252, 247, 237, 0.03), rgba(238, 231, 218, 0.12)),
    url("assets/faq-fabric-background.png");
  background-position: center, center top;
}

body.how-page::after {
  content: "";
  position: fixed;
  right: 26%;
  top: 2%;
  width: 260px;
  height: 310px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  background: url("assets/flower-sprig-photo.png") center / contain no-repeat;
  transform: rotate(15deg);
}

body.faq-page::after {
  content: "";
  position: fixed;
  right: 16%;
  top: 4%;
  width: 310px;
  height: 350px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.54;
  background: url("assets/flower-sprig-photo.png") center / contain no-repeat;
  transform: rotate(12deg);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 42px 58px 12px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 5;
}

.wordmark {
  width: 128px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  color: var(--green-deep);
  text-decoration: none;
  filter: drop-shadow(0 9px 24px rgba(0, 182, 127, 0.08));
}

.wordmark sewna-logo,
.wordmark__svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 3.4vw, 58px);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav__current {
  color: var(--green-deep);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.faq-page .social-links,
.how-page .social-links {
  grid-column: 3;
  justify-self: end;
}

.faq-page .site-nav,
.how-page .site-nav {
  justify-content: flex-start;
  gap: 56px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #202932;
  text-decoration: none;
}

.social-links svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.72;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .social-icon-x {
  width: 31px;
  height: 31px;
  fill: currentColor;
  stroke: none;
}

.menu-button {
  display: none;
}

main {
  width: min(100%, 1840px);
  margin: 0 auto;
  padding: 0 54px 58px;
}

.home-page main {
  position: relative;
  z-index: 1;
}

.faq-page main {
  position: relative;
  z-index: 1;
}

.how-page main {
  position: relative;
  z-index: 1;
}

.request-page main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(660px, 0.88fr) minmax(740px, 1fr);
  align-items: center;
  gap: 48px;
}

.hero__copy {
  padding-left: 0;
  padding-bottom: 16px;
}

.hero h1 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: clamp(4.9rem, 5.28vw, 6.22rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 44px rgba(0, 79, 50, 0.08);
}

.hero h1 em,
.connection-card__header h2 em {
  font-family: "Instrument Serif", var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.hero-title__outfits,
.hero-title__doorstep {
  display: inline;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
}

.drawn-rule {
  display: block;
  width: 150px;
  height: 15px;
  margin: 21px 0 23px;
  background: radial-gradient(ellipse at 50% 58%, rgba(0, 79, 50, 0.98) 0 58%, transparent 60%);
  clip-path: polygon(0 58%, 13% 37%, 32% 31%, 57% 42%, 76% 33%, 100% 47%, 100% 63%, 74% 55%, 53% 64%, 30% 52%, 12% 62%, 0 72%);
}

.hero__rule {
  display: block;
  width: 44px;
  height: 2px;
  margin: 31px 0 30px;
  background: var(--green-deep);
}

.hero__copy p {
  max-width: 650px;
  margin: 0;
  color: #515860;
  font-family: var(--font-sans);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.58;
}

.hero__copy p + p {
  margin-top: 17px;
}

@media (min-width: 1101px) {
  .home-page .hero__copy p {
    max-width: none;
    white-space: nowrap;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 43px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(15, 59, 46, 0.9);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  list-style: none;
  position: relative;
  z-index: 3;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.hero-trust li + li::before {
  display: none;
}

.hero-trust svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-mobile-links,
.page-mobile-links {
  display: none;
}

.button {
  min-height: 62px;
  min-width: 244px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 10px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 1.14rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(180deg, #00633f, var(--green-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 79, 50, 0.24);
}

.button--secondary {
  min-width: 298px;
  border: 1.5px solid rgba(0, 90, 57, 0.72);
  color: var(--green-deep);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(250, 246, 238, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--green-deep);
  box-shadow: 0 14px 32px rgba(0, 90, 57, 0.08);
}

.hero__showcase {
  min-height: 608px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: translateX(-12px);
  isolation: isolate;
}

.hero__showcase::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 4px;
  height: 172px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(25, 33, 40, 0.16), transparent 66%),
    radial-gradient(ellipse at center, rgba(0, 79, 50, 0.1), transparent 70%);
  filter: blur(20px);
  opacity: 0.68;
  pointer-events: none;
  z-index: -1;
}

.hero__showcase::after {
  content: "";
  position: absolute;
  inset: 0 0 2%;
  border-radius: 45%;
  background: radial-gradient(circle, rgba(0, 182, 127, 0.08), transparent 60%);
  filter: blur(18px);
  opacity: 1;
  z-index: -2;
}

.hero-mockup__frame {
  width: min(100%, 930px);
  aspect-ratio: 1535 / 1024;
  position: relative;
}

.hero-mockup__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 42px 62px rgba(0, 0, 0, 0.12));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 56%, rgba(0, 0, 0, 0.86) 68%, transparent 88%);
  mask-image: radial-gradient(ellipse at center, #000 0 56%, rgba(0, 0, 0, 0.86) 68%, transparent 88%);
  transform: translateY(4px);
}

@media (min-width: 1280px) {
  .home-page {
    min-height: 100vh;
    overflow-x: hidden;
  }

  .home-page .site-header {
    height: 80px;
    grid-template-columns: 250px 1fr 250px;
    padding: 26px 66px 6px;
  }

  .home-page .site-nav {
    justify-content: flex-start;
    gap: 56px;
  }

  .home-page main {
    width: min(100%, 1680px);
    display: block;
    padding: 0 clamp(92px, 7.6vw, 146px) 0;
  }

  .home-page .hero {
    position: relative;
    z-index: 2;
    min-height: max(560px, calc(100vh - 300px));
    grid-template-columns: minmax(500px, 0.8fr) minmax(520px, 1fr);
    gap: clamp(34px, 3.2vw, 56px);
    align-items: center;
    margin-bottom: clamp(10px, 1.6vh, 18px);
    padding-top: clamp(22px, 3vh, 38px);
  }

  .home-page .hero__copy {
    max-width: 620px;
    padding-bottom: clamp(0px, 0.8vh, 8px);
    transform: translateY(2.2vh);
  }

  .home-page .hero h1 {
    font-size: clamp(4.25rem, 4.45vw, 5.45rem);
    line-height: 0.96;
  }

  .home-page .hero__rule {
    margin: clamp(18px, 2.4vh, 26px) 0 clamp(18px, 2.4vh, 26px);
  }

  .home-page .hero__copy p {
    font-size: clamp(1.12rem, 1.15vw, 1.28rem);
    line-height: 1.54;
  }

  .home-page .hero__copy p + p {
    margin-top: clamp(17px, 2.4vh, 24px);
  }

  .home-page .hero__actions {
    flex-wrap: nowrap;
    gap: clamp(20px, 2vw, 28px);
    margin-top: clamp(26px, 3.5vh, 36px);
  }

  .home-page .button {
    min-height: clamp(52px, 5.8vh, 60px);
    min-width: 270px;
    padding-inline: 28px;
  }

  .home-page .button--primary {
    min-width: 284px;
  }

  .home-page .button--secondary {
    min-width: 274px;
  }

  .home-page .hero__showcase {
    min-height: 0;
    height: min(47vh, 500px);
    justify-content: flex-start;
    transform: translateY(2vh);
    padding: 0 clamp(18px, 1.4vw, 28px);
  }

  .home-page .hero__showcase::before {
    left: 9%;
    right: 9%;
    bottom: -8px;
    height: 130px;
  }

  .home-page .hero__showcase::after {
    inset: 3% 8% 7%;
  }

  .home-page .hero-mockup__frame {
    width: min(100%, 850px);
    max-height: 100%;
  }

  .home-page .hero-mockup__image {
    transform: none;
  }

  .home-page .connection-card {
    left: 50%;
    width: 100vw;
    margin-top: 0;
    min-height: 0;
    position: relative;
    z-index: 1;
    transform: translateX(-50%);
  }

  .home-page .connection-card__header {
    margin-bottom: clamp(96px, 10vh, 124px);
  }

  .home-page .connection-card__header h2 {
    font-size: clamp(2.05rem, 2.35vw, 2.95rem);
  }

  .home-page .connection-card__header p {
    margin-top: clamp(7px, 1.1vh, 12px);
    font-size: clamp(0.96rem, 1vw, 1.12rem);
  }

  .home-page .connection-content {
    padding-top: clamp(82px, 8.5vh, 104px);
    padding-bottom: clamp(18px, 2.2vh, 28px);
  }

  .home-page .use-case {
    min-height: clamp(98px, 11.6vh, 120px);
    grid-template-columns: clamp(64px, 6.4vh, 76px) minmax(0, 1fr);
    gap: clamp(18px, 1.7vw, 26px);
    padding: 0 clamp(30px, 2.5vw, 44px);
  }

  .home-page .use-case__icon {
    width: clamp(62px, 6.6vh, 76px);
    height: clamp(62px, 6.6vh, 76px);
  }

  .home-page .use-case__icon svg {
    width: clamp(31px, 3.35vh, 38px);
    height: clamp(31px, 3.35vh, 38px);
  }

  .home-page .use-case h3 {
    font-size: clamp(0.9rem, 0.9vw, 1.01rem);
    line-height: 1.3;
  }

  .home-page .use-case p {
    margin-top: clamp(8px, 1.1vh, 12px);
    font-size: clamp(0.78rem, 0.76vw, 0.88rem);
    line-height: 1.52;
  }
}

.connection-card {
  position: relative;
  overflow: hidden;
  left: 50%;
  width: 100vw;
  margin: 34px auto 0;
  min-height: 360px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.wave-background {
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 2px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.wave-background svg {
  display: block;
  width: 100%;
  height: 100%;
}

.flower-decoration {
  position: absolute;
  left: 18px;
  bottom: 10px;
  width: 248px;
  height: 228px;
  pointer-events: none;
  opacity: 0.46;
  background: url("assets/flower-sprig-photo.png") left bottom / contain no-repeat;
  filter: drop-shadow(18px 22px 26px rgba(66, 58, 40, 0.22));
  mix-blend-mode: multiply;
  transform: rotate(-7deg);
  z-index: 1;
}

.connection-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1390px);
  min-height: inherit;
  margin: 0 auto;
  padding: 40px 48px 36px;
}

.connection-card__header {
  margin: 0 auto 42px;
  text-align: center;
}

.connection-card__header h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.1vw, 3.55rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.connection-card__header p {
  max-width: 900px;
  margin: 10px auto 0;
  color: #46525e;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
}

.use-case-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.use-case {
  min-height: 130px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding: 0 34px;
  text-align: left;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.use-case:first-child {
  border-left: 0;
}

.use-case:last-child {
  border-right: 0;
}

.use-case__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #006a45, var(--green-deep));
  color: #f9f3e8;
  box-shadow: 0 13px 26px rgba(0, 79, 50, 0.15);
}

.use-case__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}

.use-case h3 {
  max-width: 245px;
  margin: 0;
  color: #202932;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.34;
  min-height: 2.68em;
}

.use-case p {
  max-width: 260px;
  margin: 10px 0 0;
  color: #515c66;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.56;
}

.how-page .site-header {
  padding-top: 34px;
}

.hiw-main {
  width: min(100%, 1210px);
  padding: 44px 46px 74px;
  position: relative;
  isolation: isolate;
}

.hiw-main::before {
  content: "";
  position: absolute;
  top: -28px;
  right: 42px;
  width: min(52vw, 610px);
  height: 330px;
  z-index: -1;
  pointer-events: none;
  border-radius: 40px;
  opacity: 0.88;
  background-image:
    linear-gradient(180deg, rgba(255, 250, 241, 0.34), rgba(255, 250, 241, 0.02)),
    url("assets/how-fabric-background.png");
  background-size: auto, cover;
  background-position: center, center top;
  background-repeat: no-repeat;
  filter: drop-shadow(0 28px 54px rgba(25, 33, 40, 0.04));
}

.hiw-main::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 320px;
  width: 210px;
  height: 225px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.56;
  background: url("assets/flower-sprig-photo.png") center / contain no-repeat;
  transform: rotate(18deg);
}

.hiw-hero {
  max-width: 1180px;
  min-height: 280px;
  margin: 0 auto 44px;
  padding-top: 20px;
  text-align: left;
}

.hiw-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 5.1vw, 6.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 44px rgba(0, 79, 50, 0.08);
}

.hiw-hero h1 em {
  font-family: "Instrument Serif", var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.hiw-hero p {
  margin: 0;
  max-width: 360px;
  color: rgba(25, 33, 40, 0.78);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.hiw-process {
  position: relative;
  display: grid;
  gap: 16px;
}

.hiw-process::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 42px;
  bottom: 42px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 90, 57, 0), rgba(0, 90, 57, 0.16) 12%, rgba(0, 90, 57, 0.16) 88%, rgba(0, 90, 57, 0));
}

.hiw-step {
  min-height: 162px;
  display: grid;
  grid-template-columns: 56px minmax(250px, 350px) minmax(350px, 1fr);
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 79, 50, 0.12);
  border-radius: 13px;
  padding: 25px 36px 24px 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(250, 246, 238, 0.72));
  box-shadow: 0 24px 64px rgba(25, 33, 40, 0.052), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.hiw-step__number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  align-self: start;
  margin-top: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, #f7f6ef, #e2e3d6);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 1.34rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(25, 33, 40, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hiw-step__copy h2 {
  margin: 0;
  color: #202932;
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.08;
}

.hiw-step__copy p {
  max-width: 330px;
  margin: 16px 0 0;
  color: #26313a;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.68;
}

.hiw-step__visual {
  min-height: 118px;
  display: grid;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.hiw-step__visual--inspiration {
  grid-template-columns: minmax(238px, 1fr) 176px;
}

.hiw-step__visual--designer {
  grid-template-columns: minmax(300px, 380px);
}

.hiw-step__visual--review {
  grid-template-columns: minmax(238px, 1fr) 172px;
}

.hiw-step__visual--care,
.hiw-step__visual--delivery {
  grid-template-columns: minmax(190px, 240px) 176px;
}

.hiw-upload-card,
.production-card,
.delivered-card,
.designer-card,
.hiw-image-card {
  border: 1px solid rgba(0, 79, 50, 0.1);
  background: #fffdf8;
  box-shadow: 0 18px 38px rgba(25, 33, 40, 0.072), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hiw-image-card {
  height: 118px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(245, 232, 211, 0.72));
}

.hiw-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hiw-image-card--inspiration img {
  object-position: center 24%;
}

.hiw-image-card--review img {
  object-position: center 42%;
}

.hiw-image-card--craft img {
  object-position: center 42%;
}

.hiw-image-card--package img {
  object-position: center 48%;
}

.hiw-upload-card,
.production-card,
.delivered-card {
  height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 10px;
  color: var(--green-deep);
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(145deg, #f7f6ee, #e9eadf);
}

.hiw-upload-card svg,
.production-card svg,
.delivered-card svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hiw-upload-card strong,
.production-card strong,
.delivered-card strong {
  color: #202932;
  font-size: 0.84rem;
  font-weight: 800;
}

.hiw-upload-card small,
.delivered-card small {
  color: #56616b;
  font-size: 0.72rem;
  font-weight: 700;
}

.designer-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 70px 1fr 44px;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.86));
}

.designer-avatar {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(0, 79, 50, 0.12);
  background: #f6ebdc;
  box-shadow: 0 12px 28px rgba(25, 33, 40, 0.07);
}

.designer-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.designer-card small {
  color: #56616b;
  font-size: 0.7rem;
  font-weight: 700;
}

.designer-card h3 {
  margin: 2px 0 11px;
  color: #202932;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
}

.designer-card h3 span {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  vertical-align: -1px;
}

.designer-card h3 span::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.designer-card p {
  margin: 0;
  padding-top: 9px;
  border-top: 1px solid rgba(0, 90, 57, 0.12);
  color: #26313a;
  font-size: 0.71rem;
  font-weight: 600;
  line-height: 1.48;
}

.designer-chat {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 90, 57, 0.13);
  border-radius: 50%;
  color: var(--green-deep);
  background: #fffdf8;
  box-shadow: 0 12px 24px rgba(25, 33, 40, 0.06);
}

.designer-chat svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-notes {
  display: grid;
  gap: 12px;
  align-content: center;
}

.review-notes span,
.review-notes strong {
  display: block;
  border-radius: 11px;
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(25, 33, 40, 0.055);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.review-notes span {
  color: #26313a;
  background: #fffdf8;
}

.review-notes strong {
  color: #fff;
  background: linear-gradient(135deg, #68a982, #3f8a61);
  position: relative;
}

.review-notes strong::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 18px;
  height: 18px;
  border-radius: 0 0 12px 0;
  background: inherit;
}

.delivered-card {
  color: var(--green-deep);
}

.hiw-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border: 1px solid rgba(0, 79, 50, 0.12);
  border-radius: 13px;
  background:
    radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.84), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(250, 246, 238, 0.72));
  box-shadow: 0 24px 62px rgba(25, 33, 40, 0.052), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  overflow: hidden;
}

.hiw-trust article {
  min-height: 146px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 24px 26px;
  text-align: center;
  border-right: 1px solid rgba(0, 90, 57, 0.12);
}

.hiw-trust article:last-child {
  border-right: 0;
}

.hiw-trust span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-deep);
}

.hiw-trust svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hiw-trust h2 {
  margin: 0;
  color: #202932;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.3;
}

.hiw-trust p {
  max-width: 150px;
  margin: 0;
  color: #26313a;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.65;
}

.hiw-cta {
  min-height: 128px;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(340px, auto) minmax(190px, 0.55fr);
  gap: 30px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(0, 79, 50, 0.12);
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 255, 255, 0.84), transparent 30%),
    repeating-linear-gradient(104deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 7px),
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(239, 230, 212, 0.62));
  box-shadow: 0 20px 54px rgba(25, 33, 40, 0.052), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.hiw-cta__copy {
  padding: 24px 0 24px 44px;
  position: relative;
  z-index: 1;
}

.hiw-cta h2 {
  max-width: 360px;
  margin: 0;
  color: #202932;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.02;
}

.hiw-cta h2 em {
  font-family: "Instrument Serif", var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.hiw-cta p {
  margin: 10px 0 0;
  color: #26313a;
  font-size: 0.82rem;
  font-weight: 700;
}

.hiw-cta__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.hiw-cta .button {
  min-width: 156px;
  min-height: 47px;
  border-radius: 7px;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.82rem;
}

.hiw-cta .button--secondary {
  min-width: 176px;
}

.hiw-cta__leaf {
  width: 190px;
  height: 108px;
  justify-self: end;
  align-self: end;
  margin: 0 24px 0 0;
  position: relative;
  z-index: 1;
  background: url("assets/leaf-sprig.svg") center / contain no-repeat;
}

.hiw-cta__leaf span {
  display: none;
}

.hiw-cta__art {
  height: 100%;
  min-height: 268px;
  position: relative;
  overflow: hidden;
}

.hiw-cta__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.hiw-cta__box-logo {
  position: absolute;
  left: 37%;
  top: 25%;
  color: #007c58;
  font-family: "Baloo 2", "Nunito Sans", var(--font-sans);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: rotate(-12deg);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
}

.faq-main {
  width: min(100%, 1540px);
  padding: 78px 58px 82px;
}

.request-main {
  width: min(100%, 1220px);
  padding: 72px 58px 88px;
}

.request-hero {
  width: min(100%, 780px);
  margin: 0 auto 30px;
  text-align: center;
}

.request-hero h1 {
  margin: 0;
  color: #202932;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 3.55vw, 4.55rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58), 0 18px 44px rgba(0, 79, 50, 0.08);
}

.request-hero .drawn-rule {
  margin: 22px auto 24px;
}

.request-hero p {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  color: #515c66;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.request-form-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid rgba(0, 79, 50, 0.1);
  border-radius: 14px;
  padding: clamp(12px, 2vw, 22px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.88), transparent 38%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(250, 246, 238, 0.7));
  box-shadow: 0 24px 70px rgba(25, 33, 40, 0.052), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.request-form-shell [data-youform-embed] {
  width: 100%;
  min-height: 700px;
}

.request-form-shell iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: 0;
}

.faq-hero {
  max-width: 1210px;
  margin: 0 auto 34px;
  text-align: left;
}

.faq-hero h1 {
  margin: 0;
  max-width: 580px;
  color: #202932;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 3.55vw, 4.55rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58), 0 18px 44px rgba(0, 79, 50, 0.08);
}

.faq-hero::after {
  content: "";
  display: block;
  width: 148px;
  height: 14px;
  margin-top: 22px;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(0, 79, 50, 0.98) 0 58%, transparent 60%);
  clip-path: polygon(0 58%, 13% 37%, 32% 31%, 57% 42%, 76% 33%, 100% 47%, 100% 63%, 74% 55%, 53% 64%, 30% 52%, 12% 62%, 0 72%);
}

.faq-panel {
  width: min(100%, 1220px);
  margin: 0 auto;
  border: 1px solid rgba(0, 79, 50, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.86), transparent 38%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(250, 246, 238, 0.66));
  box-shadow: 0 24px 70px rgba(25, 33, 40, 0.05), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.faq-list {
  padding: 20px 56px 18px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 90, 57, 0.12);
  transition: background-color 0.2s ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item:hover {
  background: rgba(255, 253, 248, 0.34);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 32px;
  border: 0;
  padding: 18px 6px 18px 0;
  background: transparent;
  color: #26313a;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question > span:nth-child(2) {
  max-width: 760px;
}

.faq-number {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: var(--green-deep);
  border-right: 1px solid rgba(0, 90, 57, 0.16);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-item.open .faq-question {
  color: var(--green-deep);
}

.faq-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: var(--green-deep);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-icon::before {
  width: 27px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 27px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-answer p {
  max-width: 820px;
  margin: 0 72px 0 104px;
  padding: 0 0 24px 18px;
  border-left: 2px solid rgba(0, 79, 50, 0.42);
  color: #515c66;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.72;
}

.faq-item.open .faq-answer {
  max-height: 260px;
}

.faq-contact-card {
  width: min(100%, 1220px);
  min-height: 116px;
  display: grid;
  grid-template-columns: 84px minmax(280px, 1fr) minmax(220px, 0.62fr) 180px;
  align-items: center;
  gap: 32px;
  margin: 26px auto 0;
  border: 1px solid rgba(0, 79, 50, 0.1);
  border-radius: 13px;
  padding: 22px 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.78), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(239, 230, 212, 0.56));
  box-shadow: 0 20px 54px rgba(25, 33, 40, 0.048), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  text-align: left;
}

.faq-contact-card span {
  display: block;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

.faq-contact-card .faq-contact-card__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 79, 50, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.44);
}

.faq-contact-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(1px);
}

.faq-contact-card p {
  max-width: 640px;
  margin: 10px 0 0;
  color: #515c66;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.62;
}

@media (min-width: 1101px) {
  .faq-contact-card p {
    max-width: 660px;
  }
}

.faq-contact-card a {
  justify-self: center;
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.faq-contact-card a span {
  display: inline;
  margin-left: 14px;
  font-family: inherit;
  font-size: 1.18rem;
  font-weight: inherit;
}

.faq-contact-card__waves {
  width: 160px;
  height: 48px;
  justify-self: end;
  opacity: 0.42;
  background:
    radial-gradient(100% 78% at 50% -16%, transparent 66%, rgba(125, 103, 75, 0.52) 68% 70%, transparent 72%) 0 0 / 100% 16px repeat-y;
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 170px 1fr 170px;
    padding-inline: 38px;
  }

  main {
    padding-inline: 38px;
  }

  .faq-main {
    padding-inline: 38px;
  }

  .request-main {
    padding-inline: 38px;
  }

  .hiw-main {
    padding-inline: 38px;
  }

  .hiw-step {
    grid-template-columns: 54px minmax(235px, 330px) minmax(340px, 1fr);
    gap: 24px;
    padding-inline: 24px 28px;
  }

  .hero {
    grid-template-columns: minmax(330px, 0.72fr) minmax(570px, 1fr);
  }

  .hero__copy {
    padding-left: 20px;
  }

  .hero-mockup__frame {
    width: min(100%, 860px);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 26px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 34px;
  }

  .hero__copy {
    padding: 0;
    max-width: 780px;
  }

  .hero__showcase {
    min-height: clamp(500px, 67vw, 640px);
    transform: none;
  }

  .connection-card {
    margin-top: 20px;
    padding-inline: 30px;
    border-radius: 36px 36px 0 0;
  }

  .connection-card__header {
    margin-bottom: 28px;
  }

  .faq-main {
    padding-top: 48px;
  }

  .request-main {
    padding-top: 48px;
  }

  .faq-hero {
    margin-bottom: 38px;
  }

  .hiw-main {
    width: min(100%, 980px);
    padding-top: 42px;
  }

  .hiw-main::before {
    right: -40px;
    width: min(80vw, 520px);
  }

  .hiw-main::after {
    right: 180px;
  }

  .hiw-hero {
    margin-bottom: 38px;
  }

  .hiw-step {
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
    min-height: 0;
    padding: 26px 30px 28px 24px;
  }

  .hiw-step__visual {
    grid-column: 2;
    justify-content: start;
    margin-top: 8px;
  }

  .hiw-step__copy p {
    max-width: 520px;
  }

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

  .hiw-trust article:nth-child(2) {
    border-right: 0;
  }

  .hiw-trust article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 90, 57, 0.12);
  }

  .hiw-cta {
    grid-template-columns: minmax(280px, 0.82fr) 1fr;
  }

  .hiw-cta__copy {
    padding-left: 34px;
  }

  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .use-case {
    min-height: 148px;
    padding-inline: 28px;
  }

  .use-case:nth-child(odd) {
    border-left: 0;
  }

  .use-case:nth-child(even) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 820px) {
  .site-header {
    width: 100vw;
    max-width: 100vw;
    padding: 18px 20px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .home-page .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 16px;
  }

  .wordmark {
    width: 118px;
    height: 35px;
    font-size: 2.16rem;
    position: relative;
    z-index: 10;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(0, 90, 57, 0.18);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.82);
    position: relative;
    z-index: 10;
  }

  .menu-button__line {
    width: 18px;
    height: 2px;
    background: var(--green-deep);
    border-radius: 999px;
  }

  .site-nav {
    display: none;
  }

  .social-links {
    display: flex;
    flex: 0 0 auto;
    order: 2;
    gap: 18px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 10;
  }

  .home-page .social-links {
    grid-column: 3;
    justify-self: end;
    width: 78px;
    gap: 14px;
    margin-left: 0;
  }

  .social-links a {
    width: 34px;
    height: 34px;
  }

  .social-links svg {
    width: 31px;
    height: 31px;
    stroke-width: 1.7;
  }

  .social-links .social-icon-x {
    width: 30px;
    height: 30px;
  }

  .menu-button {
    order: 3;
  }

  .home-page .menu-button {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    inset: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(251, 248, 242, 0.97);
    font-size: 1.35rem;
  }

  main {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 10px 20px 42px;
  }

  .home-page main,
  .home-page .hero,
  .home-page .hero__copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .faq-main {
    padding: 38px 20px 48px;
  }

  .request-main {
    padding: 34px 20px 52px;
  }

  .hiw-main {
    padding: 34px 20px 52px;
  }

  .hero {
    padding-top: 14px;
    gap: 22px;
  }

  .home-page .hero__copy {
    min-height: calc(100svh - 110px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12.7vw, 3.38rem);
    line-height: 0.96;
  }

  .hero h1 br {
    display: none;
  }

  .hero-title__outfits,
  .hero-title__doorstep {
    display: block;
  }

  .home-page .hero__copy p {
    max-width: 100%;
    white-space: normal;
  }

  .hero__copy p {
    font-size: 1rem;
    line-height: 1.46;
  }

  .hero__actions {
    width: 100%;
    gap: 12px;
    margin-top: 32px;
  }

  .hero-trust {
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    margin-top: 24px;
    font-size: clamp(0.62rem, 2.2vw, 0.76rem);
    line-height: 1;
    max-width: 100%;
  }

  .hero-trust li {
    gap: 5px;
    min-width: 0;
  }

  .hero-trust li + li::before {
    display: none;
  }

  .hero-trust svg {
    width: 13px;
    height: 13px;
    stroke-width: 1.85;
  }

  .button {
    min-height: 58px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-mobile-links {
    display: flex;
    position: relative;
    z-index: 6;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    width: 100vw;
    max-width: 100vw;
    padding: 20px 32px 0;
    color: var(--green-deep);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .hero-mobile-links {
    display: none;
  }

  .page-mobile-links a {
    color: var(--green-deep);
    text-decoration: none;
  }

  .hero__showcase {
    min-height: auto;
    display: flex;
    margin-top: 10px;
    transform: none;
  }

  .hero-mockup__frame {
    width: 100%;
  }

  .connection-card {
    min-height: 0;
    margin-top: 4px;
  }

  .connection-content {
    padding: 48px 24px 48px;
  }

  .wave-background svg {
    min-height: 100%;
  }

  .flower-decoration {
    left: -96px;
    bottom: auto;
    top: 42px;
    width: 220px;
    height: 250px;
    opacity: 0.16;
  }

  .connection-card__header {
    margin-bottom: 26px;
    text-align: left;
  }

  .connection-card__header h2 {
    font-size: 2.34rem;
    line-height: 1.04;
  }

  .connection-card__header p {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.56;
  }

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

  .faq-hero h1 {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }

  .request-hero {
    margin-bottom: 22px;
  }

  .request-hero h1 {
    max-width: 310px;
    margin-inline: auto;
    font-size: clamp(2.25rem, 9.4vw, 2.7rem);
    white-space: normal;
    text-wrap: balance;
  }

  .request-hero p {
    width: 100%;
    max-width: 280px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .request-form-shell {
    width: 100%;
    border-radius: 12px;
    padding: 8px;
  }

  .request-form-shell [data-youform-embed] {
    min-height: 760px;
  }

  .faq-contact-card {
    margin-top: 18px;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .faq-contact-card span {
    font-size: 1.76rem;
  }

  .faq-contact-card__icon {
    width: 54px;
    height: 54px;
    align-self: start;
  }

  .faq-contact-card a {
    grid-column: 2;
    justify-self: start;
  }

  .faq-contact-card__waves {
    display: none;
  }

  .faq-list {
    padding: 16px 24px 14px;
  }

  .faq-question {
    min-height: 74px;
    gap: 16px;
    grid-template-columns: 45px minmax(0, 1fr) 32px;
    padding: 18px 0;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .faq-number {
    min-height: 26px;
    font-size: 0.76rem;
  }

  .faq-answer p {
    margin: 0 42px 0 61px;
    padding: 0 0 22px 14px;
    font-size: 0.9rem;
  }

  .hiw-hero {
    margin-bottom: 30px;
    min-height: 0;
    padding-top: 6px;
  }

  .hiw-hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.5rem);
  }

  .hiw-hero p {
    font-size: 0.98rem;
  }

  .hiw-main::before,
  .hiw-main::after,
  body.how-page::after,
  body.faq-page::after {
    display: none;
  }

  .hiw-process {
    gap: 14px;
  }

  .hiw-process::before {
    left: 44px;
    top: 36px;
    bottom: 36px;
  }

  .hiw-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    border-radius: 16px;
    padding: 20px 18px 22px;
  }

  .hiw-step__number {
    width: 44px;
    height: 44px;
    font-size: 1.12rem;
  }

  .hiw-step__copy h2 {
    font-size: 1.52rem;
  }

  .hiw-step__copy p {
    margin-top: 11px;
    font-size: 0.87rem;
  }

  .hiw-step__visual {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 5px;
    justify-content: stretch;
  }

  .hiw-step__visual--inspiration {
    grid-template-columns: minmax(170px, 1fr) minmax(126px, 0.72fr);
  }

  .hiw-step__visual--designer {
    grid-template-columns: 1fr;
  }

  .hiw-step__visual--review {
    grid-template-columns: minmax(170px, 1fr) minmax(126px, 0.72fr);
  }

  .hiw-step__visual--care,
  .hiw-step__visual--delivery {
    grid-template-columns: minmax(150px, 1fr) minmax(126px, 0.8fr);
  }

  .designer-card {
    grid-template-columns: 62px 1fr 40px;
  }

  .hiw-trust {
    margin-top: 16px;
    border-radius: 16px;
  }

  .hiw-trust article {
    min-height: 138px;
    padding: 22px 18px;
  }

  .hiw-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 16px;
    border-radius: 16px;
    padding-bottom: 22px;
  }

  .hiw-cta__copy {
    padding: 30px 24px 0;
  }

  .hiw-cta h2 {
    font-size: 2.25rem;
  }

  .hiw-cta__actions {
    justify-content: flex-start;
    padding: 0 24px;
  }

  .hiw-cta__leaf {
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 150px;
    height: 86px;
    margin: 0;
    opacity: 0.74;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
  }

  .use-case,
  .use-case:nth-child(2) {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 18px;
    border-left: 0;
    border-right: 0;
    min-height: 0;
    padding: 0 0 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
  }

  .use-case:nth-child(odd),
  .use-case:nth-child(4) {
    border-left: 0;
    border-right: 0;
  }

  .use-case:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .use-case__icon {
    width: 58px;
    height: 58px;
  }

  .use-case__icon svg {
    width: 29px;
    height: 29px;
  }

  .use-case h3 {
    font-size: 1rem;
    min-height: 0;
  }

  .use-case p {
    margin-top: 9px;
    font-size: 0.88rem;
  }

}

@media (max-width: 430px) {
  .hiw-main {
    padding-inline: 16px;
  }

  .hiw-hero h1 {
    font-size: clamp(3rem, 14vw, 4.05rem);
  }

  .hiw-hero p br {
    display: none;
  }

  .hiw-step {
    padding: 18px 16px 20px;
  }

  .hiw-step__visual--inspiration,
  .hiw-step__visual--review {
    grid-template-columns: 1fr;
  }

  .hiw-step__visual--care,
  .hiw-step__visual--delivery {
    grid-template-columns: 1fr;
  }

  .designer-card {
    grid-template-columns: 56px 1fr;
    position: relative;
    padding-right: 66px;
  }

  .designer-chat {
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .hiw-trust {
    grid-template-columns: 1fr;
  }

  .hiw-trust article,
  .hiw-trust article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 90, 57, 0.12);
  }

  .hiw-trust article:last-child {
    border-bottom: 0;
  }

  .hiw-cta__actions {
    flex-direction: column;
    gap: 12px;
  }

  .hiw-cta .button,
  .hiw-cta .button--secondary {
    width: 100%;
    min-width: 0;
  }

  .hiw-cta__leaf {
    display: none;
  }

  .faq-main {
    padding-inline: 16px;
  }

  .faq-hero h1 {
    font-size: 2.7rem;
  }

  .faq-panel {
    border-radius: 14px;
  }

  .faq-list {
    padding: 10px 18px 8px;
  }

  .faq-question {
    min-height: 70px;
    font-size: 0.98rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .faq-icon::before {
    width: 22px;
  }

  .faq-icon::after {
    height: 22px;
  }

  .faq-contact-card p {
    font-size: 0.93rem;
  }

  .hero__rule {
    margin-block: 20px 22px;
  }

  .hero__copy p + p {
    margin-top: 22px;
  }

}
