@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --rose: #c32977;
  --rose-deep: #8c1c58;
  --rose-soft: #f8e2ee;
  --navy: #27398c;
  --navy-deep: #17244d;
  --ink: #374262;
  --mist: #f4f7fc;
  --sky: #eef3ff;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, 0.8);
  --line: rgba(39, 57, 140, 0.12);
  --line-strong: rgba(39, 57, 140, 0.18);
  --shadow: 0 28px 70px rgba(23, 36, 77, 0.12);
  --shadow-soft: 0 16px 42px rgba(23, 36, 77, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(195, 41, 119, 0.12), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(39, 57, 140, 0.11), transparent 24%),
    linear-gradient(180deg, #fffefe 0%, #f8f4fa 36%, #f3f7fd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
    linear-gradient(90deg, rgba(39, 57, 140, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(39, 57, 140, 0.03) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

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

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

.page-shell {
  overflow: hidden;
}

.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 24px 92px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  top: 58px;
  right: -90px;
  background: radial-gradient(circle, rgba(195, 41, 119, 0.14), transparent 72%);
}

.hero::after {
  width: 280px;
  height: 280px;
  left: -94px;
  top: 220px;
  background: radial-gradient(circle, rgba(39, 57, 140, 0.14), transparent 70%);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  flex: 0 0 auto;
  width: clamp(250px, 25vw, 360px);
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(39, 57, 140, 0.07));
}

.nav-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links,
.nav-actions,
.hero-actions,
.contact-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links {
  justify-content: flex-end;
  gap: 10px 20px;
}

.nav-links a,
.footer-links a {
  position: relative;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--navy));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

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

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-primary {
  background: linear-gradient(135deg, var(--rose), #e04a98);
  color: #fff;
  box-shadow: 0 18px 30px rgba(195, 41, 119, 0.22);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy-deep);
  box-shadow: 0 10px 26px rgba(23, 36, 77, 0.06);
}

.hero-layout,
.feature-grid,
.coverage-layout,
.careers-layout,
.contact-layout {
  display: grid;
  gap: 28px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: start;
  padding-top: 42px;
}

.hero-copy {
  padding-right: 10px;
}

.eyebrow,
.feature-tag,
.detail-label,
.quick-eyebrow {
  display: inline-block;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow,
.feature-tag,
.detail-label,
.quick-eyebrow {
  color: var(--rose);
}

.hero h1,
.section-heading h2,
.quick-panel h2,
.copy-panel h3,
.coverage-card h2,
.local-contact-card h3,
.career-copy h2,
.contact-copy h2,
.wide-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(3.25rem, 6.4vw, 5.8rem);
  line-height: 0.93;
}

.lead,
.section-lead,
.copy-panel p,
.coverage-card p,
.local-contact-card p,
.career-copy p,
.contact-copy p,
.testimonial-card p,
.need-card p,
.wide-cta p,
.site-footer p,
.quick-list li {
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(55, 66, 98, 0.85);
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
}

.hero-actions {
  margin-top: 30px;
}

.hero-inline-list,
.hero-trust-strip,
.area-chips,
.rating-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-inline-list {
  margin-top: 24px;
}

.hero-inline-list span,
.hero-trust-strip span,
.area-chips span,
.rating-strip span,
.check-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-inline-list span::before,
.hero-trust-strip span::before,
.area-chips span::before,
.rating-strip span::before,
.check-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--navy));
  flex: 0 0 auto;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.metric-card,
.quick-panel,
.copy-panel,
.service-card,
.need-card,
.coverage-card,
.local-contact-card,
.career-copy,
.testimonial-card,
.contact-form,
.contact-copy,
.wide-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 251, 255, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 20px;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-deep);
  font-size: 1rem;
}

.metric-card span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(55, 66, 98, 0.82);
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-photo-card,
.feature-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.86));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-photo-card::before,
.feature-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(195, 41, 119, 0.12), transparent 32%),
    radial-gradient(circle at right bottom, rgba(39, 57, 140, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-photo,
.feature-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
}

.hero-photo {
  aspect-ratio: 1 / 0.9;
}

.hero-photo-full {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 248, 0.94));
}

.hero-photo-card-tall .hero-photo {
  aspect-ratio: 4 / 5;
  object-position: center 18%;
}

.photo-chip {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.5;
  box-shadow: 0 18px 32px rgba(23, 36, 77, 0.12);
}

.photo-chip-primary {
  max-width: 60%;
}

.quick-panel {
  padding: 28px;
}

