/* =============================================================
   WEDDING · Ivory Editorial (de wd01) + Plans grid
   ============================================================= */
:root {
  --wd-ink: #1a1614;
  --wd-ink-soft: #4a3f38;
  --wd-mute: rgba(26, 22, 20, 0.55);
  --wd-line: rgba(26, 22, 20, 0.10);
  --wd-cream: #efe6dc;
  --wd-ivory: #fbf6ed;
  --wd-ivory-deep: #f3ead7;
  --wd-white: #ffffff;
  --wd-gold: #b89968;
  --wd-gold-soft: #d4b78a;
  --wd-gold-deep: #9a7d52;
  --wd-display: 'Space Grotesk', system-ui, sans-serif;
  --wd-cormo: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --wd-mono: 'JetBrains Mono', monospace;
}

body { background: var(--wd-ivory); }
.wd01 em, .wd01 .italic { font-family: var(--wd-cormo); font-style: italic; font-weight: 400; color: var(--wd-gold); }

/* ─── Hero ─── */
.wd01 { background: var(--wd-ivory); color: var(--wd-ink); }
.wd01__hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wd01__heroBg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.92) saturate(0.85);
}
.wd01__heroOver {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251,246,237,0.30) 0%, rgba(251,246,237,0.75) 70%, var(--wd-ivory) 100%);
  z-index: 1;
}
.wd01__heroContent {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 80px 40px;
}
.wd01__heroEyebrow {
  display: block;
  font-family: var(--wd-cormo); font-style: italic;
  font-size: 22px; color: var(--wd-gold-deep);
  margin-bottom: 28px; letter-spacing: 0.04em;
}
.wd01__heroTitle {
  font-family: var(--wd-cormo); font-weight: 300; font-style: italic;
  font-size: clamp(48px, 8vw, 96px); line-height: 1.02;
  letter-spacing: -0.02em; color: var(--wd-ink); margin: 0 0 28px;
}
.wd01__heroLede {
  font-family: var(--wd-display); font-weight: 300;
  font-size: 17px; line-height: 1.65;
  color: var(--wd-ink-soft); margin: 0 auto 32px; max-width: 540px;
}
.wd01__heroBtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--wd-ink); color: var(--wd-white);
  border-radius: 999px;
  font-family: var(--wd-display); font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.wd01__heroBtn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -16px rgba(26,22,20,0.45); }
.wd01__heroBtn span { transition: transform .25s; }
.wd01__heroBtn:hover span { transform: translateX(3px); }

/* ─── Intro ─── */
.wd01__intro {
  padding: clamp(72px,12vh,120px) 40px;
  text-align: center;
}
.wd01__introInner { max-width: 700px; margin: 0 auto; }
.wd01__introMark {
  display: block;
  font-family: var(--wd-mono); font-size: 12px;
  letter-spacing: 0.20em; color: var(--wd-gold);
  margin-bottom: 32px;
}
.wd01__introLede {
  font-family: var(--wd-cormo); font-weight: 300; font-style: italic;
  font-size: clamp(24px, 3vw, 32px); line-height: 1.45;
  color: var(--wd-ink); margin: 0;
}

/* =============================================================
   PLANS — 3 cards (Pre-Boda x2 + Boda Cinematic)
   ============================================================= */
.wd-planes {
  padding: clamp(48px,8vh,96px) 40px clamp(80px,12vh,120px);
  background: var(--wd-ivory);
}
.wd-planes__inner { max-width: 1360px; margin: 0 auto; }
.wd-planes__header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.wd-planes__eyebrow {
  display: block;
  font-family: var(--wd-mono); font-size: 12px;
  letter-spacing: 0.20em; color: var(--wd-gold);
  margin-bottom: 20px;
}
.wd-planes__title {
  font-family: var(--wd-cormo); font-weight: 300;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.05;
  letter-spacing: -0.015em; color: var(--wd-ink); margin: 0 0 18px;
}
.wd-planes__title em { font-family: var(--wd-cormo); font-style: italic; color: var(--wd-gold); }
.wd-planes__lede {
  font-family: var(--wd-display); font-weight: 300;
  font-size: 16px; line-height: 1.60;
  color: var(--wd-ink-soft); margin: 0;
}

