:root {
  --orange: #f68e5b;
  --orange-dark: #d86d3c;
  --mauve: #af6cac;
  --ink: #2f2d31;
  --muted: #6f6870;
  --line: #ece3e1;
  --soft: #fff7f2;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(47, 45, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(310px, 58vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: #4a444c;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--orange-dark);
  background: #fff0e8;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--ink);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(255, 247, 242, 0.95), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 72% 16%, rgba(175, 108, 172, 0.14), transparent 32%);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: #29262b;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  margin: 18px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.hero-media img,
.page-hero img,
.split-image img,
.process-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--mauve));
  box-shadow: 0 12px 30px rgba(246, 142, 91, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 70px);
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-copy.narrow {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: #2d2930;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.intro-grid,
.service-grid,
.testimonial-grid,
.values-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.service-card,
blockquote,
.value-card,
.contact-panel,
.contact-form,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(47, 45, 49, 0.06);
}

.intro-grid article {
  padding: 26px;
}

.intro-grid span,
.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--mauve);
  font-weight: 900;
}

.split-section,
.process-section,
.page-hero,
.contact-grid-section,
.map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 70px);
}

.split-section {
  background: #fffaf7;
}

.split-section.reverse {
  background: var(--white);
}

.split-copy p {
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange-dark);
  font-weight: 900;
  border-bottom: 2px solid rgba(246, 142, 91, 0.42);
}

.services-preview,
.faq-section {
  background: var(--soft);
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--mauve));
}

.center-action {
  justify-content: center;
}

.process-section {
  background: #302b32;
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section p {
  color: #ded5dd;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  margin-top: 0;
  color: #4b454d;
  font-size: 17px;
}

cite {
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(20px, 4vw, 54px) clamp(20px, 5vw, 70px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #302b32, #6e466f 55%, #d8764d);
}

.contact-strip h2,
.contact-strip p,
.contact-strip .eyebrow {
  color: var(--white);
}

.page-hero {
  background: linear-gradient(120deg, #fff7f2, #ffffff);
}

.page-hero > div {
  max-width: 690px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
}

.values-band {
  padding: 0 clamp(20px, 5vw, 70px) clamp(62px, 8vw, 104px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  padding: 24px;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--mauve));
}

.contact-grid-section {
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: clamp(24px, 4vw, 38px);
}

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

.contact-line span,
label {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-line a,
.contact-line p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-panel .button {
  margin-top: 24px;
}

input,
textarea {
  width: 100%;
  margin: 0 0 16px;
  padding: 13px 14px;
  border: 1px solid #ded4d9;
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: #fffdfc;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(246, 142, 91, 0.2);
  border-color: var(--orange);
}

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

.map-card {
  min-height: 300px;
  padding: clamp(28px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(246, 142, 91, 0.92), rgba(175, 108, 172, 0.92)),
    url("../images/generated-quality-image.png") center/cover;
  color: var(--white);
}

.map-card span,
.map-card p,
.map-card strong {
  display: block;
  color: var(--white);
}

.map-card strong {
  margin: 12px 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  gap: 30px;
  padding: 48px clamp(20px, 5vw, 70px) 28px;
  color: #d9d4d9;
  background: #262328;
}

.site-footer img {
  width: min(270px, 64vw);
  margin-bottom: 16px;
  filter: brightness(1.25);
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 8px 0;
  color: #d9d4d9;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .service-grid,
  .intro-grid,
  .testimonial-grid,
  .values-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split-section,
  .process-section,
  .page-hero,
  .contact-grid-section,
  .map-section,
  .two-column,
  .section-copy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img,
  .page-hero img,
  .split-image img,
  .process-media img {
    min-height: 260px;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .intro-grid,
  .service-grid,
  .service-grid.large,
  .testimonial-grid,
  .values-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }
}
/* @vn-deploy:1784883762441 */