.quick-panel h2,
.career-copy h2,
.contact-copy h2,
.coverage-card h2,
.wide-cta h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 0.98;
}

.quick-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  position: relative;
  padding-left: 24px;
  margin-top: 12px;
}

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

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-trust-strip {
  margin-top: 26px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 92px;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.55rem, 4.4vw, 4.1rem);
  line-height: 0.98;
}

.section-lead {
  margin: 18px 0 0;
  max-width: 700px;
}

.intro-section {
  padding-top: 8px;
}

.feature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.96fr);
  align-items: center;
  margin-top: 30px;
}

.feature-grid-reverse {
  grid-template-columns: minmax(340px, 0.96fr) minmax(0, 1fr);
}

.copy-panel,
.coverage-card,
.local-contact-card,
.career-copy,
.contact-copy,
.wide-cta {
  padding: 32px;
}

.copy-panel h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.copy-panel p {
  margin: 18px 0 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.feature-photo img {
  aspect-ratio: 4 / 3;
}

.jobs-photo img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.feature-photo figcaption {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(55, 66, 98, 0.78);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

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

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--navy));
}

.service-card-accent {
  background: linear-gradient(180deg, rgba(255, 246, 250, 0.96), rgba(245, 248, 255, 0.86));
}

.service-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(195, 41, 119, 0.18), rgba(39, 57, 140, 0.16));
  position: relative;
}

.service-mark::before,
.service-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.service-mark::before {
  inset: 11px 14px;
  border: 2px solid var(--navy);
}

.service-mark::after {
  inset: 18px 20px;
  background: var(--rose);
}

.service-card h3,
.need-card h3,
.local-contact-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 1.3rem;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(55, 66, 98, 0.82);
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(55, 66, 98, 0.84);
  line-height: 1.85;
}

.need-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.need-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.need-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 242, 248, 0.8));
}

.need-card p {
  margin: 0;
}

.coverage-layout,
.careers-layout,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.area-chips,
.rating-strip {
  margin-top: 22px;
}

.local-details,
.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.detail-label {
  margin-bottom: 8px;
}

.local-details strong,
.contact-details strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1.02rem;
}

.contact-link {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 2px;
}

.reviews-section {
  padding-bottom: 88px;
}

.rating-strip span {
  background: rgba(255, 255, 255, 0.88);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.testimonial-card {
  margin: 0;
  padding: 28px;
}

.testimonial-card footer {
  margin-top: 18px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-copy,
.contact-form {
  height: 100%;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(195, 41, 119, 0.42);
  box-shadow: 0 0 0 4px rgba(195, 41, 119, 0.12);
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(55, 66, 98, 0.78);
}

.contact-actions .button {
  min-height: 46px;
}

.form-response {
  min-height: 2.6rem;
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.6;
}

.cta-section {
  padding-bottom: 96px;
}

.wide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero {
  padding-bottom: 80px;
}

.about-layout {
  align-items: center;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 26px 24px 52px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-brand {
  width: min(340px, 100%);
  margin: 0 auto 20px;
}

.footer-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(39, 57, 140, 0.06));
}

.footer-links {
  justify-content: center;
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1120px) {
  .hero-layout,
  .feature-grid,
  .feature-grid-reverse,
  .coverage-layout,
  .careers-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 860px) {
  .hero {
    padding: 22px 18px 78px;
  }

  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .nav-cluster,
  .nav-links,
  .nav-actions {
    justify-content: center;
  }

  .hero-layout {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 12vw, 4.6rem);
  }

  .hero-metrics,
  .check-grid,
  .gallery-grid,
  .need-grid,
  .testimonial-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .photo-chip,
  .photo-chip-primary {
    max-width: calc(100% - 56px);
  }

  .wide-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .button,
  .button-small {
    width: 100%;
  }

  .hero-inline-list span,
  .hero-trust-strip span,
  .area-chips span,
  .rating-strip span,
  .check-grid span {
    width: 100%;
    justify-content: flex-start;
  }

  .metric-card,
  .quick-panel,
  .copy-panel,
  .service-card,
  .need-card,
  .coverage-card,
  .local-contact-card,
  .career-copy,
  .contact-copy,
  .contact-form,
  .wide-cta {
    padding: 24px;
  }

  .quick-panel h2,
  .career-copy h2,
  .contact-copy h2,
  .coverage-card h2,
  .wide-cta h2,
  .copy-panel h3 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
}

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

  .button,
  .nav-links a::after,
  .footer-links a::after,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