.wd-planes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.wd-plan {
  position: relative;
  background: var(--wd-white);
  border: 1px solid rgba(184,153,104,0.20);
  border-radius: 20px;
  padding: clamp(28px,3.5vw,40px);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.wd-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(184,153,104,0.40);
  box-shadow: 0 32px 80px -32px rgba(184,153,104,0.30);
}
.wd-plan--mid {
  background: linear-gradient(180deg, var(--wd-white) 0%, #fdfaf3 100%);
}
.wd-plan--featured {
  background: linear-gradient(180deg, #1a1614 0%, #2a221d 100%);
  border-color: rgba(184,153,104,0.40);
  color: var(--wd-white);
  box-shadow: 0 24px 60px -24px rgba(26,22,20,0.40);
}
.wd-plan--featured:hover {
  box-shadow: 0 40px 100px -32px rgba(26,22,20,0.55);
  border-color: var(--wd-gold);
}
.wd-plan__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--wd-gold);
  color: var(--wd-white);
  border-radius: 999px;
  font-family: var(--wd-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(184,153,104,0.50);
}

.wd-plan__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184,153,104,0.20);
  margin-bottom: 22px;
}
.wd-plan--featured .wd-plan__head { border-bottom-color: rgba(184,153,104,0.30); }
.wd-plan__num {
  font-family: var(--wd-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--wd-gold);
}
.wd-plan__cat {
  font-family: var(--wd-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--wd-gold-deep);
  text-transform: uppercase;
}
.wd-plan--featured .wd-plan__cat { color: var(--wd-gold-soft); }
.wd-plan__name {
  font-family: var(--wd-cormo);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(34px,3.6vw,42px);
  color: var(--wd-ink);
  margin: 0;
  line-height: 1;
}
.wd-plan--featured .wd-plan__name { color: var(--wd-white); }

.wd-plan__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}
.wd-plan__priceLab {
  font-family: var(--wd-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--wd-mute);
  text-transform: uppercase;
}
.wd-plan--featured .wd-plan__priceLab { color: rgba(255,255,255,0.55); }
.wd-plan__price strong {
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: clamp(32px,4vw,40px);
  letter-spacing: -0.02em;
  color: var(--wd-ink);
  line-height: 1;
}
.wd-plan--featured .wd-plan__price strong { color: var(--wd-gold-soft); }
.wd-plan__price small {
  font-family: var(--wd-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--wd-mute);
  margin-left: 6px;
  font-weight: 500;
}
.wd-plan--featured .wd-plan__price small { color: rgba(255,255,255,0.50); }

.wd-plan__body {
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.60;
  color: var(--wd-ink-soft);
  margin: 0 0 22px;
}
.wd-plan--featured .wd-plan__body { color: rgba(255,255,255,0.72); }

.wd-plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.wd-plan__list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--wd-ink-soft);
}
.wd-plan__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--wd-gold);
}
.wd-plan--featured .wd-plan__list li { color: rgba(255,255,255,0.82); }
.wd-plan--featured .wd-plan__list li::before { background: var(--wd-gold-soft); }
.wd-plan__list li strong { color: var(--wd-ink); font-weight: 600; }
.wd-plan--featured .wd-plan__list li strong { color: var(--wd-white); }
.wd-plan__list li em { font-family: var(--wd-cormo); font-style: italic; color: var(--wd-gold-deep); }
.wd-plan--featured .wd-plan__list li em { color: var(--wd-gold-soft); }

.wd-plan__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--wd-white);
  color: var(--wd-ink);
  border: 1px solid rgba(184,153,104,0.30);
  border-radius: 999px;
  font-family: var(--wd-display);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
  margin-top: auto;
}
.wd-plan__btn:hover {
  background: var(--wd-ink);
  color: var(--wd-white);
  border-color: var(--wd-ink);
  transform: translateY(-1px);
}
.wd-plan__btn span { transition: transform .25s; }
.wd-plan__btn:hover span { transform: translateX(3px); }
.wd-plan__btn--primary {
  background: var(--wd-gold);
  color: var(--wd-white);
  border-color: var(--wd-gold);
}
.wd-plan__btn--primary:hover {
  background: var(--wd-gold-soft);
  color: var(--wd-ink);
  border-color: var(--wd-gold-soft);
}

.wd-planes__note {
  margin: 56px auto 0;
  max-width: 720px;
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--wd-mute);
  text-align: center;
}

/* ─── Pillars (de wd01) ─── */
.wd01__pillars { padding: clamp(48px,8vh,80px) 40px clamp(80px,12vh,120px); }
.wd01__pillarsInner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.wd01__pillar { text-align: center; padding: 32px 16px; border-top: 1px solid rgba(184,153,104,0.30); }
.wd01__pNum { display: block; font-family: var(--wd-mono); font-size: 11px; letter-spacing: 0.20em; color: var(--wd-gold); margin-bottom: 18px; }
.wd01__pillar h3 { font-family: var(--wd-cormo); font-weight: 400; font-style: italic; font-size: 32px; color: var(--wd-ink); margin: 0 0 14px; }
.wd01__pillar p { font-family: var(--wd-display); font-weight: 300; font-size: 14.5px; line-height: 1.65; color: var(--wd-ink-soft); margin: 0; }

