:root {
  --red: #b81f2a;
  --deep: #351512;
  --wine: #5b1b16;
  --cream: #fff7e8;
  --paper: #fffaf1;
  --gold: #f2b13d;
  --green: #6d8f3f;
  --ink: #2b201b;
  --muted: #716158;
  --line: rgba(81, 38, 27, 0.14);
  --shadow: 0 22px 70px rgba(63, 29, 20, 0.18);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff8ea;
  background: linear-gradient(180deg, rgba(31, 12, 10, 0.72), rgba(31, 12, 10, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: var(--serif);
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  padding: 8px 12px;
  border-radius: 6px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-button,
.primary-button,
.secondary-button,
.step-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-button:hover,
.primary-button:hover,
.secondary-button:hover,
.step-button:hover,
.outline-button:hover {
  transform: translateY(-1px);
}

.nav-button,
.primary-button,
.step-button {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(184, 31, 42, 0.24);
}

.nav-button {
  background: var(--green);
  box-shadow: 0 12px 24px rgba(109, 143, 63, 0.24);
}

.secondary-button,
.outline-button {
  color: var(--red);
  background: #fff8ea;
  border: 1px solid rgba(184, 31, 42, 0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 96px clamp(18px, 4vw, 56px) 42px;
  color: #fff8ea;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 50%, rgba(255, 221, 121, 0.26), rgba(255, 221, 121, 0) 30%),
    linear-gradient(90deg, rgba(45, 16, 12, 0.84), rgba(83, 21, 15, 0.48) 37%, rgba(62, 20, 12, 0.02) 62%),
    linear-gradient(0deg, rgba(40, 13, 9, 0.6), rgba(40, 13, 9, 0.02) 48%);
  filter: saturate(1.2) contrast(1.08);
  transform: scale(1.04);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
  align-content: center;
  width: min(100%, 1180px);
  min-height: calc(100vh - 138px);
  margin: 0 auto;
}

.header-order-guide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  align-items: stretch;
  margin-top: clamp(320px, 34vh, 420px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 234, 0.52);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(31, 12, 10, 0.28);
  backdrop-filter: blur(18px);
}

.guide-field {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 76px;
  padding: 17px 28px;
  align-content: center;
}

.guide-field:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: rgba(81, 38, 27, 0.12);
}

.guide-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.guide-field strong,
.guide-field select,
.guide-field input,
.guide-time-selects {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.18;
}

.guide-field select,
.guide-field input {
  width: 100%;
  min-width: 0;
  padding: 0 20px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  appearance: none;
}

.guide-time-selects {
  display: grid;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  align-items: center;
  gap: 4px;
}

.guide-time-selects select {
  padding-right: 0;
  text-align: center;
}

.guide-time-selects span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.guide-field input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.guide-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 64px;
  margin: 6px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(109, 143, 63, 0.28);
}

.hero-copy {
  max-width: 760px;
  margin-top: clamp(92px, 16vh, 124px);
  text-align: center;
  transform: translateY(72px);
}

.hero-product-photo {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 9, 7, 0.26);
}

.hero-product-photo img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(1.04) contrast(1.03);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 3.8vw, 50px);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: rgba(255, 248, 234, 0.86);
  font-size: 18px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.trust-chips span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 248, 234, 0.2);
  border-radius: 6px;
  color: #fff8ea;
  background: rgba(255, 248, 234, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.planner-card {
  border: 1px solid rgba(255, 248, 234, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.planner-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 16px;
}

.planner-kicker {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.planner-head h2 {
  margin: 0;
  font-size: 25px;
}

.step-count {
  min-width: max-content;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(184, 31, 42, 0.09);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.progress {
  height: 8px;
  margin: 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(53, 21, 18, 0.1);
}

.progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 220ms ease;
}

.form-step {
  padding: 22px;
}

.form-step h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.helper {
  margin-bottom: 18px;
  color: var(--muted);
}

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

.option-card {
  min-height: 58px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.option-card.active {
  border-color: var(--red);
  background: rgba(184, 31, 42, 0.08);
  color: var(--red);
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.field-grid textarea {
  min-height: 90px;
  resize: vertical;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.step-actions .step-button {
  flex: 1;
}

.recommendations {
  display: grid;
  gap: 12px;
}

.recommendation-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.recommendation-card.active {
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(184, 31, 42, 0.12);
}

.recommendation-card img {
  width: 112px;
  height: 124px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--cream);
}

.recommendation-card h4 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 18px;
}

.recommendation-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.recommendation-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
}

.recommendation-card button {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.custom-package-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(184, 31, 42, 0.2);
  border-radius: 8px;
  background: rgba(184, 31, 42, 0.06);
}

.custom-package-option.active {
  border-color: var(--red);
  background: rgba(184, 31, 42, 0.12);
  box-shadow: 0 12px 28px rgba(184, 31, 42, 0.12);
}

.custom-package-option h4 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 20px;
}

.custom-package-option p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.custom-package-option button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.summary {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
}

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.summary strong {
  text-align: right;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--deep);
}

.proof-strip div {
  padding: 24px clamp(16px, 3vw, 34px);
  background: var(--wine);
  color: #fff8ea;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 24px;
}

.proof-strip span {
  color: rgba(255, 248, 234, 0.72);
  font-weight: 700;
}

.section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 82px max(20px, calc((100% - 1160px) / 2));
  box-sizing: border-box;
  isolation: isolate;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.section::before {
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 250, 241, 0.9), rgba(255, 250, 241, 0.9)),
    url("assets/background-option-2-tile-floral.jpg") center / 340px auto repeat;
  opacity: 0.58;
}

