:root {
  --ink: #32282b;
  --muted: #806c70;
  --rose: #dba6ad;
  --rose-deep: #b96572;
  --rose-soft: #fae8ea;
  --blush: #fff4f3;
  --cream: #fffaf6;
  --champagne: #dcc6a2;
  --sage: #8f9e86;
  --sage-soft: #f1f5ee;
  --line: rgba(112, 83, 88, 0.14);
  --shadow: 0 24px 54px rgba(122, 79, 87, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] { display: none !important; }

.section { scroll-margin-top: 140px; }

.request-form input, .request-form select, .request-form textarea {
  font-size: 16px;
  min-width: 0;
}

.button:focus-visible, a:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 4px;
}

.button:disabled { opacity: 0.65; cursor: wait; }

.contact-actions { display: grid; gap: 12px; }

.secondary-contact { border-color: var(--rose-deep); color: var(--ink); background: white; }

.form-feedback[data-state="success"] {
  padding: 16px;
  border-radius: 8px;
  background: var(--sage-soft);
  color: #33472d;
}

.form-feedback[data-state="error"] { color: #a12838; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(250, 232, 234, 0.72), transparent 460px),
    linear-gradient(135deg, rgba(255, 244, 243, 0.75), rgba(241, 245, 238, 0.38) 70%),
    var(--cream);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #bf7480, #e5b4b9);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(169, 87, 99, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--rose-deep);
}

.hero {
  position: relative;
  min-height: clamp(560px, 66svh, 660px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 9vw, 110px) clamp(20px, 5vw, 64px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(55, 39, 44, 0.72), rgba(120, 75, 82, 0.42) 48%, rgba(255, 246, 242, 0.62)),
    linear-gradient(0deg, rgba(219, 166, 173, 0.36), rgba(255, 250, 246, 0.04)),
    url("https://images.unsplash.com/photo-1765896387387-0538bc9f997e?auto=format&fit=crop&w=1900&q=86")
      center 38% / cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 130px;
  content: "";
  background: linear-gradient(0deg, var(--cream), rgba(255, 250, 246, 0));
}

.hero-content {
  width: min(670px, 100%);
  max-width: 100%;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe8ea;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 10.8ch;
  font-size: clamp(4rem, 8vw, 7.05rem);
  font-weight: 800;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: min(590px, 100%);
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #bd6d79, #d99ba4);
  box-shadow: 0 16px 30px rgba(185, 101, 114, 0.25);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto 0;
}

.trust-strip article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 122px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 243, 0.74));
  box-shadow: 0 18px 38px rgba(122, 79, 87, 0.1);
}

.strip-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--rose-deep);
  background: linear-gradient(145deg, var(--rose-soft), #fff7f6);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
}

.trust-strip strong,
.trust-strip p {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
}

.trust-strip p,
.section p,
.site-footer {
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 112px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.sector-copy p,
.request-copy p {
  max-width: 62ch;
  margin-top: 16px;
  font-size: 1.03rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.care-grid article {
  min-height: 166px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, rgba(255, 244, 243, 0.64));
  box-shadow: 0 14px 30px rgba(122, 79, 87, 0.07);
}

.care-grid article::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--champagne));
  content: "";
}

.care-grid span {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.care-grid p {
  margin-top: 10px;
  font-size: 0.96rem;
}

.sector-section,
.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--rose-deep);
  font-weight: 850;
}

.map-preview {
  display: grid;
  min-height: 360px;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(127, 146, 127, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(135deg, var(--sage-soft), var(--blush) 52%, var(--rose-soft));
  background-size:
    54px 54px,
    54px 54px,
    auto;
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow);
}

.map-preview span {
  color: var(--rose-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.2rem, 10vw, 7rem);
  font-weight: 950;
  line-height: 1;
}

.map-preview strong,
.map-preview small {
  display: block;
}

.map-preview strong {
  margin-top: 8px;
  font-size: 1.35rem;
}

.map-preview small {
  margin-top: 8px;
  color: var(--muted);
}

.request-section {
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 104px;
}

.note {
  padding: 14px 16px;
  border-left: 4px solid var(--champagne);
  background: rgba(255, 244, 243, 0.82);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 243, 0.76));
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(47, 41, 41, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.92);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--rose-deep);
  outline: 3px solid rgba(219, 166, 173, 0.32);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-card {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.82);
}

.checkbox-card input {
  width: 18px;
  min-height: 18px;
}

.checkbox-card label {
  display: block;
  font-weight: 700;
}

.privacy-notice {
  padding: 14px 16px;
  border: 1px solid rgba(112, 83, 88, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.86);
}

.privacy-notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--rose-deep);
}

.privacy-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent-row label {
  display: block;
  font-weight: 500;
}

.submit-button {
  width: 100%;
}

.form-feedback {
  min-height: 24px;
  color: var(--rose-deep);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero {
    min-height: 620px;
    align-items: end;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(55, 39, 44, 0.78), rgba(120, 75, 82, 0.34)),
      linear-gradient(0deg, rgba(219, 166, 173, 0.26), rgba(255, 250, 246, 0.08)),
      url("https://images.unsplash.com/photo-1765896387387-0538bc9f997e?auto=format&fit=crop&w=1100&q=84")
        center / cover;
  }

  .trust-strip,
  .section-heading,
  .sector-section,
  .request-section {
    grid-template-columns: 1fr;
  }

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

  .request-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: auto;
    align-self: stretch;
    justify-content: flex-start;
    gap: 34px;
  }

  .hero {
    min-height: 610px;
    padding: 44px 20px;
  }

  h1 {
    max-width: 9.2ch;
    font-size: clamp(2.65rem, 12vw, 3.1rem);
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 32ch;
    font-size: 1rem;
  }

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

  .trust-strip,
  .section {
    width: min(100% - 32px, 620px);
  }

  .trust-strip article,
  .field-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
