:root {
  --wine-900: #61161e;
  --wine-800: #7d1d28;
  --wine-700: #9b3040;
  --wine-100: #f4e9eb;
  --slate-950: #1a1b20;
  --slate-800: #2e323b;
  --slate-600: #666b76;
  --slate-300: #cfd3da;
  --slate-100: #f5f6f8;
  --white: #ffffff;
  --shadow-lg: 0 28px 80px rgba(19, 17, 24, 0.16);
  --shadow-md: 0 18px 45px rgba(17, 16, 21, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1120px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--slate-800);
  background:
    radial-gradient(circle at top left, rgba(155, 48, 64, 0.1), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(102, 107, 118, 0.12), transparent 18%),
    linear-gradient(180deg, #eef1f4 0%, #e6eaee 100%);
}

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

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

p {
  margin: 0;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--slate-950);
  line-height: 1.1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 960px;
}

.section-light {
  background:
    linear-gradient(135deg, rgba(248, 249, 251, 0.96), rgba(240, 231, 233, 0.92)),
    rgba(245, 246, 248, 0.94);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(232, 236, 240, 0.94), rgba(242, 234, 236, 0.78));
}

.section-tag,
.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine-800);
}

.section-tag::before,
.eyebrow::before,
.panel-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(97, 22, 30, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand img {
  width: 138px;
  aspect-ratio: 1 / 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  color: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine-800), var(--wine-900));
  box-shadow: 0 16px 34px rgba(97, 22, 30, 0.24);
}

.button-secondary {
  color: var(--slate-950);
  border: 1px solid rgba(46, 50, 59, 0.14);
  background: rgba(255, 255, 255, 0.84);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(125, 29, 40, 0.34);
}

.hero {
  padding: 78px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(155, 48, 64, 0.16), transparent 18%),
    radial-gradient(circle at 10% 10%, rgba(97, 22, 30, 0.08), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 52px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.service-copy h2,
.contact-copy h2,
.about-card h2 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.hero-text {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1rem;
  color: var(--slate-600);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(97, 22, 30, 0.08);
  border-radius: var(--radius-md);
  background: rgba(248, 249, 251, 0.88);
  box-shadow: 0 14px 32px rgba(17, 16, 21, 0.08);
  font-size: 0.95rem;
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(247, 248, 250, 0.97), rgba(240, 231, 233, 0.92));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(97, 22, 30, 0.08);
}

.panel-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(155, 48, 64, 0.96), rgba(97, 22, 30, 0.97)),
    var(--wine-900);
}

.panel-card h2 {
  margin-top: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
}

.panel-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.panel-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.panel-details div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(46, 50, 59, 0.08);
}

.panel-details span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-600);
}

.panel-details strong {
  display: block;
  margin-top: 8px;
  color: var(--slate-950);
  font-size: 1.02rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.about-card,
.about-highlight,
.contact-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(249, 250, 251, 0.92);
  border: 1px solid rgba(97, 22, 30, 0.08);
  box-shadow: var(--shadow-md);
}

.about-card p,
.contact-copy p,
.section-heading p {
  margin-top: 18px;
  color: var(--slate-600);
}

.highlight-box {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.highlight-box p {
  padding: 18px 20px;
  border-left: 3px solid var(--wine-700);
  border-radius: 14px;
  background: rgba(244, 233, 235, 0.72);
}

.section-heading {
  max-width: 740px;
}

.section-heading h2,
.service-copy h2,
.contact-copy h2,
.about-card h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.areas-grid,
.benefits-grid,
.steps-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

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

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

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  position: relative;
  gap: 24px;
  margin-top: 22px;
  padding-top: 28px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 22px;
  right: 22px;
  height: 1px;
  background:
    linear-gradient(90deg,
      rgba(125, 29, 40, 0.08) 0%,
      rgba(125, 29, 40, 0.28) 18%,
      rgba(125, 29, 40, 0.16) 82%,
      rgba(125, 29, 40, 0.05) 100%);
}

.area-card,
.benefit-card,
.step-card,
.faq-item {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(248, 249, 251, 0.94);
  border: 1px solid rgba(46, 50, 59, 0.08);
  box-shadow: var(--shadow-md);
}

.area-card {
  background:
    linear-gradient(180deg, rgba(248, 249, 251, 0.98), rgba(239, 232, 234, 0.82));
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.area-number,
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 800;
  color: var(--wine-800);
  background: rgba(244, 233, 235, 0.92);
}

.area-card,
.benefit-card,
.faq-item {
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.area-card::before,
.benefit-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(125, 29, 40, 0.08), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
}

