:root {
  --background: hsl(42 34% 95%);
  --foreground: hsl(192 38% 14%);
  --surface: hsl(40 35% 98%);
  --surface-alt: hsl(42 22% 91%);
  --primary: hsl(184 45% 25%);
  --primary-soft: hsl(177 27% 79%);
  --accent: hsl(20 42% 56%);
  --border: hsl(40 19% 84%);
  --muted: hsl(195 16% 38%);
  --white-soft: hsl(42 32% 97%);
  --shadow-soft: 0 24px 60px -26px hsl(184 40% 20% / 0.22);
  --shadow-card: 0 12px 40px -24px hsl(184 40% 20% / 0.18);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

.page-shell {
  overflow-x: clip;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
  margin-right: 12px;
}

.site-nav a,
.footer-grid a {
  transition: color 0.25s ease;
}

.site-nav a:hover,
.footer-grid a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid hsl(184 20% 30% / 0.12);
  border-radius: 50%;
  background: hsl(40 35% 98% / 0.92);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

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

.button-solid {
  background: var(--primary);
  color: var(--white-soft);
  box-shadow: var(--shadow-soft);
}

.button-outline {
  border-color: hsl(184 35% 30% / 0.2);
  color: var(--primary);
  background: transparent;
}

.button-light {
  background: var(--white-soft);
  color: var(--primary);
}

.hero-section {
  position: relative;
  padding: 152px 0 72px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, hsl(42 34% 95%) 0%, hsl(42 34% 95% / 0.96) 42%, hsl(42 34% 95% / 0.22) 100%), url('./assets/hero-waves.jpg');
  background-repeat: no-repeat;
  background-position: center, right center;
  background-size: auto, cover;
}

.hero-grid,
.features-row,
.about-grid,
.footer-grid,
.footer-bottom,
.section-heading,
.services-grid,
.mission-panel {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 520px;
  align-items: center;
}

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

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2rem;
  line-height: 1.1;
}

.eyebrow.light {
  color: hsl(42 30% 96% / 0.9);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  font-size: clamp(3.25rem, 5vw, 5.3rem);
  line-height: 1.02;
  color: var(--primary);
}

h1 em {
  color: var(--accent);
  font-style: normal;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
}

.hero-text {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 86px;
}

.feature-card,
.service-card,
.experience-badge {
  background: var(--surface);
  border: 1px solid hsl(40 15% 84% / 0.8);
  box-shadow: var(--shadow-card);
}

.feature-card,
.service-card {
  padding: 32px;
  border-radius: var(--radius-md);
}

.feature-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: hsl(184 30% 94%);
  font-size: 1.4rem;
}

.feature-card h2,
.service-card h3,
.about-copy h2,
.section-heading h2,
.mission-panel h2 {
  color: var(--primary);
}

.feature-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-card p,
.service-card p,
.about-copy p,
.section-heading p,
.mission-panel p,
.footer-brand p,
.footer-grid li,
.stat-item span {
  color: var(--muted);
}

.section-space {
  padding: 124px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.experience-badge {
  position: absolute;
  right: -28px;
  bottom: -28px;
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
}

.experience-badge strong,
.stat-item strong {
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
}

.experience-badge strong {
  font-size: 2.5rem;
  line-height: 1;
}

.about-copy h2,
.section-heading h2,
.mission-panel h2 {
  margin-top: 10px;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.about-copy > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 1.04rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
  margin-top: 36px;
}

.stat-item {
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
}

.services-section {
  background: hsl(40 20% 91% / 0.45);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 560px;
}

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

.service-card {
  min-height: 260px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.mission-panel {
  overflow: hidden;
  padding: 72px 60px;
  border-radius: 40px;
  text-align: center;
  background: linear-gradient(135deg, hsl(42 34% 95%) 0%, hsl(173 28% 78%) 58%, hsl(184 44% 30%) 100%);
  box-shadow: var(--shadow-soft);
}

.mission-panel h2,
.mission-panel p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.mission-panel h2 {
  margin-top: 10px;
  color: var(--white-soft);
}

.mission-panel p {
  margin-top: 22px;
  color: hsl(42 30% 96% / 0.84);
  font-size: 1.04rem;
}

.mission-panel .button {
  margin-top: 34px;
}

.site-footer {
  padding: 96px 0 40px;
  background: var(--primary);
  color: var(--white-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.brand-footer {
  display: inline-block;
  color: var(--white-soft);
}

.footer-brand p,
.footer-grid ul,
.footer-bottom {
  margin: 18px 0 0;
}

.footer-grid h3 {
  font-size: 1.15rem;
  color: var(--white-soft);
}

.footer-grid ul {
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 12px;
}

.site-footer .footer-brand p,
.site-footer .footer-grid li,
.site-footer .footer-bottom {
  color: hsl(42 24% 94% / 0.76);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
  margin-top: 54px;
  border-top: 1px solid hsl(42 24% 94% / 0.12);
  font-size: 0.84rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .features-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 440px;
  }

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

  .experience-badge {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

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

  .site-nav.is-open {
    display: flex;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: hsl(40 35% 98% / 0.98);
    border: 1px solid hsl(40 15% 84% / 0.9);
    box-shadow: var(--shadow-card);
  }

  .hero-section {
    padding-top: 136px;
  }

  .section-space {
    padding: 92px 0;
  }

  .mission-panel {
    padding: 52px 28px;
    border-radius: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    font-size: 2.5rem;
  }

  h1 {
    font-size: 2.9rem;
  }

  .hero-text,
  .about-copy > p:not(.eyebrow),
  .section-heading > p:not(.eyebrow),
  .mission-panel p {
    font-size: 1rem;
  }

  .hero-actions,
  .stats-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .service-card {
    padding: 26px;
  }

  .experience-badge {
    position: static;
    margin-top: 16px;
  }

  .stats-grid {
    display: grid;
  }
}
