:root {
  --bg: #f8f3ee;
  --bg-soft: #efe4d7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #2b221d;
  --muted: #6f6258;
  --line: rgba(43, 34, 29, 0.08);

  --accent: #bc9473;
  --accent-dark: #8b674d;
  --accent-soft: #e8d8c9;

  --shadow-soft: 0 12px 30px rgba(43, 34, 29, 0.06);
  --shadow-medium: 0 22px 56px rgba(43, 34, 29, 0.10);
  --shadow-strong: 0 34px 88px rgba(43, 34, 29, 0.14);

  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;

  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 28%),
    radial-gradient(circle at bottom right, rgba(232,216,201,0.26), transparent 28%),
    linear-gradient(180deg, #fcf9f6 0%, #f6efe8 52%, #efe4d7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 44px, var(--container));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 238, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: var(--shadow-soft);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.18s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

/* Hero */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 88px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    radial-gradient(circle at top right, rgba(232,216,201,0.34), transparent 24%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.46), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(188,148,115,0.14), transparent 18%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag,
.card-kicker,
.service-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero-text {
  margin: 0 0 32px;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.hero-points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--surface-strong), rgba(255,255,255,0.76));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.hero-card-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.12;
}

.hero-card-inner p {
  margin: 0;
  color: var(--muted);
}

/* Trust */

.trust-section {
  padding: 10px 0 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item {
  padding: 26px 22px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}

/* Shared sections */

.services-section,
.about-section,
.process-section,
.price-section,
.reviews-section,
.contact-section {
  padding: 98px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  max-width: 860px;
}

.section-head.center h2,
.section-head.center .section-text {
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), transparent);
}

.service-card-large {
  min-height: 100%;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(rgba(43,34,29,0.12), rgba(43,34,29,0.05)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.about-copy {
  padding: 14px 4px;
}

.about-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-card {
  padding: 30px 24px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.process-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

/* Prices */

.price-wrap {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.price-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.price-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.price-card {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--surface-strong), rgba(255,255,255,0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-medium);
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-line:first-child {
  padding-top: 0;
}

.price-line span {
  color: var(--muted);
}

.price-line strong {
  color: var(--text);
  white-space: nowrap;
}

/* Reviews */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

/* Contact */

.contact-box {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 26px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(232,216,201,0.30) 0%, transparent 30%),
    linear-gradient(180deg, var(--surface-strong), rgba(255,255,255,0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.contact-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.contact-info-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}

.contact-info-card h3 {
  margin: 0 0 12px;
}

.contact-info-card ul {
  margin: 0;
  padding-left: 20px;
}

.contact-info-card li {
  margin-bottom: 8px;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .price-wrap,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .process-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-large {
    grid-column: 1 / -1;
  }

  .about-image {
    min-height: 420px;
  }

  .main-nav {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero-section {
    padding: 76px 0 60px;
  }

  .services-section,
  .about-section,
  .process-section,
  .price-section,
  .reviews-section,
  .contact-section {
    padding: 72px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .about-copy h2,
  .price-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-card-inner,
  .contact-box {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 24px;
  }

  .about-image {
    min-height: 320px;
  }

  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}