.section::after {
  right: max(-54px, -5vw);
  top: 44px;
  width: clamp(120px, 17vw, 210px);
  aspect-ratio: 736 / 1042;
  background: url("assets/floral-accent-pink.png") center / contain no-repeat;
  opacity: 0.2;
  transform: rotate(8deg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 36px;
  max-width: none;
  align-items: end;
}

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

.steps-grid article,
.package-card,
.testimonial-list blockquote,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(63, 29, 20, 0.08);
}

.steps-grid article {
  padding: 22px;
}

.steps-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.steps-grid p,
.package-card p,
.testimonial-list blockquote,
.faq p,
.final-cta p,
.footer p,
.footer span,
.footer a {
  color: var(--muted);
}

.product-recommendations {
  overflow: hidden;
  background: #e4f0ec;
}

.product-recommendations::before {
  background:
    linear-gradient(rgba(228, 240, 236, 0.78), rgba(228, 240, 236, 0.78)),
    url("assets/background-option-4-turquoise-tile.jpg") center / 280px auto repeat;
}

.product-recommendations::after {
  left: max(-58px, -5vw);
  right: auto;
  top: auto;
  bottom: 36px;
  opacity: 0.18;
  transform: scaleX(-1) rotate(-5deg);
}

.product-recommendations .section-heading .eyebrow,
.product-recommendations .section-heading h2,
.product-recommendations .section-heading p {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    1px 0 0 rgba(255, 255, 255, 0.9),
    -1px 0 0 rgba(255, 255, 255, 0.9),
    0 0 12px rgba(255, 255, 255, 0.96),
    0 5px 22px rgba(255, 255, 255, 0.82);
}

.product-recommendations .section-heading h2 {
  color: var(--green);
}

.product-recommendations .section-heading > p:not(.eyebrow) {
  font-weight: 800;
}

.product-slider {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 22px;
  margin: 0 -20px;
  scroll-padding-left: 20px;
  scroll-snap-type: x mandatory;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 20px;
}

.product-slide {
  flex: 0 0 clamp(274px, 36vw, 336px);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(63, 29, 20, 0.08);
}

.product-slide::before,
.product-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 16px;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.product-slide::before {
  left: 16px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--green);
  border-radius: 8px 0 0;
  box-shadow: inset 8px 8px 0 -5px rgba(184, 31, 42, 0.72);
}

.product-slide::after {
  right: 16px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--green);
  border-radius: 0 8px 0 0;
  box-shadow: inset -8px 8px 0 -5px rgba(184, 31, 42, 0.72);
}

.product-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 9px;
  border: 1px solid rgba(184, 31, 42, 0.28);
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(135deg, var(--red), var(--gold) 48%, var(--green)) border-box;
  box-shadow: inset 0 0 0 4px rgba(255, 248, 234, 0.84);
}

.product-slide-copy {
  min-height: 172px;
  padding: 18px;
}

.product-slide-copy span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.product-slide-copy h3 {
  margin-bottom: 10px;
  line-height: 1.18;
}

.product-slide-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
}

.product-slide-copy p {
  color: var(--muted);
  font-size: 15px;
}

.product-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.product-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 28px rgba(63, 29, 20, 0.12);
}

.product-cta-pricelist {
  background: var(--green);
}

.product-cta-whatsapp {
  background: var(--red);
  box-shadow: 0 14px 28px rgba(184, 31, 42, 0.22);
}

.packages {
  overflow: hidden;
  background: #f7e3df;
}

