:root {
  --coral: #d65a43;
  --coral-dark: #b94734;
  --blush: #f8d6d7;
  --lavender: #d9cceb;
  --ink: #332f32;
  --muted: #6f676b;
  --line: #eadedf;
  --paper: #fffafa;
  --soft: #f7f3f5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(51, 47, 50, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

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

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

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

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 224px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 0.94rem;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--coral);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(214, 90, 67, 0.22);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--coral-dark);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--coral);
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 250, 0.96) 0%, rgba(255, 250, 250, 0.88) 36%, rgba(255, 250, 250, 0.18) 66%),
    url("../images/generated-hero-image.png") center / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 610px;
  padding: 72px 0 92px;
}

.eyebrow {
  display: inline-flex;
  color: var(--coral-dark);
  background: rgba(248, 214, 215, 0.55);
  border: 1px solid rgba(214, 90, 67, 0.18);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.metric {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 222, 223, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(51, 47, 50, 0.08);
}

.metric strong {
  display: block;
  font-size: 1.35rem;
  color: var(--coral);
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--white);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 32px rgba(51, 47, 50, 0.06);
}

.service-card {
  min-height: 214px;
}

.icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-dark);
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-weight: 800;
}

.card p,
.faq p,
.testimonial p {
  color: var(--muted);
  margin-bottom: 0;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 34px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 800;
}

.banner {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: center;
  padding: 48px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.banner p {
  color: rgba(255, 255, 255, 0.76);
}

.banner img {
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.testimonial {
  min-height: 260px;
}

.quote-name {
  margin-top: 22px;
  font-weight: 800;
  color: var(--ink);
}

.quote-place {
  display: block;
  color: var(--coral);
  font-size: 0.9rem;
  margin-top: 2px;
}

.faq {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq h3 {
  margin-bottom: 8px;
}

.page-hero {
  padding: 96px 0 72px;
  background:
    linear-gradient(135deg, rgba(248, 214, 215, 0.7), rgba(217, 204, 235, 0.52)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 780px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-item strong {
  display: block;
  color: var(--coral-dark);
  margin-bottom: 4px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.map-box {
  min-height: 260px;
  display: grid;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(248, 214, 215, 0.82), rgba(217, 204, 235, 0.72)),
    var(--white);
}

.site-footer {
  padding: 58px 0 28px;
  background: #2b292b;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  width: 230px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 13px 0;
  }

  .nav-links .btn {
    margin-top: 10px;
  }

  .split,
  .banner,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 250, 0.96) 0%, rgba(255, 250, 250, 0.88) 58%, rgba(255, 250, 250, 0.42) 100%),
      url("../images/generated-hero-image.png") center / cover no-repeat;
  }

  .hero-content {
    padding: 58px 0 68px;
  }

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

  .section {
    padding: 68px 0;
  }

  .banner {
    padding: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .brand img {
    width: 184px;
  }

  h1 {
    font-size: 2.28rem;
  }

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

  .card {
    padding: 22px;
  }
}
/* @vn-deploy:1780325725476 */
