:root {
  --bg: #f8f3ed;
  --bg-soft: #f2e9df;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-solid: #fffdf9;
  --surface-warm: #f7efe5;
  --text: #2c241f;
  --muted: #776b62;
  --line: rgba(70, 53, 43, 0.11);
  --gold: #c9a66a;
  --gold-deep: #a98246;
  --wine: #8c422a;
  --wine-soft: #b56a50;
  --rose: #e8cfc4;
  --cream: #fff9f1;
  --shadow-sm: 0 10px 26px rgba(74, 52, 39, 0.07);
  --shadow-md: 0 22px 58px rgba(74, 52, 39, 0.11);
  --shadow-lg: 0 34px 84px rgba(74, 52, 39, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 44px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(232, 207, 196, 0.23), transparent 26rem),
    linear-gradient(180deg, #faf6f0 0%, var(--bg) 48%, #f6efe7 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(201, 166, 106, 0.3);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

main {
  overflow: clip;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(248, 243, 237, 0.78);
  backdrop-filter: blur(16px) saturate(135%);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 243, 237, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(61, 46, 37, 0.06);
}

.site-header-inner {
  width: min(calc(100% - 40px), var(--shell));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 13px 13px 13px 5px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d9bb7c, var(--gold));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(169, 130, 70, 0.18);
}

.brand-copy {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.03em;
  font-size: 17px;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy span {
  color: var(--wine);
  font-weight: 700;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: #665b53;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--wine);
  transform: translateX(-50%);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.header-action {
  padding: 10px 16px;
  border: 1px solid rgba(140, 66, 42, 0.12);
  border-radius: 999px;
  background: #fffaf5;
  color: var(--wine);
  font-size: 12.5px;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(74, 52, 39, 0.05);
}

.header-action:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* COMMON */
.section {
  padding: 94px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(140, 66, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.68);
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "✦";
  font-size: 9px;
}

.eyebrow-light {
  color: #fff8ef;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow,
.section-action.centered {
  margin-inline: auto;
}

.section-heading h2,
.page-intro h1,
.final-cta h2,
.plan-contact h2 {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}

.section-heading p {
  margin: 15px 0 0;
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, .55fr);
  align-items: end;
  gap: 58px;
}

.split-heading p {
  padding-bottom: 6px;
}

.button {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #d2af70, #bd914f);
  color: white;
  box-shadow: 0 14px 30px rgba(169, 130, 70, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(169, 130, 70, 0.28);
}

.button-ghost {
  border: 1px solid rgba(75, 59, 49, 0.13);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.button-soft {
  border: 1px solid rgba(140, 66, 42, 0.11);
  background: #fffaf6;
  color: var(--wine);
}

.button-disabled {
  cursor: default;
  opacity: .62;
}

.button-disabled:hover {
  transform: none;
}

.button-ghost-dark {
  border: 1px solid rgba(75, 59, 49, 0.13);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
}

.button-light {
  background: #fffaf5;
  color: var(--wine);
  box-shadow: var(--shadow-sm);
}

.section-action {
  width: fit-content;
  margin-top: 34px;
}

/* HERO */
.hero-home {
  position: relative;
  min-height: 670px;
  padding: 60px 0 72px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.75), transparent 30rem),
    radial-gradient(circle at 86% 24%, rgba(229, 193, 176, 0.42), transparent 28rem),
    linear-gradient(135deg, #f7f2ec 0%, #f0e8e1 56%, #ead2c7 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 220px;
  height: 220px;
  top: 44px;
  left: -95px;
  background: rgba(201, 166, 106, 0.08);
}

.hero-orb-two {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -65px;
  background: rgba(140, 66, 42, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 6.6vw, 6rem);
  line-height: .89;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: block;
  color: var(--wine);
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #6f635b;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #75685f;
  font-size: 11px;
  font-weight: 650;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 166, 106, 0.12);
}

.hero-preview {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.preview-halo {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 49% 51% 45% 55% / 57% 44% 56% 43%;
  background: rgba(255, 255, 255, 0.33);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.event-phone {
  position: relative;
  z-index: 3;
  width: 260px;
  padding: 12px;
  border-radius: 36px;
  background: #fffdfb;
  border: 1px solid rgba(89, 65, 50, 0.1);
  box-shadow: var(--shadow-lg);
}

.event-phone-top {
  padding: 4px 8px 9px;
  display: flex;
  justify-content: space-between;
  color: #766a62;
  font-size: 8px;
}

.event-cover {
  position: relative;
  min-height: 198px;
  padding: 30px 20px 18px;
  overflow: hidden;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  background: linear-gradient(160deg, #f5e8e1 0%, #f2d9cc 100%);
  text-align: center;
}

.event-cover-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.event-cover-circle {
  position: absolute;
  width: 145px;
  height: 145px;
  top: 25px;
  left: 50%;
  border-radius: 999px;
  border: 1px solid rgba(140, 66, 42, 0.14);
  transform: translateX(-50%);
}

.event-cover-flower {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(140, 66, 42, 0.12);
  border-radius: 65% 35% 62% 38%;
}

.flower-one {
  left: -34px;
  top: 18px;
  transform: rotate(28deg);
}

.flower-two {
  right: -30px;
  bottom: 6px;
  transform: rotate(-24deg);
}

.event-cover small,
.event-cover span {
  position: relative;
  z-index: 2;
  color: #795f52;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.event-cover strong {
  position: relative;
  z-index: 2;
  margin: 2px 0 4px;
  font-family: "Cormorant Garamond", serif;
  color: var(--wine);
  font-size: 29px;
  line-height: 1;
}

.countdown-mini {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.countdown-mini div {
  padding: 9px 5px;
  border-radius: 13px;
  background: #faf4ee;
  text-align: center;
}

.countdown-mini strong,
.countdown-mini span {
  display: block;
}

.countdown-mini strong {
  color: var(--wine);
  font-size: 13px;
}

.countdown-mini span {
  color: #8b7b71;
  font-size: 6.5px;
  text-transform: uppercase;
}

.phone-actions {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.phone-actions span {
  padding: 8px 3px;
  border: 1px solid rgba(90, 68, 54, 0.08);
  border-radius: 11px;
  background: #fffaf6;
  color: #695c54;
  text-align: center;
  font-size: 6.8px;
  font-weight: 750;
}

.phone-place {
  margin-top: 9px;
  padding: 9px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  border-radius: 13px;
  background: #f7eee6;
}

.phone-place div {
  min-width: 0;
}

.phone-place small,
.phone-place strong {
  display: block;
}

.phone-place small {
  color: #8a7b72;
  font-size: 6.5px;
  text-transform: uppercase;
}

.phone-place strong {
  overflow: hidden;
  color: #554942;
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.place-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(201, 166, 106, 0.16);
  color: var(--wine);
}

.preview-note {
  position: absolute;
  z-index: 4;
  width: 158px;
  padding: 13px 14px;
  border: 1px solid rgba(90, 68, 54, 0.08);
  border-radius: 18px 18px 18px 7px;
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.preview-note span,
.preview-note strong {
  display: block;
}

.preview-note span {
  margin-bottom: 4px;
  color: #9a7b69;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-note strong {
  font-size: 11px;
}

.preview-note-left {
  left: -10px;
  top: 90px;
  transform: rotate(-5deg);
}

.preview-note-right {
  right: -6px;
  bottom: 92px;
  transform: rotate(4deg);
}

/* VALUE STRIP */
.value-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.78);
  backdrop-filter: blur(12px);
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-strip-grid > div {
  padding: 5px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}

.value-strip-grid strong,
.value-strip-grid small {
  grid-column: 2;
}

.value-icon {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f4e8dc;
  color: var(--wine);
}

.value-strip-grid strong {
  font-size: 11.5px;
}

.value-strip-grid small {
  color: #8a7d74;
  font-size: 9px;
}

/* HOW */
.section-how {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 166, 106, 0.08), transparent 24rem),
    #fbf7f2;
}

.steps-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.step-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(74, 52, 39, 0.09);
  border-radius: 26px 26px 26px 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.step-card:nth-of-type(even) {
  transform: translateY(12px);
}

.step-number {
  display: block;
  margin-bottom: 30px;
  color: var(--wine-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 7px;
  font-size: 14px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.step-connector {
  color: rgba(140, 66, 42, 0.34);
  font-size: 18px;
}

/* PLANS PREVIEW */
.section-plans-preview,
.plans-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(232, 207, 196, 0.22), transparent 24rem),
    linear-gradient(180deg, #f5ede4 0%, #f8f2eb 100%);
}

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

.plan-mini-card,
.plan-card {
  position: relative;
  border: 1px solid rgba(74, 52, 39, 0.09);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.plan-mini-card {
  min-height: 300px;
  padding: 25px;
  border-radius: 28px 28px 28px 10px;
  display: flex;
  flex-direction: column;
}

.plan-mini-card:nth-child(2) {
  transform: translateY(-10px);
}

.plan-mini-card.featured,
.plan-card.featured {
  border-color: rgba(169, 130, 70, 0.24);
  background: linear-gradient(180deg, #fffaf4 0%, #fffdf9 100%);
  box-shadow: 0 26px 70px rgba(131, 89, 55, 0.14);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f0dfc5;
  color: #85522f;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-index,
.plan-number {
  color: #a88b78;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
}

.plan-mini-card h3,
.plan-card h2 {
  margin: 18px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}

.plan-mini-card > p,
.plan-card-top > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.plan-price,
.plan-card-price {
  margin-top: 24px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.plan-price strong,
.plan-card-price strong {
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: 1;
}

.plan-price span,
.plan-card-price span {
  padding-bottom: 3px;
  color: #9b8d84;
  font-size: 8px;
  font-weight: 800;
}

.plan-mini-meta {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-mini-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f7efe6;
  color: #77675d;
  font-size: 8px;
}

.plan-mini-card > a {
  margin-top: 17px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

/* DESIGN PREVIEW */
.section-designs-preview {
  background: #fcf9f5;
}

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

.design-preview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fffdf9;
  box-shadow: var(--shadow-sm);
}

.design-preview-visual,
.design-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
}

.design-preview-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.theme-1,
.phone-theme-one {
  background: linear-gradient(145deg, #f3ddd4, #ead0c6 58%, #f8eee9);
}

.theme-2,
.phone-theme-two {
  background: linear-gradient(145deg, #e9dfd1, #d9c8b1 58%, #f6efe6);
}

.theme-3,
.phone-theme-three {
  background: linear-gradient(145deg, #e4e0e9, #d4cbdc 58%, #f3eff5);
}

.abstract-invite {
  width: 146px;
  min-height: 248px;
  padding: 34px 18px 26px;
  border: 1px solid rgba(83, 62, 49, 0.12);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.75), transparent 5rem),
    rgba(255, 253, 249, 0.72);
  box-shadow: 0 22px 50px rgba(74, 52, 39, 0.12);
  text-align: center;
  transform: rotate(-2deg);
}

.design-placeholder:nth-child(2) .abstract-invite {
  transform: translateY(8px) rotate(2deg);
}

.design-placeholder:nth-child(3) .abstract-invite {
  transform: rotate(-1deg);
}

.abstract-invite span {
  width: 40px;
  height: 40px;
  margin-bottom: 44px;
  border: 1px solid rgba(140, 66, 42, 0.18);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.abstract-invite strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
}

.abstract-invite small {
  margin-top: 6px;
  color: #8b7b72;
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.design-preview-copy {
  padding: 17px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.design-preview-copy span {
  color: #9a897e;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.design-preview-copy h3 {
  margin: 3px 0 0;
  font-size: 13px;
}

.design-preview-copy a {
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

/* FINAL CTA */
.final-cta,
.plan-contact {
  padding: 76px 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(255,255,255,.1), transparent 18rem),
    linear-gradient(135deg, #7b3d2b 0%, #9d5a3c 58%, #af724f 100%);
  color: white;
}

.final-cta-inner,
.plan-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
}

.final-cta h2,
.plan-contact h2 {
  max-width: 850px;
  color: white;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* PAGE INTRO */
.page-intro {
  position: relative;
  padding: 76px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 28%, rgba(232, 207, 196, 0.5), transparent 28rem),
    linear-gradient(135deg, #faf6f1 0%, #f0e7df 100%);
}

.page-intro-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -85px;
  bottom: -130px;
  border-radius: 999px;
  background: rgba(201, 166, 106, 0.08);
}

.page-intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .55fr);
  align-items: end;
  gap: 60px;
}

.page-intro h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.page-intro-grid > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

/* PLANS PAGE */
.plans-section {
  padding-top: 58px;
}

.plan-card {
  padding: 26px;
  border-radius: 30px 30px 30px 12px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  transform: translateY(-10px);
}

.plan-card-labels {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-card-price {
  margin-top: 26px;
}

.plan-card-price strong {
  font-size: 38px;
}

.plan-quick-facts {
  margin: 22px -6px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.plan-quick-facts span {
  padding: 10px;
  border-radius: 14px;
  background: #f7efe6;
  color: #806e62;
  font-size: 8px;
  text-align: center;
}

.plan-quick-facts strong {
  color: var(--wine);
  font-size: 13px;
}

.plan-feature-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.plan-feature {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  color: #5f534c;
  font-size: 9.5px;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #f0dfd5;
  color: var(--wine);
  font-size: 9px;
  font-weight: 900;
}

.plan-feature small {
  margin-left: 4px;
  color: #aa8c7b;
}

.plan-details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.plan-details summary {
  color: var(--wine);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  list-style: none;
}

.plan-details summary::-webkit-details-marker {
  display: none;
}

.plan-details-list {
  margin-top: 12px;
  display: grid;
  gap: 7px;
  color: #776a62;
  font-size: 8.5px;
}

.plan-card-action {
  width: 100%;
  margin-top: auto;
  transform: translateY(18px);
}

.plan-note {
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.58);
}

.plan-note-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #f1e2d6;
  color: var(--wine);
}

.plan-note strong,
.plan-note p {
  display: block;
}

.plan-note strong {
  font-size: 11px;
}

.plan-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.plan-note a {
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

/* CATALOG PAGE */
.catalog-section {
  background: #fbf7f2;
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px 30px 30px 12px;
  display: grid;
  grid-template-columns: minmax(210px, .75fr) 1fr;
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow-sm);
}

.catalog-card-visual {
  min-height: 340px;
  display: grid;
  place-items: center;
}

.catalog-device {
  width: 160px;
  height: 286px;
  overflow: hidden;
  border: 8px solid #fffdfb;
  border-radius: 29px;
  background: #fffdf9;
  box-shadow: 0 24px 54px rgba(74,52,39,.18);
}

.catalog-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-device .abstract-invite {
  width: 100%;
  height: 100%;
  min-height: auto;
  border: 0;
  border-radius: 20px;
  box-shadow: none;
  transform: none;
}

.catalog-card-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-card-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.catalog-card-meta > span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f6eee6;
  color: #917568;
  font-size: 7.5px;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-card-meta .catalog-tier {
  background: #eee0cd;
  color: #8c5c32;
}

.catalog-card-copy h2 {
  margin: 13px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  line-height: 1;
}

.catalog-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.catalog-card-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.catalog-link {
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-empty {
  min-height: 430px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 36px 36px 36px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(247,237,227,.8));
  box-shadow: var(--shadow-sm);
}

.catalog-empty-visual {
  min-height: 330px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-phone {
  position: absolute;
  width: 145px;
  padding: 7px;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.catalog-phone .abstract-invite {
  width: 100%;
  min-height: 255px;
  border-radius: 22px;
  transform: none;
}

.catalog-phone:nth-child(1) {
  left: 4%;
  transform: rotate(-8deg) translateY(16px);
}

.catalog-phone:nth-child(2) {
  z-index: 2;
  transform: translateY(-14px);
}

.catalog-phone:nth-child(3) {
  right: 4%;
  transform: rotate(8deg) translateY(16px);
}

.catalog-empty-copy h2 {
  margin: 15px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.catalog-empty-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-info-band {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f1e7dd;
}

.catalog-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.catalog-info-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}

.catalog-info-grid span {
  grid-row: 1 / 3;
  color: var(--wine-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
}

.catalog-info-grid strong,
.catalog-info-grid small {
  grid-column: 2;
}

.catalog-info-grid strong {
  font-size: 10px;
}

.catalog-info-grid small {
  color: var(--muted);
  font-size: 8px;
}

/* EMPTY / ERROR */
.empty-state,
.test-page {
  width: min(calc(100% - 40px), 760px);
  margin: 70px auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}

.empty-state span,
.test-label {
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.empty-state h2,
.test-page h1 {
  margin: 10px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 1;
}

.empty-state p,
.test-page p {
  color: var(--muted);
}

.test-page a {
  color: var(--wine);
  font-weight: 800;
}

.test-page pre {
  overflow: auto;
  padding: 14px;
  border-radius: 12px;
  background: #2c241f;
  color: #fff8ef;
}

/* FOOTER */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 26px;
  border-top: 1px solid rgba(74, 52, 39, 0.08);
  background: #ede0cf;
}

.site-footer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -220px;
  border-radius: 999px;
  background: rgba(201, 166, 106, 0.16);
}

.site-footer-inner,
.site-footer-bottom {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 54px;
}

.brand-footer {
  width: fit-content;
}

.footer-brand-block > p {
  max-width: 430px;
  margin: 16px 0 14px;
  color: #76685f;
  font-size: 11px;
}

.footer-cta {
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column strong {
  margin-bottom: 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-column a,
.footer-muted {
  color: #786b62;
  font-size: 9px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--wine);
}

.site-footer-bottom {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(74, 52, 39, 0.09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8a7c72;
  font-size: 8px;
}

/* REVEALS */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1040px) {
  .hero-grid {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .preview-note-left {
    left: -26px;
  }

  .preview-note-right {
    right: -18px;
  }

  .plans-grid,
  .plan-mini-grid {
    gap: 12px;
  }

  .catalog-empty {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .header-action {
    display: none;
  }

  .hero-home {
    padding-top: 42px;
  }

  .hero-grid,
  .page-intro-grid,
  .final-cta-inner,
  .plan-contact-inner,
  .split-heading,
  .catalog-empty {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-preview {
    min-height: 460px;
  }

  .preview-note-left {
    left: 16%;
  }

  .preview-note-right {
    right: 16%;
  }

  .value-strip-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .step-connector {
    display: none;
  }

  .plan-mini-grid,
  .plans-grid,
  .design-preview-grid,
  .design-placeholder-row {
    grid-template-columns: 1fr;
  }

  .plan-mini-card:nth-child(2),
  .plan-card.featured {
    transform: none;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-empty-visual {
    min-height: 300px;
  }

  .site-footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .shell,
  .site-header-inner,
  .site-footer-inner,
  .site-footer-bottom {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-copy {
    font-size: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-home {
    min-height: auto;
    padding: 34px 0 46px;
  }

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

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

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-trust {
    gap: 8px 12px;
    font-size: 9px;
  }

  .hero-preview {
    min-height: 420px;
    transform: scale(.92);
  }

  .preview-note {
    display: none;
  }

  .steps-flow {
    grid-template-columns: 1fr;
  }

  .step-card:nth-of-type(even) {
    transform: none;
  }

  .section-heading h2,
  .page-intro h1,
  .final-cta h2,
  .plan-contact h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .split-heading {
    gap: 12px;
  }

  .page-intro {
    padding: 52px 0 44px;
  }

  .page-intro-grid {
    gap: 18px;
  }

  .plan-card,
  .plan-mini-card {
    padding: 22px;
  }

  .plan-note {
    grid-template-columns: auto 1fr;
  }

  .plan-note a {
    grid-column: 2;
  }

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

  .catalog-card-visual {
    min-height: 300px;
  }

  .catalog-card-copy {
    padding: 22px;
  }

  .catalog-empty {
    padding: 24px 18px;
  }

  .catalog-empty-visual {
    min-height: 260px;
  }

  .catalog-phone {
    width: 112px;
  }

  .catalog-phone:nth-child(1) {
    left: 0;
  }

  .catalog-phone:nth-child(3) {
    right: 0;
  }

  .catalog-info-grid,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-bottom {
    flex-direction: column;
  }

  .final-cta,
  .plan-contact {
    padding: 58px 0;
  }

  .final-cta-inner,
  .plan-contact-inner {
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* REQUEST FLOW */
/* Solicitud wizard: hidden must win over the reusable .button display rule. */
[hidden] {
  display: none !important;
}

.request-hero {
  padding: 72px 0 92px;
  background:
    radial-gradient(circle at 84% 12%, rgba(232, 207, 196, 0.35), transparent 26rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.6), transparent 36%);
}

.request-shell {
  max-width: 1080px;
}

.request-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.request-heading h1,
.request-confirmed-card h1 {
  margin: 14px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: .98;
  letter-spacing: -.035em;
}

.request-heading p,
.request-confirmed-card > p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
}

.request-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.request-progress {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 6px;
  padding: 18px 0;
}

.request-progress-line {
  position: absolute;
  top: 42px;
  left: 18px;
  bottom: 42px;
  width: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(140, 66, 42, .08);
}

.request-progress-line span {
  display: block;
  width: 100%;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--gold), var(--wine-soft));
  transition: height .3s ease;
}

.request-progress-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 4px 8px 4px 0;
  border: 0;
  background: transparent;
  color: #8b8179;
  text-align: left;
  cursor: default;
}

.request-progress-step > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 253, 249, .88);
  font-size: 12px;
  font-weight: 800;
}

.request-progress-step strong {
  font-size: 12px;
  font-weight: 750;
}

.request-progress-step.is-active,
.request-progress-step.is-complete {
  color: var(--text);
}

.request-progress-step.is-active > span {
  border-color: rgba(140, 66, 42, .18);
  background: var(--wine);
  color: white;
  box-shadow: 0 9px 22px rgba(140, 66, 42, .16);
}

.request-progress-step.is-complete > span {
  border-color: rgba(201, 166, 106, .22);
  background: #fff8ee;
  color: var(--gold-deep);
}

.request-card {
  min-height: 570px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, .84);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.request-alert {
  margin-bottom: 22px;
  padding: 12px 15px;
  border: 1px solid rgba(140, 66, 42, .16);
  border-radius: 16px;
  background: rgba(181, 106, 80, .08);
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

.request-step {
  display: none;
  animation: requestFade .24s ease;
}

.request-step.is-active {
  display: block;
}

@keyframes requestFade {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

.request-step-heading {
  margin-bottom: 28px;
}

.request-step-heading > span {
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.request-step-heading h2 {
  margin: 7px 0 7px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(31px, 4vw, 43px);
  line-height: 1;
  letter-spacing: -.025em;
}

.request-step-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.request-choice-grid,
.request-tier-grid,
.request-template-grid {
  display: grid;
  gap: 12px;
}

.request-choice-grid-events {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.request-choice,
.request-tier,
.request-template {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .62);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.request-choice:hover,
.request-tier:hover,
.request-template:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 66, 42, .20);
  background: #fffaf5;
  box-shadow: var(--shadow-sm);
}

.request-choice.is-selected,
.request-template.is-selected {
  transform: translateY(-2px);
  border-color: rgba(140, 66, 42, .42);
  background: #f8eee7;
  box-shadow: 0 14px 28px rgba(140, 66, 42, .10);
}

.request-tier.is-selected {
  transform: translateY(-2px);
  border-color: rgba(140, 66, 42, .58);
  background: #f3e3d8;
  box-shadow: 0 16px 32px rgba(140, 66, 42, .14);
}

.request-choice input,
.request-tier input,
.request-template input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.request-choice-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-warm);
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}

.request-choice strong {
  font-size: 12.5px;
}

.request-tier-grid {
  grid-template-columns: repeat(3, 1fr);
}

.request-tier {
  min-height: 176px;
  padding-top: 22px;
}

.request-tier.is-highlighted::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(201, 166, 106, .15),
    rgba(140, 66, 42, .07)
  );
}

.request-tier-badge {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(201, 166, 106, .13);
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-tier > strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
}

.request-tier-price {
  color: var(--wine);
  font-size: 22px;
  font-weight: 800;
}

.request-tier-price small {
  font-size: 9px;
  letter-spacing: .05em;
}

.request-tier p,
.request-template p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
}

.request-template-grid {
  grid-template-columns: repeat(3, 1fr);
}

.request-template {
  min-height: 215px;
}

.request-template-preview,
.request-template-empty {
  height: 112px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 20%, rgba(232, 207, 196, .5), transparent 6rem),
    var(--surface-warm);
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
}

.request-template-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.request-template > strong {
  font-size: 13px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-block {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.field-block > span {
  font-size: 11.5px;
  font-weight: 800;
}

.field-block em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.field-block input,
.field-block textarea {
  width: 100%;
  padding: 13px 14px;
  outline: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .78);
  color: var(--text);
  font: inherit;
  font-size: 13.5px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field-block textarea {
  resize: vertical;
  min-height: 104px;
}

.field-block input:focus,
.field-block textarea:focus {
  border-color: rgba(140, 66, 42, .32);
  background: white;
  box-shadow: 0 0 0 4px rgba(181, 106, 80, .08);
}

.field-block small {
  color: var(--muted);
  font-size: 10.5px;
}

.field-error {
  margin: 5px 0 10px;
  color: #a13f30 !important;
  font-size: 11px !important;
  font-weight: 700;
}

.request-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.request-summary > div {
  min-height: 92px;
  padding: 17px 19px;
  display: grid;
  gap: 4px;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.request-summary > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.request-summary > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.request-summary span,
.request-folio span,
.request-confirmed-details span {
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.request-summary strong {
  font-size: 13px;
}

.request-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 11.5px;
  cursor: pointer;
}

.request-consent input {
  margin-top: 2px;
  accent-color: var(--wine);
}

.request-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.button-primary {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wine), #a75338);
  color: white;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(140, 66, 42, .17);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(140, 66, 42, .21);
}

.button-ghost {
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
}

.request-confirmed-section {
  min-height: calc(100vh - 150px);
  padding: 88px 0;
  display: grid;
  place-items: center;
}

.request-confirmed-shell {
  max-width: 820px;
}

.request-confirmed-card {
  padding: clamp(30px, 7vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, .9);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.request-confirmed-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 20px 20px 20px 8px;
  background: linear-gradient(145deg, var(--gold), var(--gold-deep));
  color: white;
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(169, 130, 70, .2);
}

.request-folio {
  width: fit-content;
  margin: 28px auto;
  padding: 13px 20px;
  display: grid;
  gap: 2px;
  border-radius: 17px;
  background: var(--surface-warm);
}

.request-folio strong {
  color: var(--wine);
  font-size: 22px;
  letter-spacing: .05em;
}

.request-confirmed-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: left;
}

.request-confirmed-details > div {
  min-height: 80px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.request-confirmed-details > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.request-confirmed-details > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.request-confirmed-details strong {
  font-size: 13px;
}

.request-confirmed-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-progress {
    position: relative;
    top: auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 0;
  }

  .request-progress-line {
    display: none;
  }

  .request-progress-step {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding: 0;
    text-align: center;
  }

  .request-progress-step strong {
    font-size: 9px;
  }

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

  .request-tier-grid,
  .request-template-grid {
    grid-template-columns: 1fr;
  }

  .request-tier {
    min-height: auto;
  }

  .request-template {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .request-hero {
    padding: 46px 0 66px;
  }

  .request-card {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 28px;
  }

  .field-grid,
  .request-summary,
  .request-confirmed-details {
    grid-template-columns: 1fr;
  }

  .request-summary > div:nth-child(odd),
  .request-confirmed-details > div:nth-child(odd) {
    border-right: 0;
  }

  .request-summary > div:nth-last-child(-n + 2),
  .request-confirmed-details > div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .request-summary > div:last-child,
  .request-confirmed-details > div:last-child {
    border-bottom: 0;
  }

  .request-actions {
    flex-wrap: wrap;
  }

  .request-actions .button {
    flex: 1 1 140px;
  }
}
