﻿:root {
  --cream: #f7f0e7;
  --cream-2: #fff9f1;
  --wine: #5e1216;
  --wine-2: #7a1a20;
  --wine-3: #3f0a0f;
  --gold: #d1a04b;
  --gold-2: #b88632;
  --gold-soft: rgba(209, 160, 75, 0.16);
  --text: #321418;
  --text-soft: #6b4d50;
  --line: rgba(94, 18, 22, 0.12);
  --shadow: 0 28px 70px rgba(44, 8, 12, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(209, 160, 75, 0.2), transparent 24%),
    linear-gradient(180deg, #fffaf4 0%, var(--cream) 100%);
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 56px;
  background:
    radial-gradient(circle at 15% 20%, rgba(209, 160, 75, 0.16), transparent 24%),
    linear-gradient(135deg, #fffaf2 0%, #f3e5d5 100%);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(94, 18, 22, 0.08), transparent 24%),
    radial-gradient(circle at 10% 80%, rgba(209, 160, 75, 0.14), transparent 24%);
  pointer-events: none;
}

.topbar,
.hero__content,
.urgency-grid,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(94, 18, 22, 0.12);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--wine);
}

.brand span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow--dark {
  color: var(--gold-2);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.hero__copy h1,
.section-heading h2,
.consult-card h2,
.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

.hero__copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.92;
  max-width: 13ch;
  color: var(--wine);
}

.hero__lead,
.info-card p,
.step-card p,
.cta-banner p,
.faq p,
.consult-card__note {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.hero__meta {
  margin: -4px 0 0;
  color: var(--wine);
  font-size: 0.96rem;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #d9ab58, #b88632);
  color: #fffaf1;
  box-shadow: 0 18px 44px rgba(184, 134, 50, 0.28);
}

.button--secondary,
.button--ghost {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(94, 18, 22, 0.12);
  backdrop-filter: blur(10px);
}

.button--block {
  width: 100%;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__pills li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(94, 18, 22, 0.06);
  color: var(--wine);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero__card {
  display: flex;
  justify-content: flex-end;
}

.consult-card {
  width: min(100%, 435px);
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 240, 230, 0.98));
  border: 1px solid rgba(209, 160, 75, 0.24);
  box-shadow: var(--shadow);
}

.consult-card__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult-card h2 {
  margin: 18px 0 16px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.98;
  color: var(--wine);
}

.consult-card__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.consult-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--wine);
  font-weight: 600;
}

.consult-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.consult-card__note {
  margin: 14px 0 0;
}

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

.urgency-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(94, 18, 22, 0.06);
}

.urgency-card strong,
.urgency-card span {
  display: block;
}

.urgency-card strong {
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 1.02rem;
}

.urgency-card span {
  color: var(--text-soft);
  line-height: 1.65;
}

.section {
  padding: 96px 0;
}

.section--light {
  background: transparent;
}

.section--wine {
  background:
    radial-gradient(circle at 20% 10%, rgba(209, 160, 75, 0.12), transparent 22%),
    linear-gradient(135deg, var(--wine-3) 0%, var(--wine) 55%, var(--wine-2) 100%);
}

.section--cta {
  padding-top: 0;
  padding-bottom: 10px;
}

.section--faq {
  padding-top: 24px;
  padding-bottom: 92px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading--light h2,
.section-heading--light p,
.section--wine .step-card h3,
.section--wine .step-card p {
  color: #fff7ef;
}

.section-heading h2,
.cta-banner h2 {
  margin: 14px 0 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.card-grid,
.steps {
  display: grid;
  gap: 22px;
}

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

.info-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(94, 18, 22, 0.08);
}

.info-card h3,
.step-card h3,
.faq summary {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--wine);
}

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

.step-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 238, 214, 0.14);
  backdrop-filter: blur(10px);
}

.step-card span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #d9ab58, #b88632);
  color: var(--wine);
  font-weight: 800;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.98), rgba(248, 234, 203, 0.95));
  border: 1px solid rgba(184, 134, 50, 0.18);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  max-width: 13ch;
  color: var(--wine);
}

.cta-banner p {
  margin: 12px 0 0;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.compact-heading {
  margin-bottom: 0;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(94, 18, 22, 0.06);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

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

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

.footer {
  padding: 38px 0 22px;
  background: linear-gradient(135deg, #2c070b 0%, #5e1216 100%);
  color: #f7e7c8;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand--footer strong {
  color: #fff4e2;
}

.brand--footer span,
.footer__action p {
  color: rgba(255, 244, 226, 0.78);
}

.footer__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer__note {
  margin: 28px 0 0;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 244, 226, 0.1);
  color: rgba(255, 244, 226, 0.62);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #189d4c);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(24, 157, 76, 0.3);
}

@media (max-width: 1024px) {
  .hero__content,
  .urgency-grid,
  .card-grid--3,
  .steps,
  .cta-banner,
  .faq-shell,
  .footer__content {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero__card,
  .footer__action {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero__copy h1,
  .cta-banner h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 42px;
  }

  .topbar,
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .section {
    padding: 74px 0;
  }

  .consult-card,
  .urgency-card,
  .info-card,
  .step-card,
  .cta-banner,
  .faq details {
    padding: 22px;
  }

  .button,
  .floating-whatsapp {
    width: 100%;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }
}
