/* === 120 District — Blue-Gray Palette === */
:root {
  --bg: #F3F5F8;
  --bg-2: #E9EDF2;
  --bg-3: #C9D3DF;
  --ink: #16202C;
  --ink-2: #3D4D63;
  --ink-3: #7C8898;
  --cherry: #4A6B8A;        /* primary accent (was cherry) */
  --cherry-deep: #2F4E6B;   /* deep accent */
  --cherry-soft: #D6DFEA;   /* soft tint for pills, highlights */
  --cream: #FAFBFD;
  --line: #D4DBE3;
  --line-2: #E2E6EC;
  --shadow: 0 1px 2px rgba(22,32,44,0.04), 0 8px 24px rgba(47,78,107,0.08);
  --shadow-lg: 0 24px 60px rgba(47,78,107,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(44px, 6.2vw, 92px); letter-spacing: -0.025em; }
h2 { font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
h4 { font-size: 20px; font-family: 'Geist', sans-serif; font-weight: 500; }

p { margin: 0 0 1em; color: var(--ink-2); }
.eyebrow {
  font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--cherry-deep);
  font-weight: 500;
}
.italic { font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; }

a { color: var(--cherry-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--cherry); color: #fff; box-shadow: 0 6px 20px rgba(47,78,107,0.28); }
.btn-primary:hover { background: var(--cherry-deep); box-shadow: 0 10px 28px rgba(47,78,107,0.4); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-soft { background: var(--cherry-soft); color: var(--cherry-deep); }
.btn-soft:hover { background: var(--cream); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* === Navbar === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,245,242,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; line-height: 1;
  color: var(--ink);
}
.brand-mark em { color: var(--cherry); font-style: italic; }
.brand-sub { font-size: 11px; color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-2); font-size: 14px; font-weight: 500;
}
.nav-links a:hover { color: var(--cherry-deep); text-decoration: none; }
@media (max-width: 820px) {
  .nav-links a:not(.btn) { display: none; }
}

/* === Hero === */
.hero {
  padding: 64px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-eye {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cherry-soft);
  color: var(--cherry-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.hero-eye .dot { width: 6px; height: 6px; background: var(--cherry); border-radius: 999px; }
.hero h1 { max-width: 14ch; margin-bottom: 32px; text-wrap: balance; }
.hero h1 em { color: var(--cherry); font-style: italic; }
.hero-lede { max-width: 56ch; font-size: 19px; color: var(--ink-2); margin-bottom: 36px; }
.hero-lede strong { color: var(--ink); font-weight: 500; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-fine { font-size: 13px; color: var(--ink-3); margin-top: 18px; max-width: 52ch; }

.hero-stack {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.hero-stack image-slot { width: 100%; height: auto; border-radius: var(--radius-lg); overflow: hidden; display: block; }
.hero-stack .a { aspect-ratio: 4 / 3; }
.hero-stack .b { aspect-ratio: 3 / 4; }
.hero-stack.hero-stack-single { grid-template-columns: 1fr; }
.hero-stack.hero-stack-single .a { aspect-ratio: 16 / 9; }
@media (max-width: 820px) {
  .hero-stack { grid-template-columns: 1fr; }
}

/* === Media strip === */
.media {
  padding: 56px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-2);
}
.media-head { text-align: center; margin-bottom: 32px; }
.media-head h2 { font-size: clamp(24px, 3vw, 38px); max-width: 22ch; margin: 0 auto; text-wrap: balance; }
.media-head h2 em { color: var(--cherry); font-style: italic; }
.media-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 22px;
  font-family: 'Instrument Serif', serif; color: var(--ink-2);
}
.media-row span {
  font-size: 22px; letter-spacing: -0.01em;
  padding: 10px 18px; border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}
.media-row image-slot.media-logos {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 2396 / 282;
  display: block;
  --slot-bg: transparent;
}
.media-row image-slot.media-logos::part(frame) {
  background: transparent;
}
.media-row image-slot.media-logo {
  width: 168px;
  height: 72px;
  display: block;
  --slot-bg: var(--cream);
}
.media-row image-slot.media-logo::part(frame) {
  background: var(--cream);
  border: 1px solid var(--line);
}
@media (max-width: 820px) {
  .media-row image-slot.media-logo { width: 140px; height: 60px; }
}

/* === Sections === */
.section { padding: 120px 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 18px; text-wrap: balance; }
.section-head h2 em { color: var(--cherry); font-style: italic; }
.section-head p { font-size: 18px; }

/* Value props */
.values {
  background: var(--bg-2);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.value-card .num {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--cherry);
  font-style: italic;
}
.value-card h3 { text-wrap: balance; }
.value-card p { margin: 0; }

/* Project intro */
.project-intro { background: var(--bg); }
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 820px) { .project-grid { grid-template-columns: 1fr; gap: 32px; } }
.project-grid image-slot { width: 100%; height: auto; aspect-ratio: 4/5; border-radius: var(--radius-lg); display: block; }
.spec-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.spec-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.spec-list .k { color: var(--ink-3); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; }
.spec-list .v { font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--ink); text-align: right; }

/* Amenities gallery */
.amen-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}
.amen-gallery image-slot { width: 100%; height: 100%; border-radius: 12px; display: block; }
.amen-gallery .x1 { grid-column: span 3; grid-row: span 2; }
.amen-gallery .x2 { grid-column: span 3; grid-row: span 1; }
.amen-gallery .x3 { grid-column: span 2; grid-row: span 2; }
.amen-gallery .x4 { grid-column: span 2; grid-row: span 1; }
.amen-gallery .x5 { grid-column: span 2; grid-row: span 1; }
.amen-gallery .x6 { grid-column: span 3; grid-row: span 1; }
.amen-gallery .x7 { grid-column: span 3; grid-row: span 1; }
@media (max-width: 820px) {
  .amen-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .amen-gallery > * { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* Amenities carousel */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  margin: 0;
  flex: 0 0 calc(50% - 9px);
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 12px;
}
.carousel-slide image-slot {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 18px;
}
.carousel-slide figcaption {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-left: 2px;
}
@media (max-width: 820px) {
  .carousel-slide { flex: 0 0 86%; }
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 28px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s ease;
  font-family: inherit;
}
.carousel-btn:hover:not(:disabled) {
  background: var(--cherry);
  color: #fff;
  border-color: var(--cherry);
  transform: translateY(-1px);
}
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}
.carousel-dot.active {
  background: var(--cherry);
  width: 24px;
}
.carousel-dot:hover { background: var(--cherry-deep); }

.amen-list {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 32px;
  list-style: none; padding: 0;
}
.amen-list li {
  padding: 12px 0; font-size: 15px; color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 10px;
}
.amen-list li::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--cherry); flex: 0 0 6px; }
@media (max-width: 820px) { .amen-list { grid-template-columns: 1fr; } }