.packages::before {
  background:
    linear-gradient(rgba(247, 227, 223, 0.8), rgba(247, 227, 223, 0.8)),
    url("assets/background-option-1-floral-grid.jpg") center / 360px auto repeat;
}

.packages::after {
  top: 28px;
  opacity: 0.22;
}

.packages-title {
  color: var(--green);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    1px 0 0 rgba(255, 255, 255, 0.92),
    -1px 0 0 rgba(255, 255, 255, 0.92),
    0 0 14px rgba(255, 255, 255, 0.96),
    0 6px 24px rgba(255, 255, 255, 0.84);
}

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

.package-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.package-card.featured {
  border-color: rgba(184, 31, 42, 0.36);
}

.package-card img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1.04;
  padding: 14px;
  object-fit: contain;
  background:
    linear-gradient(rgba(255, 248, 234, 0.94), rgba(255, 248, 234, 0.94)),
    url("assets/paper-texture.png") center / 420px auto repeat;
}

.package-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 16px 18px 18px;
}

.package-label {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-card strong {
  display: block;
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--green);
  font-size: 18px;
}

.package-menu {
  display: none;
  gap: 7px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.package-menu li {
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(184, 31, 42, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.package-pricelist-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 42px);
}

.package-pricelist-button {
  min-width: min(100%, 280px);
  text-align: center;
  box-shadow: 0 16px 34px rgba(184, 31, 42, 0.18);
}

.package-pricelist-button:hover {
  box-shadow: 0 20px 42px rgba(184, 31, 42, 0.24);
}

.package-custom-button {
  min-width: min(100%, 340px);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(109, 143, 63, 0.2);
}

.package-custom-button:hover {
  box-shadow: 0 20px 42px rgba(109, 143, 63, 0.26);
}

.trust-section {
  position: relative;
  width: 100%;
  padding: 82px max(20px, calc((100% - 1160px) / 2));
  overflow: hidden;
  background-color: #e6edd8;
  background:
    linear-gradient(rgba(230, 237, 216, 0.82), rgba(230, 237, 216, 0.82)),
    url("assets/background-option-2-tile-floral.jpg") center / 360px auto repeat,
    url("assets/paper-texture.png") center / 760px auto repeat,
    #e6edd8;
}

.trust-section::before {
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(230, 237, 216, 0), rgba(230, 237, 216, 0.68) 16%, rgba(230, 237, 216, 0.68) 84%, rgba(230, 237, 216, 0));
  opacity: 1;
}

.trust-section::after {
  right: max(10px, calc((100% - 1160px) / 2 - 74px));
  top: 58px;
  opacity: 0.18;
}

.trust-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.trust-section .section-heading h2 {
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
  color: #2f5a35;
  font-size: 28px;
  line-height: 1.15;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    1px 0 0 rgba(255, 255, 255, 0.92),
    -1px 0 0 rgba(255, 255, 255, 0.92),
    0 0 14px rgba(255, 255, 255, 0.96),
    0 6px 24px rgba(255, 255, 255, 0.84);
}

.trust-section .section-heading > p:not(.eyebrow) {
  font-weight: 800;
}

.trust-layout {
  display: block;
}

.client-logo-panel {
  overflow: hidden;
  margin: 0 0 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(63, 29, 20, 0.08);
}

.client-logo-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-logo-slider {
  overflow: hidden;
  margin: 0 -22px;
  padding: 0 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.client-logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: logo-slide-left 30s linear infinite;
}

.client-logo-track img {
  flex: 0 0 132px;
  width: 132px;
  height: 82px;
  padding: 14px;
  object-fit: contain;
  border: 1px solid rgba(81, 38, 27, 0.1);
  border-radius: 8px;
  background: #fff;
}

@keyframes logo-slide-left {
  from {
    transform: translateX(0);
  }

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

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.client-logo-grid img {
  width: 100%;
  height: 82px;
  padding: 14px;
  object-fit: contain;
  border: 1px solid rgba(81, 38, 27, 0.1);
  border-radius: 8px;
  background: #fff;
}

.social-proof-section {
  margin-top: 32px;
}

.social-proof-section h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.16;
}

.social-proof-carousel {
  display: grid;
  grid-auto-columns: minmax(246px, 78%);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  margin: 0 -2px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.social-proof-carousel::-webkit-scrollbar {
  display: none;
}

.social-proof-media-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(184, 31, 42, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(63, 29, 20, 0.08);
  scroll-snap-align: start;
}

.social-proof-media-card img,
.social-proof-media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof-video-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184, 31, 42, 0.9);
}