/* ─── Quote ─── */
.wd01__quote { padding: clamp(64px,10vh,120px) 40px; background: var(--wd-ivory-deep); text-align: center; }
.wd01__quote p { font-family: var(--wd-cormo); font-style: italic; font-weight: 400; font-size: clamp(24px, 3.4vw, 36px); line-height: 1.45; color: var(--wd-ink); max-width: 760px; margin: 0 auto; }

/* =============================================================
   UNA BODA, TRES MOMENTOS — champagne section
   ============================================================= */
.wd-momentos {
  padding: clamp(80px,12vh,140px) 40px;
  background: #e8d9bf;
  color: var(--wd-ink);
}
.wd-momentos__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.wd-momentos__eyebrow {
  display: block;
  font-family: var(--wd-cormo);
  font-style: italic;
  font-size: 22px;
  color: var(--wd-gold);
  margin-bottom: 16px;
}
.wd-momentos__title {
  font-family: var(--wd-cormo);
  font-weight: 300;
  font-size: clamp(36px,5vw,56px);
  letter-spacing: -0.01em;
  color: var(--wd-ink);
  margin: 0 0 56px;
}
.wd-momentos__title em {
  font-family: var(--wd-cormo);
  font-style: italic;
  color: var(--wd-gold-deep);
}
.wd-momentos__list {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.wd-momentos__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(184,153,104,0.30);
  align-items: start;
}
.wd-momentos__item:last-child {
  border-bottom: 1px solid rgba(184,153,104,0.30);
}
.wd-momentos__num {
  font-family: var(--wd-cormo);
  font-style: italic;
  font-size: 36px;
  color: var(--wd-gold);
  line-height: 1;
}
.wd-momentos__item h3 {
  font-family: var(--wd-cormo);
  font-weight: 400;
  font-size: 24px;
  color: var(--wd-ink);
  margin: 0 0 8px;
}
.wd-momentos__item p {
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--wd-ink-soft);
  margin: 0;
}

/* =============================================================
   COBERTURA PARCIAL — ceremonia + recepción banner
   ============================================================= */
.wd-cob {
  padding: clamp(72px,10vh,120px) 40px;
  background: var(--wd-ivory);
}
.wd-cob__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px,5vw,72px);
  align-items: center;
}
.wd-cob__left { padding-right: 8px; }
.wd-cob__eyebrow {
  display: block;
  font-family: var(--wd-mono);
  font-size: 12px;
  letter-spacing: 0.20em;
  color: var(--wd-gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.wd-cob__title {
  font-family: var(--wd-cormo);
  font-weight: 300;
  font-size: clamp(34px,4.4vw,52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--wd-ink);
  margin: 0 0 22px;
}
.wd-cob__title em {
  font-family: var(--wd-cormo);
  font-style: italic;
  color: var(--wd-gold);
}
.wd-cob__body {
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--wd-ink-soft);
  margin: 0 0 24px;
  max-width: 500px;
}
.wd-cob__body strong { color: var(--wd-ink); font-weight: 600; }
.wd-cob__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-cob__list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wd-ink-soft);
}
.wd-cob__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--wd-gold);
}

.wd-cob__card {
  background: linear-gradient(180deg, var(--wd-white) 0%, #fdfaf3 100%);
  border: 1px solid rgba(184,153,104,0.30);
  border-radius: 20px;
  padding: clamp(28px,3.5vw,40px);
  text-align: center;
  box-shadow: 0 24px 60px -28px rgba(184,153,104,0.30);
}
.wd-cob__cardLab {
  display: block;
  font-family: var(--wd-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--wd-gold-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wd-cob__cardPrice {
  display: block;
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: clamp(40px,5vw,56px);
  letter-spacing: -0.02em;
  color: var(--wd-ink);
  margin: 0 0 14px;
  line-height: 1;
}
.wd-cob__cardPrice small {
  font-family: var(--wd-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--wd-mute);
  margin-left: 6px;
  font-weight: 500;
}
.wd-cob__cardNote {
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--wd-mute);
  margin: 0 0 24px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.wd-cob__cardBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--wd-ink);
  color: var(--wd-white);
  border-radius: 999px;
  font-family: var(--wd-display);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  margin-bottom: 14px;
}
.wd-cob__cardBtn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -16px rgba(26,22,20,0.45); }
.wd-cob__cardBtn span { transition: transform .25s; }
.wd-cob__cardBtn:hover span { transform: translateX(3px); }
.wd-cob__cardWa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--wd-cormo);
  font-style: italic;
  font-size: 14.5px;
  color: var(--wd-gold-deep);
  text-decoration: none;
  transition: color .2s;
}
.wd-cob__cardWa:hover { color: var(--wd-gold); }

