:root {
  --ink: #21191d;
  --muted: #74676d;
  --line: #eadfe3;
  --paper: #fcf8f9;
  --soft: #f5ecef;
  --wine: #6e2438;
  --wine-dark: #451522;
  --rose: #c995a4;
  --rose-soft: #f1dce2;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(69, 21, 34, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark,
.contact-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 149, 164, .55);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--rose));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

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

.brand strong {
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--wine-dark);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--wine-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--wine);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--whatsapp-dark);
  border-radius: var(--radius);
  gap: 9px;
  color: var(--white);
  background: var(--whatsapp);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.header-action:hover,
.button.primary:hover {
  background: var(--whatsapp-dark);
}

.header-action.pending,
.button.pending,
.header-action.pending:hover,
.button.pending:hover {
  border-color: var(--whatsapp-dark);
  background: var(--whatsapp);
  cursor: default;
}

.header-action svg,
.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 149, 164, .30), transparent 30%),
    linear-gradient(135deg, #6e2438 0%, #451522 48%, #21191d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .40), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr);
  align-items: stretch;
  column-gap: 56px;
  row-gap: 34px;
}

.hero-copy {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-areas .eyebrow,
.contact .eyebrow {
  color: #f2c4cf;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.lead {
  max-width: 660px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.55;
}

.lead.compact {
  margin-top: 18px;
  margin-bottom: 26px;
  font-weight: 800;
}

.hero-callout {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.split,
.areas,
.steps-section,
.contact {
  padding: 92px 0;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.split h2,
.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-note {
  max-width: 420px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.urgency-grid article,
.service-grid article,
.steps-grid article,
.feature-list article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(69, 21, 34, .08);
}

.urgency-grid article {
  min-height: 142px;
  padding: 22px;
}

.urgency-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--wine);
  background: var(--rose-soft);
  font-weight: 900;
}

.urgency-grid p,
.service-grid p,
.steps-grid p,
.feature-list p,
.contact-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.urgency-grid p,
.service-grid p,
.steps-grid p,
.feature-list p {
  margin-bottom: 0;
}

.dark-areas {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(69, 21, 34, .98), rgba(33, 25, 29, .98)),
    var(--wine-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-grid article {
  position: relative;
  min-height: 255px;
  padding: 34px;
  color: var(--ink);
}

.service-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--rose);
  font-size: 30px;
  font-weight: 900;
}

.service-grid h3,
.steps-grid h3,
.feature-list h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.steps-section {
  background: var(--soft);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 44px;
  right: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), rgba(110, 36, 56, .10));
}

.steps-grid article {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--rose));
  box-shadow: 0 12px 26px rgba(69, 21, 34, .20);
  font-weight: 900;
}

.differentials-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, var(--paper), var(--soft));
}

.differentials-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.differentials-heading .eyebrow {
  margin-bottom: 14px;
}

.differentials-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.split .eyebrow,
.section-heading .eyebrow,
.differentials-heading .eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: none;
}

.dark-areas .section-heading .eyebrow {
  color: var(--white);
}

.split h2,
.section-heading h2,
.differentials-heading h2 {
  max-width: 680px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.45;
}

.dark-areas .section-heading h2 {
  color: rgba(255, 255, 255, .76);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}

.feature-list article {
  position: relative;
  min-height: 210px;
  padding: 30px 24px 26px;
}

.feature-list article::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 8px var(--rose-soft);
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-copy p,
.contact-card p {
  color: rgba(255, 255, 255, .74);
}

.contact-card {
  padding: 34px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.contact-card h3 {
  margin-top: 24px;
  color: var(--white);
}

.contact-button {
  width: 100%;
  margin-top: 14px;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, .76);
  background: #120c0f;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-credit img {
  width: 112px;
  height: auto;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--wine-dark);
    border-radius: var(--radius);
    background: var(--white);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
  }

  .header-action {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero {
    padding: 58px 0 52px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .urgency-grid,
  .service-grid,
  .steps-grid,
  .feature-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    margin-inline: -20px;
    padding: 4px 20px 18px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .urgency-grid article,
  .service-grid article,
  .steps-grid article,
  .feature-list article {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .hero-copy {
    min-height: auto;
  }

  .steps-grid::before {
    display: none;
  }

  .split,
  .areas,
  .steps-section,
  .differentials-section,
  .contact {
    padding: 64px 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 11px;
  }

  h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 17px;
  }

  .button,
  .header-action,
  .hero-actions {
    width: 100%;
  }

  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .urgency-grid article,
  .service-grid article,
  .steps-grid article,
  .feature-list article,
  .contact-card {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
