:root {
  --cream: #fbf6ee;
  --cream-deep: #f3ead9;
  --ink: #1a1713;
  --ink-soft: #4a453f;
  --maroon: #93101f;
  --maroon-deep: #6e0c17;
  --gold: #b98a2e;
  --gold-soft: #d9b976;
  --line: rgba(26, 23, 19, 0.1);
  --shadow: 0 30px 60px -30px rgba(26, 23, 19, 0.35);
  --container: 1200px;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(147, 16, 31, 0.55);
}
.btn-primary:hover { background: var(--maroon-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.btn-ghost .btn-icon { background: var(--cream-deep); color: var(--ink); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(26,23,19,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.nav-logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--maroon);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a.active { color: var(--maroon); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--maroon);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-mobile-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: -6% 0 0 0;
  height: 112%;
  z-index: 0;
  will-change: transform;
}
.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-video-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,15,12,0.86) 0%, rgba(20,15,12,0.62) 32%, rgba(20,15,12,0.28) 58%, rgba(20,15,12,0.12) 100%),
    linear-gradient(0deg, rgba(15,11,9,0.55) 0%, rgba(15,11,9,0) 30%);
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: center;
  will-change: transform, opacity;
}
.hero-copy .eyebrow { color: var(--gold-soft); }
.hero-copy .eyebrow::after { background: var(--gold-soft); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.06;
  margin: 22px 0 20px;
  color: #fdf9f2;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-soft);
  background: linear-gradient(90deg, #e7c481, #c9a25c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(253, 249, 242, 0.82);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-ctas .btn-ghost { color: #fdf9f2; border-color: rgba(253,249,242,0.35); }
.hero-ctas .btn-ghost:hover { border-color: #fdf9f2; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(253,249,242,0.5);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars .plus {
  display: flex; align-items: center; justify-content: center;
  background: var(--maroon);
  color: #fff;
  font-size: 12px; font-weight: 700;
}
.hero-trust p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(253,249,242,0.75);
  line-height: 1.4;
}

/* HERO card — frosted glass overlay so it reads as part of the scene, not a pasted widget */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(40, 30, 22, 0.38), rgba(20, 15, 12, 0.5));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fdf9f2;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.hero-card-head h4 {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 700;
  color: #fdf9f2;
}
.hero-card-head span {
  font-size: 11.5px;
  color: rgba(253, 249, 242, 0.6);
}
.hero-card-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(217, 185, 118, 0.16);
  padding: 4px 10px;
  border-radius: 999px;
}
.hero-card-metric { margin-bottom: 14px; }
.hero-card-metric .label { font-size: 11.5px; color: rgba(253, 249, 242, 0.6); }
.hero-card-metric .value {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold-soft);
  line-height: 1.1;
}
.hero-chart {
  width: 100%; height: 76px;
  margin: 6px 0 16px;
}
.hero-card-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: #8be3af; font-weight: 600;
  background: rgba(139, 227, 175, 0.14);
  padding: 5px 11px; border-radius: 999px;
  float: right;
  margin-top: -54px;
}
.hero-card-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #8be3af;
}
.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
}
.hero-card-stats div p {
  margin: 0 0 4px;
  font-size: 10.5px;
  color: rgba(253, 249, 242, 0.6);
}
.hero-card-stats div strong {
  font-size: 16px;
  color: #fdf9f2;
}

/* SECTION shared */
section { padding: 110px 0; }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { display: none; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  margin: 14px 0 12px;
  line-height: 1.2;
}
.section-head p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: linear-gradient(180deg, #fffefc 0%, #fdf9f1 100%);
  border: 1px solid rgba(26, 23, 19, 0.06);
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 1px 2px rgba(26, 23, 19, 0.03), 0 20px 40px -34px rgba(26, 23, 19, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(147, 16, 31, 0.07);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 21px; height: 21px; }
.service-card h3 { font-size: 17px; margin: 0 0 10px; }
.service-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 18px; }
.service-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon);
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.service-card:hover .service-arrow {
  background: var(--maroon);
  color: #fff;
  transform: rotate(45deg);
}

