:root {
  --cream: #faf7ee;
  --cream-strong: #f4efdf;
  --surface: #ffffff;
  --dark: #5c627f;
  --dark-2: #4e546f;
  --text: #1d2231;
  --muted: #6c7487;
  --mint: #8fd5c8;
  --mint-2: #74c5b7;
  --line: rgba(29, 34, 49, 0.1);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 70px rgba(38, 42, 58, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1360px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(143, 213, 200, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, var(--cream) 100%);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 24px), var(--container));
  margin-inline: auto;
}

.hero-block {
  position: relative;
  width: min(calc(100% - 22px), 1420px);
  margin: 20px auto 0;
  padding: 22px 0 28px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(91, 96, 124, 0.98) 0%, rgba(93, 98, 127, 0.94) 50%, rgba(82, 88, 114, 0.98) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(57, 61, 80, 0.86) 0%, rgba(57, 61, 80, 0.75) 35%, rgba(57, 61, 80, 0.18) 66%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
.hero-main,
.hero-features {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

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

.brand-logo {
  width: 84px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

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

.brand-copy small,
.eyebrow,
.section-kicker,
.floating-card span,
.blog-card span,
.journey-steps span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.75);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-weight: 700;
  white-space: nowrap;
}

.primary-button,
.secondary-button,
.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
}

.primary-button,
.cta-pill {
  background: var(--mint);
  color: var(--text);
  font-weight: 700;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 500;
}

.arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 1.4rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 18px;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: end;
  padding-top: 54px;
}

.hero-copy {
  max-width: 560px;
  padding-bottom: 26px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.hero-copy h1,
.section-heading h2,
.about-card h2,
.why-copy h2,
.journey-intro h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(3.7rem, 7.2vw, 6.4rem);
  font-weight: 700;
  max-width: 9ch;
}

.hero-text,
.about-card p,
.vision-card p,
.mission-card li,
.service-card p,
.why-copy > p,
.why-points p,
.case-card p,
.benefits-grid p,
.journey-intro p,
.journey-steps p,
.expertise-card p,
.testimonial-card p,
.blog-card p,
.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}

.cta-pill {
  margin-top: 30px;
}

.hero-figure {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 30px;
  overflow: hidden;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
}

.hero-features article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-features img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 96px 0 0;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 260px 1.1fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.review-badge,
.about-card,
.vision-card,
.mission-card,
.service-card,
.case-card,
.benefits-grid article,
.banner-card,
.journey-steps article,
.journey-stats,
.expertise-card,
.testimonial-card,
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.review-badge,
.about-card,
.vision-card,
.mission-card {
  padding: 24px;
}

.review-badge {
  background: linear-gradient(180deg, #fffef6, #faf6df);
}

.stars {
  color: var(--mint-2);
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.review-badge p {
  margin: 10px 0 16px;
  font-weight: 500;
}

.avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.avatars img,
.avatars span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatars span {
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--text);
  font-weight: 700;
}

.about-card h2,
.section-heading h2,
.why-copy h2,
.journey-intro h2 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
}

.vision-card h3,
.mission-card h3,
.service-card h3,
.why-points h3,
.case-card h3,
.benefits-grid h3,
.journey-steps h3,
.expertise-card h3,
.blog-card h3,
.footer-grid h4 {
  margin: 0;
  font-size: 1.3rem;
}

.mission-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.mission-card li + li {
  margin-top: 8px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.text-button {
  color: var(--mint-2);
  font-weight: 700;
  white-space: nowrap;
}

.services-grid.four-up {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card a {
  display: grid;
  gap: 16px;
  padding: 28px 24px;
  height: 100%;
}

.service-card img,
.expertise-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
  align-items: center;
}

.why-image-stack {
  position: relative;
  min-height: 620px;
}

.why-main-image,
.why-accent-image,
.journey-stats > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.why-main-image {
  height: 430px;
}

.why-accent-image {
  position: absolute;
  right: 26px;
  bottom: 0;
  width: 240px;
  height: 240px;
  border: 8px solid #fff;
}

.why-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.why-points article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.case-grid,
.benefits-grid,
.testimonials-grid,
.blog-grid {
  display: grid;
  gap: 18px;
}

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

.case-card,
.blog-card,
.testimonial-card {
  padding: 26px;
}

.case-card a,
.expertise-card a,
.blog-card a {
  color: var(--mint-2);
  font-weight: 700;
}

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

.benefits-grid article {
  padding: 22px;
}

.banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background: linear-gradient(180deg, #fffdf8, #f7f0df);
}

.banner-card h2 {
  margin: 10px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.journey-steps {
  display: grid;
  gap: 18px;
}

.journey-steps article {
  position: relative;
  padding: 22px 22px 64px;
}

.journey-steps span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: var(--mint-2);
  font-weight: 800;
}

.journey-stats {
  overflow: hidden;
}

.journey-stats > img {
  height: 430px;
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.expertise-card {
  padding: 28px;
}

.expertise-card h3 {
  margin-top: 18px;
}

.testimonial-card {
  background: linear-gradient(180deg, #fffefa, #fbf7ea);
}

.testimonial-card p {
  margin: 16px 0 20px;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.65;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  display: block;
}

.author span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 80px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  width: 96px;
  height: auto;
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .hero-main,
  .hero-features,
  .about-overview-grid,
  .services-grid.four-up,
  .why-grid,
  .case-grid,
  .benefits-grid,
  .journey-layout,
  .expertise-grid,
  .testimonials-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand menu"
      "nav nav"
      "cta cta";
  }

  .brand {
    grid-area: brand;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: menu;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

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

  .site-nav {
    grid-area: nav;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
    border: 1px solid var(--line-light);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    grid-area: cta;
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .hero-figure {
    min-height: 540px;
  }

  .why-image-stack {
    min-height: 0;
  }

  .why-main-image {
    height: auto;
  }

  .why-accent-image {
    position: static;
    width: 100%;
    height: 240px;
    margin-top: 16px;
  }

  .section-heading,
  .banner-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-block {
    width: min(calc(100% - 10px), 1420px);
    margin-top: 10px;
    border-radius: 24px;
    padding-top: 18px;
  }

  .container {
    width: min(calc(100% - 18px), var(--container));
  }

  .brand-logo {
    width: 74px;
  }

  .hero-main {
    padding-top: 34px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-figure {
    min-height: 420px;
  }

  .about-card h2,
  .section-heading h2,
  .why-copy h2,
  .journey-intro h2,
  .banner-card h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .testimonial-card p {
    font-size: 1rem;
  }
}