/* =============================================================
   HABLEMOS DE TU BODA — dark cotización
   ============================================================= */
.wd-cot {
  padding: clamp(80px,14vh,140px) clamp(32px,5vw,80px);
  background: #1a1614;
  color: var(--wd-white);
}
.wd-cot__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px,5vw,80px);
  align-items: start;
}
.wd-cot__left { padding-top: 8px; }
.wd-cot__label {
  font-family: var(--wd-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--wd-gold-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.wd-cot__title {
  font-family: var(--wd-display);
  font-weight: 200;
  font-size: clamp(36px,4.6vw,56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--wd-white);
  margin: 0 0 18px;
}
.wd-cot__title em {
  font-family: var(--wd-cormo);
  font-style: italic;
  font-weight: 400;
  color: var(--wd-gold-soft);
}
.wd-cot__lede {
  font-family: var(--wd-display);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
  max-width: 460px;
}
.wd-cot__direct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}
.wd-cot__dir {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  font-family: var(--wd-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--wd-white);
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.wd-cot__dir:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.40);
}
.wd-cot__dir--wa {
  background: linear-gradient(135deg, rgba(37,211,102,0.18), rgba(18,140,126,0.12));
  border-color: rgba(37,211,102,0.45);
}
.wd-cot__dir--wa:hover {
  background: linear-gradient(135deg, rgba(37,211,102,0.30), rgba(18,140,126,0.20));
}

.wd-cot__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: clamp(28px,4vw,40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.wd-cot__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wd-cot__field--full { grid-column: 1 / -1; }
.wd-cot__field label {
  font-family: var(--wd-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--wd-gold-soft);
  text-transform: uppercase;
}
.wd-cot__field input,
.wd-cot__field select,
.wd-cot__field textarea {
  font-family: var(--wd-display);
  font-size: 14px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.20);
  background: transparent;
  color: var(--wd-white);
  resize: vertical;
  transition: border-color .2s;
}
.wd-cot__field input:focus,
.wd-cot__field select:focus,
.wd-cot__field textarea:focus {
  outline: none;
  border-bottom-color: var(--wd-gold-soft);
}
.wd-cot__field select option { background: var(--wd-ink); color: var(--wd-white); }
.wd-cot__form button {
  grid-column: 1 / -1;
  padding: 16px 28px;
  background: var(--wd-gold-soft);
  color: var(--wd-ink);
  border: none;
  border-radius: 999px;
  font-family: var(--wd-display);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s, transform .25s;
  margin-top: 8px;
}
.wd-cot__form button:hover {
  background: var(--wd-gold);
  transform: translateY(-2px);
}