/* WHY */
.why {
  background: var(--cream-deep);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.why-copy .eyebrow { justify-content: flex-start; }
.why-copy h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.25;
  margin: 16px 0 18px;
}
.why-copy p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; }
.why-copy a {
  color: var(--maroon);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.why-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-pillar { text-align: left; }
.why-pillar-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fffefc;
  border: 1px solid rgba(185, 138, 46, 0.4);
  box-shadow: 0 12px 26px -18px rgba(26, 23, 19, 0.4);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-pillar-icon svg { width: 20px; height: 20px; }
.why-pillar h4 { font-size: 15.5px; margin: 0 0 8px; }
.why-pillar p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: linear-gradient(180deg, #fffefc 0%, #fdf9f1 100%);
  border: 1px solid rgba(26, 23, 19, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(26, 23, 19, 0.03), 0 20px 40px -34px rgba(26, 23, 19, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card.featured {
  background: var(--ink);
  color: #fdf9f2;
  transform: scale(1.04);
  box-shadow: var(--shadow);
}
.package-card:hover { transform: translateY(-6px); }
.package-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.package-badge {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--maroon);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.package-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}
.package-head h3 { font-size: 19px; margin: 0 0 6px; }
.package-head p { font-size: 13px; margin: 0; opacity: 0.7; }
.package-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(147,16,31,0.1);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
}
.package-icon svg { width: 18px; height: 18px; }
.package-card.featured .package-icon { background: rgba(217,185,118,0.18); color: var(--gold-soft); }
.package-features {
  list-style: none;
  margin: 0 0 26px; padding: 0;
  font-size: 14px;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.package-card.featured .package-features li { border-bottom-color: rgba(255,255,255,0.12); }
.package-features li::before {
  content: "✓";
  color: var(--maroon);
  font-weight: 700;
}
.package-card.featured .package-features li::before { color: var(--gold-soft); }
.package-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.package-price div { font-family: var(--serif); }
.package-price .from { font-size: 12px; opacity: 0.7; font-family: var(--sans); }
.package-price .amount { font-size: 26px; color: var(--maroon); }
.package-card.featured .package-price .amount { color: var(--gold-soft); }
.package-price .per { font-size: 12px; font-family: var(--sans); opacity: 0.7; }
.package-price .service-arrow { border-color: var(--line); }
.package-card.featured .package-price .service-arrow { border-color: rgba(255,255,255,0.2); color: var(--gold-soft); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border-radius: 28px;
  margin: 0 auto;
  max-width: var(--container);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fdf9f2;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(217,185,118,0.18);
}
.cta-left h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 0;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.cta-left h2 em { font-style: normal; color: var(--gold-soft); }
.cta-right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-right p { max-width: 220px; font-size: 14px; margin: 0; opacity: 0.85; line-height: 1.6; }
.cta-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-right .btn-primary { background: #fdf9f2; color: var(--maroon); box-shadow: none; }
.cta-right .btn-primary:hover { background: var(--gold-soft); }
.cta-whatsapp { color: #fdf9f2; border-color: rgba(253,249,242,0.35); }
.cta-whatsapp:hover { border-color: #fdf9f2; }
.cta-pill {
  font-size: 12.5px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(253,249,242,0.3);
  padding: 8px 14px;
  border-radius: 999px;
}

/* FOOTER */
footer {
  padding: 70px 0 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 50px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  color: var(--ink-soft);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col a:hover { color: var(--maroon); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact .ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-pillars { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .package-card.featured { transform: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 380px; }
  .why-grid { grid-template-columns: 1fr; }

  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -20px rgba(26, 23, 19, 0.25);
    padding: 4px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }
  .nav-mobile-cta { display: block; margin-top: 14px; }
  .nav-mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: var(--maroon);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    border-bottom: none;
  }
}
@media (max-width: 640px) {
  section { padding: 76px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(26, 23, 19, 0.2);
  z-index: 90;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px -14px rgba(37, 211, 102, 0.7), 0 6px 16px rgba(26, 23, 19, 0.25);
}
@media (max-width: 640px) {
  .wa-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
  .wa-float svg { width: 25px; height: 25px; }
}

/* CONSULTATION MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 15, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: linear-gradient(180deg, #fffefc 0%, #fdf9f1 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.modal-close:hover { color: var(--maroon); border-color: var(--maroon); transform: rotate(90deg); }
.modal-head { margin-bottom: 28px; }
.modal-head .eyebrow { margin-bottom: 14px; }
.modal-head h3 {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--ink);
}
.modal-head h3 em { font-style: normal; color: var(--maroon); }
.modal-head p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.form-row { margin-bottom: 18px; }
.form-row-last { margin-bottom: 26px; }
.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(147, 16, 31, 0.1);
}
.form-textarea { resize: vertical; min-height: 88px; }
.form-phone-group { display: flex; gap: 8px; }
.form-cc { width: 128px; flex-shrink: 0; }
.form-phone-group .form-input { flex: 1; }

.modal-submit { width: 100%; justify-content: center; }
.modal-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.modal-success { display: none; text-align: center; padding: 30px 0 6px; }
.modal-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(147, 16, 31, 0.08);
  border: 1px solid rgba(185, 138, 46, 0.4);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.modal-success h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--ink);
}
.modal-success p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto 26px;
}

@media (max-width: 640px) {
  .modal-card { padding: 32px 24px; }
  .modal-overlay { padding: 30px 14px; }
}
