:root {
  --blue: #008fa8;
  --blue-deep: #006f83;
  --pink: #f3a5c4;
  --pink-soft: #fde9f1;
  --mint: #a9d8c5;
  --mint-soft: #e7f3ef;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --brown: #5f473d;
  --ink: #342f2d;
  --muted: #736660;
  --line: rgba(95, 71, 61, 0.14);
  --shadow: 0 18px 42px rgba(57, 42, 36, 0.1);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 143, 168, 0.35);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

p {
  color: var(--muted);
}

section[id] {
  scroll-margin-top: 96px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 8px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid rgba(95, 71, 61, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.98);
  box-shadow: 0 12px 28px rgba(57, 42, 36, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 182px;
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
}

.header-cta {
  padding: 0 18px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 143, 168, 0.18);
}

.btn {
  padding: 13px 20px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 143, 168, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-deep);
}

.btn-secondary {
  background: #fff;
  color: var(--brown);
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brown);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 54px 0;
}

.hero::before,
.soft-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(169, 216, 197, 0.24), rgba(255, 253, 248, 0.78) 48%, rgba(243, 165, 196, 0.13));
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: 50px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 28px;
  height: 2px;
  background: var(--pink);
  content: "";
}

h1,
h2 {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  max-width: 670px;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 4vw, 4.1rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

h3 {
  color: var(--brown);
  font-size: 1.12rem;
  line-height: 1.25;
}

.lead {
  color: var(--blue-deep);
  font-size: clamp(1.16rem, 1.55vw, 1.38rem);
  font-weight: 780;
  line-height: 1.38;
}

.hero-copy > p:not(.lead) {
  max-width: 560px;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 143, 168, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 10px solid rgba(255, 253, 248, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img,
.about-photo img,
.service-card img,
.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-pad {
  padding: 76px 0;
}

.soft-band {
  position: relative;
  overflow: clip;
}

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

.section-heading.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 42px;
  align-items: end;
  max-width: none;
}

.section-heading.compact .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading p,
.section-heading.compact p {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

.about-photo {
  height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-photo img {
  object-position: 50% 42%;
}

.about-copy {
  max-width: 780px;
}

.about-copy p {
  margin-bottom: 12px;
  font-size: 1.02rem;
}

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

.feature-card,
.service-card,
.step-card,
.signal-panel,
.space-card,
.support-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 32px rgba(57, 42, 36, 0.08);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
}

.feature-card span,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 10px;
}

.feature-card p,
.step-card p {
  margin-bottom: 0;
}

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

.service-card {
  overflow: hidden;
}

.service-card img {
  height: 210px;
}

.service-card div {
  padding: 20px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
}

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

.step-card {
  min-height: 210px;
  padding: 24px;
}

.evaluation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: stretch;
  gap: 28px;
}

.evaluation-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.evaluation-grid strong {
  display: block;
  margin: 8px 0 24px;
  color: var(--brown);
  font-size: 1.08rem;
}

.signal-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(140deg, rgba(255, 253, 248, 0.94), rgba(253, 231, 240, 0.84)), var(--paper);
}

.signal-panel::before {
  position: absolute;
  right: -44px;
  top: -44px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(0, 143, 168, 0.1);
  border-radius: 50%;
  content: "";
}

.signal-panel h3 {
  position: relative;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  font-weight: 500;
}

.signal-panel ul {
  position: relative;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-panel li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-weight: 720;
}

.signal-panel li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 4px solid var(--mint);
  border-radius: 50%;
  content: "";
}

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

.space-card {
  overflow: hidden;
}

.space-card img {
  aspect-ratio: 16 / 10;
}

.space-card div {
  padding: 22px;
}

.space-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.space-card h3 {
  max-width: 500px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
}

.space-card p {
  margin-bottom: 0;
}

.support-panel {
  max-width: 980px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(231, 243, 239, 0.7)),
    var(--paper);
}

.support-panel h2 {
  max-width: 840px;
}

.support-panel p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.agenda {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(251, 248, 241, 1)), var(--cream);
}

.agenda-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 46px;
}

.agenda-copy img {
  width: min(310px, 70vw);
  margin-bottom: 22px;
}

.agenda-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 2.8vw, 3.15rem);
}

.agenda-copy p {
  max-width: 650px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 340px;
  padding: 30px;
  font-style: normal;
}

.contact-card span {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  font-weight: 800;
}

.location-link {
  color: var(--blue-deep) !important;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #fffaf3;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--blue-deep);
  font-weight: 800;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1023px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 166px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .process-grid,
  .evaluation-grid,
  .agenda-grid,
  .section-heading.compact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .about-grid {
    align-items: start;
  }

  .about-photo {
    max-width: 520px;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .site-header {
    min-height: 72px;
    padding-inline: 16px;
  }

  .brand img {
    width: 146px;
  }

  .hero,
  .section-pad {
    padding-block: 54px;
  }

  h1 {
    font-size: clamp(2.32rem, 10.5vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem);
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-grid {
    padding: 18px;
    gap: 24px;
  }

  .about-photo {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .feature-grid,
  .service-grid,
  .step-list,
  .space-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 230px;
  }

  .support-panel,
  .signal-panel,
  .contact-card {
    padding: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