/* ─── (legacy keep-just-in-case) old form styles ─── */
.wd01__quote-form { padding: clamp(80px,12vh,120px) 40px; }
.wd01__quote-form-inner { max-width: 720px; margin: 0 auto; background: var(--wd-white); border-radius: 24px; padding: clamp(40px,5vw,64px); border: 1px solid rgba(184,153,104,0.20); box-shadow: 0 40px 100px -50px rgba(184,153,104,0.30); }
.wd01__qfHead { text-align: center; margin-bottom: 32px; }
.wd01__qfEyebrow { display: block; font-family: var(--wd-mono); font-size: 11px; letter-spacing: 0.20em; color: var(--wd-gold-deep); margin-bottom: 16px; }
.wd01__qfHead h3 { font-family: var(--wd-cormo); font-weight: 300; font-size: clamp(28px,3.6vw,40px); color: var(--wd-ink); margin: 0 0 12px; }
.wd01__qfHead h3 em { font-family: var(--wd-cormo); font-style: italic; color: var(--wd-gold); }
.wd01__qfHead p { font-family: var(--wd-display); font-size: 14.5px; color: var(--wd-ink-soft); margin: 0; }
.wd01__quote-form form { display: flex; flex-direction: column; gap: 14px; }
.wd01__qfRow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wd01__quote-form input, .wd01__quote-form select, .wd01__quote-form textarea {
  font-family: var(--wd-display); font-size: 14px;
  padding: 14px 16px; border: 1px solid var(--wd-line); border-radius: 12px;
  background: var(--wd-ivory); color: var(--wd-ink); resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.wd01__quote-form input:focus, .wd01__quote-form select:focus, .wd01__quote-form textarea:focus {
  outline: none; border-color: var(--wd-gold);
  box-shadow: 0 0 0 3px rgba(184,153,104,0.15);
}
.wd01__quote-form input::placeholder, .wd01__quote-form textarea::placeholder { color: var(--wd-mute); }
.wd01__qfActions { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.wd01__qfBtn { padding: 16px 28px; background: var(--wd-ink); color: var(--wd-white); border: none; border-radius: 999px; font-family: var(--wd-display); font-size: 14px; font-weight: 500; cursor: pointer; transition: transform .25s, box-shadow .25s; }
.wd01__qfBtn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -16px rgba(26,22,20,0.45); }
.wd01__qfAlt { font-family: var(--wd-cormo); font-style: italic; font-size: 15px; color: var(--wd-gold-deep); text-decoration: none; transition: color .2s; }
.wd01__qfAlt:hover { color: var(--wd-gold); }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .wd-planes__grid { grid-template-columns: 1fr; gap: 20px; }
  .wd-plan--featured { order: -1; }
  .wd01__pillarsInner { grid-template-columns: 1fr; gap: 24px; }
  .wd-cob__inner { grid-template-columns: 1fr; gap: 32px; }
  .wd-cot__inner { grid-template-columns: 1fr; gap: 48px; }
  .wd-cot__form { grid-template-columns: 1fr; }
  .wd-cot__direct { max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .wd-cot__dir { flex: 1; min-width: 180px; justify-content: center; }
}
@media (max-width: 720px) {
  .wd01__heroContent, .wd01__intro, .wd-planes, .wd01__pillars, .wd01__quote, .wd01__quote-form, .wd-momentos, .wd-cob, .wd-cot { padding-left: 20px; padding-right: 20px; }
  .wd01__qfRow { grid-template-columns: 1fr; }
  .wd01__qfActions { flex-direction: column; align-items: stretch; gap: 12px; }
  .wd-momentos__item { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .wd-momentos__num { font-size: 24px; }
  .wd-cot__direct { flex-direction: column; }
}

/* =============================================================
   WD-SPEC · 3 ESPECIALIDADES — antes de planes
   ============================================================= */
.wd-spec {
  background: linear-gradient(180deg, var(--wd-ivory, #fbf6ed) 0%, var(--wd-cream-soft, #f5ecde) 100%);
  padding: clamp(64px, 10vh, 110px) clamp(24px, 4vw, 56px);
}
.wd-spec__inner { max-width: 1180px; margin: 0 auto; }
.wd-spec__header { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 7vh, 80px); }
.wd-spec__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--wd-gold-deep, #9a7d52); display: inline-block; margin-bottom: 20px;
}
.wd-spec__title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 200;
  font-size: clamp(32px, 4.8vw, 56px); line-height: 1.04; letter-spacing: -0.025em;
  color: var(--wd-ink, #1a1614); margin: 0 0 18px;
}
.wd-spec__title em {
  font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-weight: 400;
  color: var(--wd-gold, #b89968);
}
.wd-spec__lede {
  font-weight: 300; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.65;
  color: var(--wd-ink-soft, #4a3f38); margin: 0;
}

.wd-spec__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
.wd-spec__card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(184, 153, 104, 0.18);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease, box-shadow 0.5s ease;
}
.wd-spec__card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 153, 104, 0.4);
  box-shadow: 0 28px 60px -28px rgba(184, 153, 104, 0.30);
}
.wd-spec__card--featured {
  background: linear-gradient(170deg, #fdfaf3, #faf3e4);
  border-color: rgba(184, 153, 104, 0.35);
}
.wd-spec__badge {
  position: absolute; top: -10px; right: 24px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--wd-gold, #b89968); color: #fff;
  display: grid; place-items: center;
  font-family: 'EB Garamond', Georgia, serif; font-size: 16px;
  box-shadow: 0 6px 18px -6px rgba(184, 153, 104, 0.55);
}

.wd-spec__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(184, 153, 104, 0.12), rgba(184, 153, 104, 0.04));
  border: 1px solid rgba(184, 153, 104, 0.30);
  color: var(--wd-gold-deep, #9a7d52);
  margin-bottom: 22px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wd-spec__card:hover .wd-spec__icon { transform: rotate(-8deg) scale(1.05); }

.wd-spec__name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.015em;
  margin: 0 0 12px; color: var(--wd-ink, #1a1614);
}
.wd-spec__body {
  font-weight: 300; font-size: 15px; line-height: 1.65;
  color: var(--wd-ink-soft, #4a3f38); margin: 0;
}

@media (max-width: 900px) {
  .wd-spec__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
