﻿:root {
  --bg: #fdfbfb;
  --primary: #ddbeb5;
  --accent: #4a4a4a;
  --cta: #c299a0;
  --cta-dark: #b38890;
  --border: rgba(74, 74, 74, 0.16);
  --shadow: 0 16px 40px rgba(74, 74, 74, 0.12);
}

* {\n  box-sizing: border-box;\n}\n\nhtml {\n  scroll-behavior: smooth;\n}\n
body {
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--accent);
  background: var(--bg);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: #2f2f2f;
}

.section-space {
  padding: 5rem 0;
}

.section-title {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
}

.section-title .title-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(221, 190, 181, 0.28), rgba(253, 251, 251, 0.9));
  color: var(--accent);
}

.section-title .title-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.section-soft {
  background: linear-gradient(135deg, rgba(221, 190, 181, 0.18), rgba(253, 251, 251, 0.85));
}

.nav-glass {
  background: rgba(74, 74, 74, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar-brand small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f2e6e3, var(--primary));
  color: #3b3b3b;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn-hero {
  background: var(--cta);
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-hero:hover,
.btn-hero:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(74, 74, 74, 0.2);
  background: var(--cta-dark);
}

.btn-hero-alt {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
}

.btn-hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  padding-top: 6.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(221, 190, 181, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(40, 40, 40, 0.35), rgba(40, 40, 40, 0.6)),
    url("https://images.pexels.com/photos/7407368/pexels-photo-7407368.jpeg?cs=srgb&dl=pexels-cottonbro-7407368.jpg&fm=jpg")
      center/cover no-repeat;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, 0.36);
}

.hero-pattern {
  position: absolute;
  right: -120px;
  top: 120px;
  width: min(560px, 70vw);
  opacity: 0.32;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.96);
}

.hero-copy h1 {
  color: #fff;
}

.hero-trust {
  display: grid;
  gap: 1rem;
}

.trust-item {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.trust-item img {
  width: 42px;
  height: 42px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-photo-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-card p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-strip {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-strip span {
  background: rgba(221, 190, 181, 0.25);
  border: 1px solid rgba(221, 190, 181, 0.45);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #fff;
}

.glass-card,
.service-card,
.image-card,
.testimonial,
.contact-form,
.pill-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 10px 24px rgba(74, 74, 74, 0.08);
  border: 1px solid var(--border);
}

.metrics {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.metric {
  background: linear-gradient(135deg, rgba(221, 190, 181, 0.2), rgba(253, 251, 251, 0.9));
  padding: 0.8rem;
  border-radius: 16px;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  color: #3b3b3b;
}

.metric span {
  font-size: 0.8rem;
  color: #6b6b6b;
}

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

.badge-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: #5e5e5e;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.step-list li {
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: grid;
  gap: 0.4rem;
}

.step-list strong {
  color: #3b3b3b;
}

.image-card {
  text-align: center;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.testimonial {
  font-style: italic;
  position: relative;
  padding-top: 2.6rem;
}

.testimonial-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(194, 153, 160, 0.9);
}

.testimonial-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: #6b6b6b;
  font-weight: 600;
}

.trust-badges {
  display: grid;
  gap: 1.2rem;
}

.trust-badge {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(74, 74, 74, 0.08);
}

.trust-badge img {
  width: 46px;
  height: 46px;
}

.trust-badge strong {
  display: block;
  color: #3b3b3b;
}

.security-gallery {
  background: linear-gradient(180deg, rgba(253, 251, 251, 0.92), rgba(248, 241, 243, 0.9));
}

.image-tile {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(74, 74, 74, 0.12);
}

.image-tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-tile__body {
  padding: 1.2rem 1.4rem 1.5rem;
  display: grid;
  gap: 0.35rem;
}

.image-tile__body strong {
  color: #3b3b3b;
}

.pill-card {
  text-align: center;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(221, 190, 181, 0.25), rgba(253, 251, 251, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pill-icon {
  font-size: 1.1rem;
}

.cta-section {
  padding: 4rem 0;
  background: var(--cta);
  color: #fff;
}

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

.cta-section p {
  opacity: 0.95;
}

.contact-form {
  background: #fff;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid var(--border);
  color: #3b3b3b;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: rgba(194, 153, 160, 0.75);
}

.form-feedback {
  font-size: 0.9rem;
  color: #5e5e5e;
  min-height: 1.2rem;
  margin-top: 0.6rem;
}

.contact-hint {
  color: #6b6b6b;
}

.contact-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(74, 74, 74, 0.08);
}

.contact-strip img {
  width: 46px;
  height: 46px;
}

.footer {
  background: #3b3b3b;
  color: #f8e9ee;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

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

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

@media (max-width: 991px) {
  .hero-pattern {
    opacity: 0.26;
    right: -200px;
  }

  .hero-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .metrics {
    grid-template-columns: 1fr;
  }

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

  .hero-photo-grid img {
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }
}
\n\na:focus-visible,\nbutton:focus-visible,\ninput:focus-visible,\nselect:focus-visible,\ntextarea:focus-visible {\n  outline: 2px solid rgba(194, 153, 160, 0.6);\n  outline-offset: 3px;\n}\n
