:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --border: rgba(85, 2, 4, 0.14);
  --shadow: 0 24px 70px rgba(36, 7, 10, 0.14);
  --soft-shadow: 0 16px 42px rgba(36, 7, 10, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

p {
  font-size: 16px;
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(35px, 5vw, 68px);
}

h2 {
  font-size: clamp(28px, 3.6vw, 46px);
}

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

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

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

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(85, 2, 4, 0.22);
  flex: 0 0 auto;
}

.logo-mark svg,
.icon svg,
.title-icon svg,
.phone-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: #2f2930;
  font-size: 18px;
  font-weight: 700;
}

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

.btn,
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.btn-primary,
.phone-button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 34px rgba(85, 2, 4, 0.24);
}

.btn-primary:hover,
.phone-button:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(85, 2, 4, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: rgba(85, 2, 4, 0.18);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.phone-icon {
  font-size: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--heading);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  padding: 44px 0 34px;
  background:
    radial-gradient(circle at 16% 14%, rgba(118, 90, 172, 0.22), transparent 30%),
    linear-gradient(135deg, #fff7f3 0%, #fbf4f8 54%, #f4efff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-height: 520px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(85, 2, 4, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 1rem;
}

.stars {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 0.08em;
  margin: 1rem 0 0.75rem;
}

.trust-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.gallery-badge {
  width: 58px;
  height: 58px;
  padding: 7px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(36, 7, 10, 0.1);
}

.hero-cta-text {
  font-size: 18px;
  color: #2f2930;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-dark);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-card strong {
  color: var(--heading);
}

.section {
  padding: 82px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(118, 90, 172, 0.24), transparent 34%),
    var(--surface-dark);
  color: #fff;
}

.intro-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--border);
  font-size: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.heading-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.title-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(85, 2, 4, 0.18);
}

.split-card {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
}

.split-card.reverse {
  grid-template-columns: 35% 65%;
}

.split-text {
  padding: clamp(1rem, 3vw, 2rem);
  align-self: center;
}

.split-media {
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #eee;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 1rem;
  font-size: 16px;
}

.why-table th,
.why-table td {
  padding: 0.95rem;
  border-bottom: 1px solid rgba(85, 2, 4, 0.1);
  text-align: left;
}

.why-table th {
  color: #fff;
  background: var(--primary);
}

.why-table tr:nth-child(odd) td {
  background: #fff8f7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.25rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(36, 7, 10, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(36, 7, 10, 0.13);
}

.service-icon,
.mini-icon {
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(118, 90, 172, 0.1);
  border: 1px solid rgba(118, 90, 172, 0.2);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 1rem;
  font-size: 30px;
}

.service-card h3 {
  margin-bottom: 0.65rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.step {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(118, 90, 172, 0.08);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.reviews-wrap {
  position: relative;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  flex: 0 0 33.333%;
  padding: 0.55rem;
}

.review-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border-radius: 24px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.review-card .stars {
  margin: 0 0 0.75rem;
  font-size: 18px;
}

.review-author {
  font-weight: 900;
  color: var(--heading);
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  background: rgba(255,255,255,0.12);
  font-size: 22px;
  cursor: pointer;
}

.area-pills,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.area-pills {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.2rem;
}

.pill {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--heading);
  text-align: center;
  font-weight: 800;
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.cta-band h2,
.section-dark h2,
.section-dark h3,
.section-dark .section-heading p {
  color: #fff;
}

.cta-band .btn {
  background: #fff;
  color: #111827;
}

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

.faq-item {
  padding: 1.25rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--border);
}

.contact-panel {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--surface-alt);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: var(--heading);
  font-weight: 700;
}

.contact-list a {
  color: #111827;
}

.site-footer {
  background: var(--surface-dark);
  color: #f7eeee;
  padding: 54px 0 84px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.5fr;
  gap: 2rem;
}

.site-footer a,
.site-footer .logo {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.disclaimer {
  font-size: 14px;
  color: #e7dada;
}

.copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}

.mobile-call {
  display: none;
  position: fixed;
  z-index: 80;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  min-height: 54px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 112px;
    flex-wrap: wrap;
    align-content: center;
  }

  .logo {
    flex: 1 1 calc(100% - 64px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 112px;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-wrap .phone-button {
    flex: 1;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
  }

  .hero {
    padding-top: 24px;
  }

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

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

  .hero-visual {
    aspect-ratio: 1 / 1;
  }

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

  .area-pills {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  h1 {
    font-size: clamp(25px, 9vw, 39px);
  }

  h2 {
    font-size: clamp(20px, 7vw, 32px);
  }

  .section {
    padding: 56px 0;
  }

  .logo {
    font-size: 24px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .hero-copy {
    padding: 1.1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .gallery-badge {
    width: 50px;
    height: 50px;
  }

  .split-card,
  .contact-card {
    padding: 0.7rem;
  }

  .split-media {
    min-height: 240px;
  }

  .service-grid,
  .faq-grid,
  .area-pills {
    grid-template-columns: 1fr;
  }

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

  .review-card {
    min-height: 250px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-call {
    display: flex;
    font-size: 15px;
  }
}