/* Track record / developments grid */
.track-record .section-head p strong { color: var(--ink); font-weight: 500; }
.dev-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 28px;
  align-items: center;
}
.dev-grid image-slot.dev-tile {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  --slot-bg: transparent;
}
.dev-grid image-slot.dev-tile::part(frame) {
  background: transparent;
  border: 0;
}
.dev-grid image-slot.dev-tile::part(ring) { display: none; }
@media (max-width: 1080px) { .dev-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .dev-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Events / Retiro Inmobiliario */
.events .section-head p strong { color: var(--ink); font-weight: 500; }
.events-banner {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  margin-bottom: 64px;
  --slot-bg: var(--bg-2);
}
.speakers-group { margin-top: 56px; }
.speakers-group:first-of-type { margin-top: 0; }
.speakers-group-title {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cherry-deep);
  font-weight: 500;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.speaker { display: flex; flex-direction: column; gap: 16px; }
.speaker image-slot.speaker-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  --slot-bg: var(--bg-2);
}
.speaker-body { display: flex; flex-direction: column; gap: 6px; }
.speaker-name {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.speaker-role {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
  text-wrap: pretty;
}
.speakers-foot {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
}
@media (max-width: 1080px) { .speakers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  {
  .speakers-grid { grid-template-columns: 1fr; }
  .events-banner { aspect-ratio: 16 / 9; }
}

/* Stats */
.stats {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  align-items: center;
}
.stats h2 { color: var(--cream); text-wrap: balance; }
.stats h2 em { color: var(--cherry-soft); font-style: italic; }
.stats p { color: rgba(250,251,253,0.72); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.stat .n {
  font-family: 'Instrument Serif', serif;
  font-size: 58px; line-height: 1;
  color: var(--cherry-soft); font-style: italic;
}
.stat .l { color: rgba(250,251,253,0.72); font-size: 14px; margin-top: 8px; }
@media (max-width: 820px) {
  .stats { grid-template-columns: 1fr; padding: 48px 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
}
.step .n {
  font-family: 'Instrument Serif', serif;
  font-size: 36px; line-height: 1;
  color: var(--cherry);
  font-style: italic;
  width: 56px; flex: 0 0 56px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; font-size: 15px; }
@media (max-width: 820px) { .process-grid { grid-template-columns: 1fr; } }

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.member {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.member image-slot { width: 100%; height: auto; aspect-ratio: 1/1; display: block; }
.member-body { padding: 24px 24px 28px; }
.member-body h3 { margin-bottom: 6px; }
.member-body .role { color: var(--ink-3); font-size: 13px; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 22px 28px;
  cursor: pointer;
  transition: background .15s ease;
}
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 18px; font-weight: 500; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--cherry-soft); color: var(--cherry-deep);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 28px;
  transition: transform .2s ease, background .2s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--cherry); color: #fff; }
.faq-item .a { padding-top: 14px; color: var(--ink-2); font-size: 16px; }

/* Final CTA */
.cta-final {
  background: linear-gradient(135deg, var(--cherry-soft) 0%, var(--bg-3) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 56px;
  text-align: center;
}
.cta-final h2 { max-width: 22ch; margin: 0 auto 20px; }
.cta-final h2 em { font-style: italic; color: var(--cherry-deep); }
.cta-final p { max-width: 48ch; margin: 0 auto 36px; font-size: 18px; }
.cta-final .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 820px) { .cta-final { padding: 56px 24px; } }

/* Footer */
.footer {
  padding: 64px 0 36px;
  border-top: 1px solid var(--line-2);
  margin-top: 80px;
  font-size: 14px;
  color: var(--ink-3);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-2);
}
.footer h4 { font-family: 'Geist', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); margin-bottom: 16px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { color: var(--ink-2); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 28px; flex-wrap: wrap;
}
.footer-bot p { margin: 0; font-size: 12px; max-width: 80ch; line-height: 1.5; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* === Modal form === */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(42,21,24,0.42);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 100;
  animation: fadein .2s ease;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: slideup .25s ease;
}
@keyframes slideup { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-2);
}
.modal-head .step-count { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 12px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; }
.modal-close {
  background: transparent; border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.modal-close:hover { background: var(--bg-2); color: var(--cherry-deep); }
.modal-prog {
  height: 3px; background: var(--line-2); overflow: hidden;
}
.modal-prog .bar { height: 100%; background: var(--cherry); transition: width .35s ease; }
.modal-body {
  padding: 32px 28px;
  overflow-y: auto;
  flex: 1;
}
.modal.modal-ghl {
  max-width: 640px;
  height: min(820px, calc(100vh - 48px));
}
.modal-body.ghl-body {
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  background: var(--cream);
}
.modal-body.ghl-body iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}
.modal-body h3 { font-family: 'Instrument Serif', serif; font-size: 28px; margin-bottom: 8px; text-wrap: balance; }
.modal-body .sub { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }
.modal-foot {
  padding: 18px 24px; border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; gap: 12px;
}
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.field input {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit; font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus { border-color: var(--cherry); background: #fff; }
.opts { display: grid; gap: 10px; }
.opt {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  transition: all .15s ease;
  display: flex; align-items: center; gap: 12px;
}
.opt:hover { border-color: var(--cherry); background: #fff; }
.opt.selected { border-color: var(--cherry); background: var(--cherry-soft); color: var(--cherry-deep); font-weight: 500; }
.opt .check {
  width: 18px; height: 18px; border-radius: 999px; border: 1.5px solid var(--line); flex: 0 0 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.opt.selected .check { border-color: var(--cherry-deep); background: var(--cherry); }
.opt.selected .check::after { content: ""; width: 6px; height: 6px; border-radius: 999px; background: #fff; }
.error-msg { color: var(--cherry-deep); font-size: 13px; margin-top: 8px; }

.success {
  text-align: center; padding: 24px 12px;
}
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--cherry-soft); color: var(--cherry-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 32px;
}

/* WhatsApp floating button */
.wa {
  position: fixed; bottom: 22px; right: 22px;
  background: #25D366; color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  display: inline-flex; align-items: center; gap: 10px;
  z-index: 40;
}
.wa:hover { text-decoration: none; transform: translateY(-2px); }

/* Misc */
.divider { height: 1px; background: var(--line-2); margin: 0; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--cherry-soft); color: var(--cherry-deep);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
}
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .split-2 { grid-template-columns: 1fr; gap: 32px; } }

.quote {
  padding: 64px 0;
  text-align: center;
}
.quote p {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto;
}
.quote p em { color: var(--cherry); font-style: italic; }
.quote .by { font-size: 13px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 18px; }

/* image-slot custom look */
image-slot {
  --slot-bg: #DCE3EC;
  --slot-fg: var(--ink-3);
  --slot-border: var(--line);
}
.split-2 image-slot { width: 100%; height: auto; display: block; }