.area-card::after,
.benefit-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 29, 40, 0.55), rgba(125, 29, 40, 0));
  opacity: 0.6;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--wine-800);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 233, 235, 0.96));
  border: 1px solid rgba(125, 29, 40, 0.1);
  box-shadow:
    0 14px 26px rgba(125, 29, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(125, 29, 40, 0.78);
}

.area-card {
  padding-top: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 237, 239, 0.88));
  border-color: rgba(125, 29, 40, 0.1);
}

.area-number {
  position: absolute;
  top: 30px;
  right: 28px;
  z-index: 1;
  width: auto;
  min-width: 56px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  box-shadow: 0 10px 20px rgba(125, 29, 40, 0.08);
}

.benefit-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 242, 0.84));
  border-color: rgba(125, 29, 40, 0.08);
}

.faq-item {
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0.98), rgba(243, 236, 238, 0.84));
  border-color: rgba(125, 29, 40, 0.08);
}

.step-card {
  min-height: 100%;
  padding: 32px 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 243, 0.88));
  border: 1px solid rgba(125, 29, 40, 0.1);
  box-shadow:
    0 24px 48px rgba(26, 27, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(125, 29, 40, 0.08), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.25) 100%);
  pointer-events: none;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -12px;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 29, 40, 0.26), rgba(125, 29, 40, 0));
}

.step-card:nth-child(2) {
  margin-top: 28px;
}

.step-card:nth-child(3) {
  margin-top: 56px;
}

.step-card:last-child::after {
  display: none;
}

.step-index {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  background:
    linear-gradient(180deg, rgba(244, 233, 235, 1), rgba(253, 247, 248, 0.96));
  box-shadow: 0 12px 24px rgba(125, 29, 40, 0.09);
}

.step-label {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(125, 29, 40, 0.78);
}

.area-card h3,
.benefit-card h3,
.faq-item h3,
.contact-card h3 {
  margin-top: 16px;
  font-size: 1.28rem;
}

.step-card h3 {
  margin-top: 12px;
}

.area-card p,
.benefit-card p,
.faq-item p,
.contact-card p {
  margin-top: 14px;
  color: var(--slate-600);
}

.step-card p {
  color: var(--slate-600);
}

.area-card h3,
.benefit-card h3,
.faq-item h3 {
  position: relative;
  z-index: 1;
}

.area-card p,
.benefit-card p,
.faq-item p {
  position: relative;
  z-index: 1;
}

.area-card h3 {
  max-width: 12ch;
  font-size: 1.42rem;
}

.benefit-card h3,
.faq-item h3 {
  font-size: 1.34rem;
  line-height: 1.12;
}

.area-card:hover,
.benefit-card:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 29, 40, 0.18);
  box-shadow: 0 28px 50px rgba(26, 27, 32, 0.1);
}

.step-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  max-width: none;
  font-size: clamp(1.3rem, 1.2vw + 0.85rem, 1.52rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.step-card > p:last-child {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  max-width: 18ch;
  font-size: 1.02rem;
  line-height: 1.85;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 54px rgba(26, 27, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.service-copy {
  max-width: 520px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(97, 22, 30, 0.94), rgba(36, 38, 44, 0.97)),
    var(--wine-900);
}

.contact-copy h2,
.contact-copy p,
.contact-list p,
.contact-section .section-tag {
  color: var(--white);
}

.contact-section .section-tag::before {
  background: rgba(255, 255, 255, 0.5);
}

.contact-card {
  color: var(--slate-950);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.full {
  width: 100%;
  margin-top: 16px;
}

.site-footer {
  padding: 28px 0 42px;
  color: var(--slate-600);
  background: #e8ecef;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, #1f9f56, #0f7a3e);
  box-shadow: 0 22px 40px rgba(19, 72, 42, 0.28);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  .header-inner,
  .site-nav {
    gap: 18px;
  }

  .hero-grid,
  .service-grid,
  .about-grid,
  .contact-grid,
  .areas-grid,
  .benefits-grid,
  .steps-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    padding-top: 0;
    margin-top: 42px;
  }

  .steps-grid::before,
  .step-card::after {
    display: none;
  }

  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 50px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1000px);
  }

  .brand img {
    width: 150px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 13vw, 4.6rem);
  }

  .section-heading h2,
  .service-copy h2,
  .contact-copy h2,
  .about-card h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .about-card,
  .about-highlight,
  .contact-card,
  .hero-panel {
    padding: 24px;
  }

  .panel-card,
  .area-card,
  .benefit-card,
  .step-card,
  .faq-item {
    padding: 24px;
  }

  .step-card h3,
  .step-card > p:last-child {
    max-width: none;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
  }
}
