:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --luxury-red: #5D2120;
  --luxury-red-dark: #411615;
  --powder-blue: #7089C5;
  --champagne: #C99A4A;
  --cream: #F8F5F2;
  --ink: #111827;
  --muted: #5E6673;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 28px;
}

h3,
h4 {
  font-size: 20px;
}

p,
li,
address {
  font-size: 16px;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(112, 137, 197, 0.18), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #FDFBF9 100%);
}

.container-lux {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(93, 33, 32, 0.11);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--luxury-red);
  box-shadow: 0 14px 32px rgba(93, 33, 32, 0.24);
}

.logo-mark svg {
  width: 25px;
  height: 25px;
}

.desktop-nav {
  display: none !important;
}

.desktop-phone {
  display: none !important;
}

.nav-link {
  color: #1F2937;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: var(--luxury-red);
}

.hamburger {
  display: inline-flex !important;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(93, 33, 32, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--luxury-red);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hamburger span::before {
  transform: translateY(-7px);
}

.hamburger span::after {
  transform: translateY(5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 74px 0 auto 0;
  z-index: 49;
  background: #fff;
  border-bottom: 1px solid rgba(93, 33, 32, 0.12);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.18);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-panel {
  width: min(100%, 430px);
  margin-left: auto;
  padding: 24px 24px 30px;
  display: grid;
  gap: 16px;
}

.phone-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-button,
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--luxury-red), var(--luxury-red-dark));
  box-shadow: 0 18px 36px rgba(93, 33, 32, 0.28);
}

.secondary-button {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(93, 33, 32, 0.16);
}

.phone-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(93, 33, 32, 0.32);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 42px 0 52px;
  background: var(--cream);
  overflow: hidden;
}

.hero::before,
.hero::after,
.wave-line {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: rgba(112, 137, 197, 0.22);
}

.hero::after {
  width: 520px;
  height: 140px;
  left: -140px;
  bottom: 34px;
  border: 2px solid rgba(201, 154, 74, 0.24);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-media-card {
  min-height: 100%;
}

.hero-copy {
  padding: 28px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(112, 137, 197, 0.14);
  color: #263F7A;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 18px 0 12px;
  max-width: 720px;
}

.hero-lead {
  max-width: 670px;
  color: #283241;
  font-size: 18px;
}

.stars {
  color: var(--champagne);
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1;
  margin: 12px 0 14px;
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 22px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  object-fit: contain;
  border: 1px solid rgba(93, 33, 32, 0.16);
  border-radius: 12px;
  background: #fff;
  padding: 5px;
}

.cta-line {
  color: var(--luxury-red);
  font-weight: 900;
  margin: 18px 0 12px;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.hero-media-card {
  position: relative;
  min-height: 340px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--luxury-red);
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.2);
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.hero-media-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: #1F2937;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.16);
}

.hero-media-badge strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.section {
  padding: 64px 0;
}

.intro-section {
  background: #fff;
}

.intro-card {
  display: grid;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  padding: 24px;
  background: linear-gradient(135deg, #fff, #F8F5F2);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.intro-image,
.split-image {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.14);
}

.intro-image img,
.split-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.section-kicker {
  color: var(--luxury-red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.section-text {
  max-width: 780px;
  color: var(--muted);
}

.services-section {
  background: var(--cream);
}

.service-stack {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.service-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.07);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--luxury-red), var(--powder-blue));
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #F4F0ED;
  color: var(--luxury-red);
}

.service-icon svg,
.feature-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card ul,
.problem-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.split-section {
  background: #fff;
}

.split-card {
  display: grid;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(93, 33, 32, 0.1);
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.07);
}

.problem-list {
  counter-reset: problem;
  list-style: none;
  padding-left: 0;
}

.problem-list li {
  position: relative;
  padding: 18px 18px 18px 58px;
  border-radius: 20px;
  background: var(--cream);
  color: #374151;
}

.problem-list li::before {
  counter-increment: problem;
  content: counter(problem);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--luxury-red);
  color: #fff;
  font-weight: 900;
}

.reviews-section {
  background: #160F13;
  color: #F9FAFB;
  overflow: hidden;
}

.reviews-section h2,
.reviews-section h3 {
  color: #fff;
}

.reviews-section .section-text {
  color: #E5E7EB;
}

.carousel-shell {
  margin-top: 32px;
}

.carousel-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.review-slide {
  flex: 0 0 100%;
  padding: 2px 8px;
}

.review-card {
  height: 100%;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  color: #374151;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.review-card h3 {
  color: var(--ink);
}

.review-card .stars {
  margin: 0;
  font-size: 18px;
  letter-spacing: 2px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.about-section {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-card {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(112, 137, 197, 0.18);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: rgba(112, 137, 197, 0.16);
  color: #2F4C92;
  margin-bottom: 16px;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  border-radius: 24px;
  padding: 22px;
  background: var(--cream);
  border: 1px solid rgba(93, 33, 32, 0.1);
}

.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--luxury-red), #2B1113);
  color: #fff;
  overflow: hidden;
}

.cta-section h2,
.cta-section h3 {
  color: #fff;
}

.cta-section p {
  color: #F5F5F5;
}

.cta-box {
  display: grid;
  gap: 24px;
  align-items: center;
}

.footer {
  background: #0E0A0C;
  color: #E5E7EB;
  padding: 42px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer p,
.footer li,
.footer address,
.footer small {
  font-size: 14px;
  color: #D1D5DB;
}

.footer h3,
.footer h4 {
  color: #fff;
  font-size: 20px;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.disclaimer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(93, 33, 32, 0.16);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-sticky-call.is-visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-sticky-call a {
  width: 100%;
  min-height: 54px;
  color: #fff;
  background: var(--luxury-red);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .button-row {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: clamp(48px, 5vw, 66px);
  }

  h2 {
    font-size: clamp(34px, 3vw, 44px);
  }

  .hamburger,
  .mobile-menu,
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
    align-items: center;
    gap: 22px;
  }

  .desktop-phone {
    display: inline-flex !important;
  }

  .hero {
    padding: 72px 0 78px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 42px;
  }

  .hero-copy {
    padding: 22px 0;
  }

  .intro-card,
  .split-card,
  .cta-box {
    grid-template-columns: minmax(0, 65%) minmax(260px, 35%);
  }

  .service-card {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 30px 34px;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-slide {
    flex-basis: 33.333333%;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 88px 0;
  }

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

@media (max-width: 420px) {
  .logo-link {
    font-size: 22px;
  }

  .container-lux {
    width: min(100% - 24px, 1180px);
  }

  .mobile-sticky-call a {
    font-size: 15px;
  }
}