.social-proof-video-card::before {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.social-proof-cta {
  width: 100%;
  margin-top: 12px;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(109, 143, 63, 0.2);
}

.social-proof-cta:hover {
  box-shadow: 0 20px 42px rgba(109, 143, 63, 0.26);
}

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

.testimonial-list blockquote {
  margin: 0;
  padding: 22px;
}

.testimonial-list cite {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.customer-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.customer-proof article {
  padding: 20px;
  border: 1px solid rgba(184, 31, 42, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(63, 29, 20, 0.08);
}

.customer-proof span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-proof p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

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

.faq {
  background: #fdeec7;
}

.faq::before {
  background:
    linear-gradient(rgba(253, 238, 199, 0.82), rgba(253, 238, 199, 0.82)),
    url("assets/background-option-4-turquoise-tile.jpg") center / 300px auto repeat;
}

.faq::after {
  left: max(-58px, -5vw);
  right: auto;
  top: 38px;
  opacity: 0.18;
  transform: scaleX(-1) rotate(-7deg);
}

.faq details {
  padding: 18px;
}

.faq summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 12px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 48px max(20px, calc((100% - 1160px) / 2));
  color: #fff8ea;
  background: linear-gradient(135deg, var(--deep), var(--wine));
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 700px;
  color: rgba(255, 248, 234, 0.74);
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 56px max(20px, calc((100% - 1160px) / 2));
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 177, 61, 0.2), rgba(242, 177, 61, 0) 34%),
    linear-gradient(135deg, #24100e 0%, #5f1e20 100%);
  color: #fff8ea;
  isolation: isolate;
  overflow: hidden;
}

.footer-closing-cta {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.footer-closing-cta::before,
.footer-closing-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(110px, 22vw, 210px);
  aspect-ratio: 736 / 1042;
  background: url("assets/floral-accent-pink.png") center / contain no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.footer-closing-cta::before {
  left: max(-64px, -7vw);
  bottom: -50px;
  transform: rotate(-18deg) scaleX(-1);
}

.footer-closing-cta::after {
  right: max(-58px, -6vw);
  top: -58px;
  transform: rotate(16deg);
}

.footer-closing-copy {
  justify-self: center;
}

.footer img {
  width: 72px;
  margin-bottom: 18px;
}

.footer h2 {
  max-width: 360px;
  margin: 0;
  color: #fff8ea;
  font-size: clamp(15px, 4.05vw, 16px);
  line-height: 1.22;
  text-align: center;
}

.footer h2 span {
  display: block;
  color: #fff8ea;
  white-space: nowrap;
}

.footer a.footer-closing-button {
  min-width: min(292px, 100%);
  max-width: 100%;
  font-size: 14px;
  white-space: nowrap;
  justify-content: center;
  text-align: center;
  color: #4a1716;
  background: var(--gold);
  box-shadow: 0 18px 38px rgba(26, 8, 7, 0.28);
}

.footer a.footer-closing-button:hover {
  background: #ffd36f;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 38px max(20px, calc((100% - 1160px) / 2));
  background: #180a09;
  color: rgba(255, 248, 234, 0.86);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(86px, 18vw, 150px);
  aspect-ratio: 736 / 1042;
  background: url("assets/floral-accent-pink.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.site-footer::before {
  left: -42px;
  top: 20px;
  transform: rotate(12deg) scaleX(-1);
}

.site-footer::after {
  right: -44px;
  bottom: -42px;
  transform: rotate(-10deg);
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-footer-brand img {
  width: 66px;
  height: 78px;
  object-fit: contain;
}

.site-footer-brand strong {
  color: #fff8ea;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.06;
  text-transform: capitalize;
}

.site-footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.site-footer-link,
.site-footer-copyright {
  margin: 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: #f2b13d;
}

.site-footer-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer-link:hover {
  color: #fff8ea;
  transform: translateY(-1px);
}

.site-footer-copyright {
  width: min(100%, 520px);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 248, 234, 0.14);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .topbar {
    justify-content: space-between;
  }

  .hero-shell,
  .section-heading.split,
  .trust-layout,
  .final-cta,
  .footer,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy {
    margin-top: 58px;
    transform: translateY(38px);
  }

  .header-order-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(142px, 20vh, 210px);
    border-radius: 16px;
  }

  .guide-field {
    min-height: 68px;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(81, 38, 27, 0.1);
  }

  .guide-field:not(:last-of-type)::after {
    display: none;
  }

  .guide-search {
    grid-column: 1 / -1;
    min-height: 50px;
    margin: 8px;
  }

  .planner-card {
    width: min(100%, 560px);
  }

  .proof-strip,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonial-list {
    grid-template-columns: 1fr;
  }

  .client-logo-grid,
  .customer-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 12px 16px;
  }

  .brand span {
    max-width: 96px;
    line-height: 1.08;
  }

  .brand img {
    width: 28px;
    height: 36px;
  }

  .nav-button {
    min-height: 40px;
    padding: 0 12px;
  }

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

  .hero-copy {
    margin-top: 0;
    transform: none;
  }

  .header-order-guide {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .guide-field {
    min-height: 58px;
    padding: 12px 16px;
  }

  .guide-field strong {
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .step-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .outline-button,
  .step-button {
    width: 100%;
  }

  .planner-head {
    padding: 18px 18px 12px;
  }

  .progress {
    margin: 0 18px;
  }

  .form-step {
    padding: 18px;
  }

  .option-grid,
  .proof-strip,
  .steps-grid,
  .package-grid,
  .client-logo-grid,
  .testimonial-list,
  .customer-proof,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-grid img {
    height: 76px;
  }

  .recommendation-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .recommendation-card img {
    width: 92px;
    height: 112px;
  }

  .custom-package-option {
    align-items: stretch;
    flex-direction: column;
  }

  .custom-package-option button {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

  .final-cta {
    padding: 40px 16px;
  }

  .footer {
    padding: 36px 16px;
    gap: 24px;
    justify-items: center;
  }

  .site-footer {
    padding: 28px 16px;
  }
}

/* Phone-first campaign mode: keep the experience consistent for mobile-first traffic. */
body {
  background: #efe2cf;
}

.topbar {
  left: 50%;
  right: auto;
  width: min(100%, 430px);
  transform: translateX(-50%);
  justify-content: space-between;
  padding: 12px 16px;
}

.nav {
  display: none;
}

.brand {
  min-width: 0;
}

.brand span {
  max-width: 100px;
  line-height: 1.08;
}

.brand img {
  width: 28px;
  height: 36px;
}

.nav-button {
  min-height: 40px;
  padding: 0 12px;
}

.hero,
.proof-strip,
.section,
.trust-section,
.final-cta,
.footer,
.site-footer {
  width: min(100%, 430px);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  min-height: auto;
  padding: 78px 16px 34px;
}

.hero-bg {
  background:
    radial-gradient(circle at 88% 0%, rgba(242, 177, 61, 0.14), rgba(242, 177, 61, 0) 34%),
    linear-gradient(180deg, rgba(53, 21, 18, 0.74) 0%, rgba(83, 27, 22, 0.9) 54%, rgba(53, 21, 18, 0.94) 100%);
  transform: none;
}

.hero-shell {
  width: 100%;
  min-height: auto;
  padding-top: 0;
  gap: 18px;
  align-content: start;
}

.hero-product-photo {
  display: block;
  width: min(100%, 382px);
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 9, 7, 0.28);
}

.hero-product-photo img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(1.08) contrast(1.04);
}

.hero-copy {
  max-width: 100%;
  margin-top: 0;
  transform: none;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
}

h1 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.08;
}

h2 {
  font-size: 30px;
}

.hero-lead {
  max-width: 100%;
  font-size: 16px;
}

.header-order-guide {
  grid-template-columns: 1fr;
  margin-top: 16px;
  border-radius: 16px;
}

.guide-field {
  min-height: 58px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(81, 38, 27, 0.1);
}

.guide-field:not(:last-of-type)::after {
  display: none;
}

.guide-search {
  grid-column: 1 / -1;
  min-height: 50px;
  margin: 8px;
}

.section {
  padding: 58px 28px;
}

.section::before {
  inset: 0;
}

.section-heading,
.section-heading.split {
  display: block;
  max-width: 100%;
  margin-bottom: 24px;
}

.section-heading p {
  font-size: 16px;
}

.proof-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-grid,
.package-grid,
.testimonial-list,
.customer-proof,
.faq-grid,
.final-cta,
.footer,
.site-footer {
  grid-template-columns: 1fr;
}

.client-logo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-logo-grid img {
  height: 76px;
}

.trust-section,
.final-cta,
.footer,
.site-footer {
  padding-right: 28px;
  padding-left: 28px;
}

.package-card img {
  height: auto;
  aspect-ratio: 1 / 1.04;
}

.recommendation-card {
  grid-template-columns: 92px minmax(0, 1fr);
}

.recommendation-card img {
  width: 92px;
  height: 112px;
}

.custom-package-option {
  align-items: stretch;
  flex-direction: column;
}

.custom-package-option button,
.primary-button,
.secondary-button,
.outline-button,
.step-button {
  width: 100%;
}
