:root {
  --rose: #bc74a1;
  --rose-deep: #955983;
  --rose-soft: #f4deeb;
  --rose-mist: #fbf3f8;
  --cream: #fff9f4;
  --peach: #ffe7d1;
  --gold: #ffd76c;
  --chocolate: #4b322a;
  --ink: #2c2026;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(111, 61, 90, 0.14);
  --shadow-soft: 0 18px 38px rgba(111, 61, 90, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 36%),
    radial-gradient(circle at right 10%, rgba(255, 215, 108, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf6 0%, #fff7fb 50%, #fffaf6 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(14px);
  z-index: -1;
  opacity: 0.6;
}

.page-shell::before {
  top: -120px;
  right: -60px;
  background: rgba(188, 116, 161, 0.16);
}

.page-shell::after {
  left: -100px;
  top: 860px;
  background: rgba(255, 215, 108, 0.18);
}

.site-header,
.section,
.service-strip,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.4rem;
  margin-top: 1rem;
  border: 1px solid rgba(149, 89, 131, 0.15);
  border-radius: 999px;
  background: rgba(255, 249, 244, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(149, 89, 131, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong,
.site-nav a,
.button,
.service-card a,
.contact-info a {
  font-weight: 700;
}

.brand-copy small {
  color: rgba(44, 32, 38, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(44, 32, 38, 0.82);
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose-deep);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-info a:hover,
.service-card a:hover {
  color: var(--rose-deep);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.section {
  padding: 5.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 120px);
  padding-top: 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(188, 116, 161, 0.12);
  color: var(--rose-deep);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--chocolate);
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  margin-top: 1rem;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
}

h2 {
  max-width: 15ch;
  margin-top: 1rem;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
}

.hero-text,
.panel p,
.service-card p,
.benefit-card p,
.faq-list p,
.contact-panel p,
.final-cta-card p,
.coverage-panel p,
.service-strip p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(44, 32, 38, 0.78);
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.35rem;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(149, 89, 131, 0.26);
}

.button-secondary {
  border-color: rgba(149, 89, 131, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--chocolate);
}

.button-small {
  min-height: 44px;
  padding-inline: 1rem;
  font-size: 0.95rem;
}

.hero-highlights {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li,
.coverage-panel,
.service-strip article,
.panel,
.service-card,
.testimonial-shot,
.benefit-card,
.contact-panel,
.final-cta-card,
.faq-list details {
  border: 1px solid rgba(149, 89, 131, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.hero-highlights li {
  position: relative;
  padding: 1rem 1.15rem 1rem 3.2rem;
  border-radius: var(--radius-md);
}

.hero-highlights li::before {
  content: "•";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-54%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(188, 116, 161, 0.16);
  color: var(--rose-deep);
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.hero-logo-card {
  width: min(100%, 520px);
  padding: 1.1rem;
  border-radius: 38px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.92)),
    var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.hero-logo-card img {
  border-radius: 28px;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 0.2rem;
  width: min(240px, 50vw);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(149, 89, 131, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

.floating-note strong {
  font-size: 1rem;
  color: var(--chocolate);
}

.floating-note span {
  color: rgba(44, 32, 38, 0.76);
  line-height: 1.45;
}

.note-one {
  left: -1.6rem;
  bottom: 6.4rem;
}

.note-two {
  right: -1rem;
  top: 5rem;
  animation-delay: 2s;
}

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

.service-strip article,
.panel,
.service-card,
.testimonial-shot,
.benefit-card,
.contact-panel,
.final-cta-card,
.faq-list details {
  border-radius: var(--radius-lg);
}

.service-strip article {
  padding: 1.4rem;
}

.service-strip strong,
.coverage-panel strong,
.benefit-card h3,
.service-card h3,
.contact-panel h3 {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  color: var(--chocolate);
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 700px;
}

.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.panel {
  padding: 2rem;
}

.panel-copy {
  display: grid;
  gap: 1rem;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.stat {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(244, 222, 235, 0.72), rgba(255, 255, 255, 0.96));
}

.stat strong {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--rose-deep);
}

.services-grid,
.benefits-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.service-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1.6rem;
  min-height: 220px;
}

.service-card small,
.form-note {
  color: rgba(44, 32, 38, 0.62);
  line-height: 1.5;
}

.featured {
  background:
    linear-gradient(180deg, rgba(188, 116, 161, 0.14), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.service-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 215, 108, 0.32);
  color: var(--chocolate);
  font-size: 0.85rem;
  font-weight: 800;
}

.attention-card {
  justify-content: space-between;
}

.attention-card a {
  color: var(--rose-deep);
}

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

.benefit-card {
  padding: 1.8rem;
}

.testimonial-shot {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.testimonial-shot img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
}

.coverage-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-list details {
  padding: 1.4rem 1.5rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--chocolate);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 0.9rem;
}

.contact-panel {
  padding: 2rem;
}

.contact-info ul {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(149, 89, 131, 0.12);
}

.contact-cta-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(244, 222, 235, 0.62), rgba(255, 255, 255, 0.96));
}

.form-panel form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

label {
  font-weight: 700;
  color: var(--chocolate);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 0.85rem;
  padding: 0;
  font-weight: 700;
  color: var(--chocolate);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(149, 89, 131, 0.18);
  border-radius: 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(149, 89, 131, 0.5);
  box-shadow: 0 0 0 4px rgba(188, 116, 161, 0.14);
}

textarea {
  resize: vertical;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.radio-option {
  position: relative;
  display: block;
}

.radio-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.radio-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(149, 89, 131, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.radio-option input:hover + span {
  transform: translateY(-1px);
}

.radio-option input:focus-visible + span {
  border-color: rgba(149, 89, 131, 0.5);
  box-shadow: 0 0 0 4px rgba(188, 116, 161, 0.14);
}

.radio-option input:checked + span {
  border-color: rgba(149, 89, 131, 0.42);
  background: linear-gradient(180deg, rgba(244, 222, 235, 0.92), rgba(255, 255, 255, 0.98));
  color: var(--rose-deep);
  box-shadow: 0 12px 24px rgba(149, 89, 131, 0.12);
}

.form-note {
  margin: 0;
}

.final-cta {
  padding-bottom: 6rem;
}

.final-cta-card {
  padding: 2.4rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.66), transparent 38%),
    linear-gradient(135deg, rgba(188, 116, 161, 0.16), rgba(255, 215, 108, 0.18));
}

.final-cta-card .eyebrow {
  margin-inline: auto;
}

.final-cta-card h2 {
  max-width: none;
}

.final-cta-card p {
  max-width: 620px;
  margin: 1rem auto 0;
}

.final-cta-card .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2rem;
  color: rgba(44, 32, 38, 0.72);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1120px) {
  .site-header {
    border-radius: 28px;
  }

  .hero,
  .about-grid,
  .contact-layout,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.8rem;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-visual {
    order: -1;
    min-height: 520px;
  }

  .service-strip,
  .services-grid,
  .benefits-grid,
  .coverage-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
  }

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-visual {
    min-height: 460px;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-visual {
    gap: 1rem;
  }

  .stats-panel,
  .service-strip,
  .services-grid,
  .benefits-grid,
  .coverage-panel,
  .radio-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .site-header,
  .section,
  .service-strip,
  .site-footer {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .site-header {
    margin-top: 0.55rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .hero {
    gap: 2rem;
  }

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

  .hero-logo-card {
    padding: 0.8rem;
    border-radius: 28px;
  }

  .panel,
  .contact-panel,
  .service-card,
  .benefit-card,
  .testimonial-shot,
  .final-cta-card {
    padding: 1.4rem;
  }

  .faq-list details {
    padding: 1.2rem;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}
