:root {
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --sage: #5a6b4a;
  --sage-light: #8a9e78;
  --sage-mid: #8c9e78;
  --sage-dark: #3d4d2f;
  --earth: #8b6e4e;
  --earth-light: #c4a882;
  --charcoal: #2c2c28;
  --text-muted: #6b6b60;
  --white: #fdfcf8;
  --border: rgba(90, 107, 74, 0.18);
  --line-soft: rgba(90, 107, 74, 0.16);
  --beige-panel: #e9e1d4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  cursor: pointer;
}

.section {
  display: none;
}

.section.active {
  display: block;
}

.section-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.1;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 14px;
}

.section-sub {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

/* NAV */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--sage-dark);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.nav-logo span {
  color: var(--earth);
  font-style: italic;
}

.nav-logo img,
.brand-logo-img {
  max-height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
}

.nav-cta:hover {
  background: var(--sage-dark);
  color: var(--white) !important;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 68px);
}

.hero-content {
  background: var(--cream);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 0.98;
  color: var(--sage-dark);
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-title em {
  color: var(--earth);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 34px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  border: none;
  padding: 15px 26px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(90, 107, 74, 0.06);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(90, 107, 74, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--sage-dark);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--earth);
}

.hero-visual {
  background: var(--cream-dark);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SLIDER */
.slider-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(44, 44, 40, 0.08);
  background: #d7d1c3;
}

.slider-after,
.slider-before {
  position: absolute;
  inset: 0;
}

.slider-after img,
.slider-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(253, 252, 248, 0.95);
  z-index: 3;
  transform: translateX(-50%);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(90, 107, 74, 0.14);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: rgba(44, 44, 40, 0.28);
  padding: 7px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
}

.slider-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.slider-ph-before {
  background: #cfc7ba;
  color: #7a705f;
}

.slider-ph-after {
  background: #91ab7a;
  color: #31471c;
}

/* HOME MINI HOW IT WORKS */
.mini-hiw--exact {
  background: #f7f4ee;
  padding: 78px 40px 84px;
}

.mini-hiw-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.mini-hiw-title {
  font-size: 50px;
  line-height: 1.06;
  margin-bottom: 18px;
}

.mini-hiw-sub {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 54px;
}

.home-steps-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 18px;
}

.home-steps-line {
  position: absolute;
  top: 58px;
  left: 11%;
  right: 11%;
  height: 1px;
  background: rgba(90, 107, 74, 0.2);
}

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  position: relative;
}

.home-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-step-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #92a57f;
  background: #f7f4ee;
  color: var(--sage-dark);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.home-step h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.18;
  color: var(--sage-dark);
  margin-bottom: 14px;
  max-width: 230px;
}

.home-step p {
  max-width: 245px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 14px;
}

.home-step-tag {
  display: inline-block;
  background: #e7dcc8;
  color: #9b7449;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  min-width: 0;
}

/* PACKAGES */
.pkg-section {
  background: var(--cream);
  padding: 80px 40px;
}

.pkg-card {
  max-width: 760px;
  margin: 36px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 34px 34px 28px;
}

.pkg-label {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 8px;
}

.pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.15;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.pkg-tagline {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

.pkg-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.pkg-includes-label {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 14px;
}

.pkg-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.pkg-del {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.check {
  color: var(--sage);
  font-weight: 700;
  line-height: 1.2;
}

.lot-label {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 14px;
}

.lot-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.lot-btn {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 18px 18px 16px;
  cursor: pointer;
  transition: 0.2s ease;
  background: var(--white);
}

.lot-btn:hover {
  border-color: var(--sage-light);
}

.lot-btn.selected {
  border-color: var(--sage);
  background: #f0f4eb;
}

.lot-btn-size {
  font-size: 13px;
  font-weight: 700;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 2px;
}

.lot-btn-desc {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.lot-pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.lot-price {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--sage-dark);
}

.lot-orig {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.lot-save {
  font-size: 11px;
  background: #e8f0e0;
  color: var(--sage-dark);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
}

.pkg-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.pkg-note a {
  color: var(--earth);
  text-decoration: none;
}

.pkg-note a:hover {
  text-decoration: underline;
}

.add-cart {
  width: 100%;
  background: var(--sage);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 2px;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s;
}

.add-cart:hover {
  background: var(--sage-dark);
}

.cart-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* HOW IT WORKS EXACT */
.hiw-section {
  background: #f7f4ee;
  padding: 70px 0 82px;
}

.hiw-header {
  padding: 6px 40px 18px;
}

.hiw-title {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hiw-sub {
  max-width: 760px;
  font-size: 16px;
}

.hiw-timeline {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 44px 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  column-gap: 24px;
  padding-bottom: 54px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(90, 107, 74, 0.18);
}

.timeline-item--last::before {
  bottom: 42px;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-dot--earth {
  background: #9b7449;
}

.timeline-body {
  padding-top: 1px;
  max-width: 900px;
}

.timeline-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.12;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.timeline-copy,
.timeline-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 860px;
}

.timeline-intro {
  margin-bottom: 10px;
}

.timeline-checklist {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}

.timeline-check-mark {
  min-width: 14px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--sage);
  font-weight: 700;
  margin-top: 1px;
}

.timeline-check-item.is-optional .timeline-check-mark {
  color: #b18453;
}

.timeline-check-copy {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.timeline-check-copy em {
  color: var(--text-muted);
  font-style: italic;
}

.timeline-callout {
  margin-top: 18px;
  background: var(--beige-panel);
  padding: 18px 20px;
  border-radius: 4px;
  max-width: 860px;
}

.timeline-callout-strong {
  font-size: 17px;
  line-height: 1.45;
  color: var(--sage-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-callout-subtext {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* GALLERY */
.gallery-section {
  background: var(--white);
  padding: 80px 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 36px auto 0;
}

.gallery-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}

.gallery-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-imgs img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.gallery-ph {
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-ph--before {
  background: #c5bfb0;
  color: #8b7d6b;
}

.gallery-ph--after {
  background: #8fac74;
  color: #3d5a20;
}

.gallery-ph span {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-meta {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
}

.gallery-style {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-loc {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.gallery-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  background: var(--cream);
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 2px;
}

.gallery-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 36px;
  font-style: italic;
}

/* ABOUT */
.about-section {
  background: var(--cream);
  padding: 80px 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--sage-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title em {
  color: var(--earth);
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  background: var(--white);
  border-left: 3px solid var(--sage-light);
  padding: 18px 20px;
  border-radius: 0 4px 4px 0;
}

.pillar h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--sage-dark);
  padding: 40px;
  text-align: center;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo span {
  color: var(--earth-light);
  font-style: italic;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-email {
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .mini-hiw-title {
    font-size: 44px;
  }

  .home-step h3 {
    font-size: 22px;
  }

  .timeline-body h3 {
    font-size: 26px;
  }
}

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

  .hero-title {
    font-size: 54px;
  }

  .home-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 46px;
  }

  .home-steps-line {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 0 20px;
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-content,
  .hero-visual,
  .pkg-section,
  .gallery-section,
  .about-section,
  .mini-hiw--exact,
  .hiw-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hiw-timeline {
    padding-left: 24px;
    padding-right: 24px;
  }

  .gallery-grid,
  .about-grid,
  .pkg-deliverables,
  .lot-options {
    grid-template-columns: 1fr;
  }

  .home-steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mini-hiw-title {
    font-size: 38px;
  }

  .home-step h3 {
    font-size: 24px;
    max-width: 520px;
  }

  .home-step p {
    max-width: 520px;
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 46px;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
    column-gap: 18px;
    padding-bottom: 42px;
  }

  .timeline-item::before {
    left: 16px;
  }

  .timeline-dot {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .timeline-body h3 {
    font-size: 24px;
  }

  .timeline-copy,
  .timeline-intro,
  .timeline-check-copy,
  .timeline-callout-subtext {
    font-size: 15px;
  }

  .timeline-callout-strong {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .slider-wrap {
    aspect-ratio: 4 / 5.4;
  }

  .pkg-card {
    padding: 24px 20px 22px;
  }

  .pkg-name,
  .about-title,
  .section-title {
    font-size: 28px;
  }

  .mini-hiw-title {
    font-size: 32px;
  }

  .home-step-circle {
    width: 68px;
    height: 68px;
    font-size: 22px;
    margin-bottom: 22px;
  }

  .home-step h3 {
    font-size: 22px;
  }

  .home-step p {
    font-size: 15px;
  }

  .timeline-body h3 {
    font-size: 22px;
  }

  .footer {
    padding: 32px 20px;
  }
}

/* Checkout form */
.checkout-fields {
margin-top: 20px;
margin-bottom: 18px;
display: grid;
gap: 14px;
}

.checkout-row {
display: grid;
gap: 6px;
}

.checkout-row label {
font-size: 14px;
color: var(--sage-dark);
font-weight: 700;
}

.checkout-row input,
.checkout-row textarea {
width: 100%;
padding: 12px 14px;
border: 1px solid rgba(90, 107, 74, 0.18);
border-radius: 10px;
font: inherit;
background: #fff;
color: var(--charcoal);
}

.checkout-row textarea {
resize: vertical;
min-height: 110px;
}

.checkout-row input:focus,
.checkout-row textarea:focus {
outline: none;
border-color: var(--sage);
box-shadow: 0 0 0 3px rgba(90, 107, 74, 0.08);
}

.simple-page-wrap {
min-height: 100vh;
background: var(--cream);
padding: 56px 20px;
}

.simple-card {
max-width: 760px;
margin: 0 auto;
background: var(--white);
border: 1px solid var(--border);
padding: 42px 32px;
}

.simple-title {
margin-bottom: 18px;
}

.simple-copy {
color: var(--text-muted);
font-size: 16px;
line-height: 1.8;
text-align: center;
max-width: 620px;
margin: 0 auto 12px;
}

.simple-actions {
margin-top: 28px;
display: flex;
justify-content: center;
}

.simple-link-btn {
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}

.questionnaire-wrap {
padding-top: 40px;
padding-bottom: 40px;
}

.questionnaire-card {
max-width: 840px;
}

.questionnaire-form {
margin-top: 28px;
display: grid;
gap: 16px;
}

@media (max-width: 640px) {
.simple-card {
  padding: 30px 20px;
}
}
