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

:root {
  --bg: #fbfbf8;
  --paper: #ffffff;
  --ink: #242737;
  --muted: #676b7c;
  --teal: #075a58;
  --teal-2: #0a7a78;
  --mist: #eaf6f5;
  --mist-strong: #d7eceb;
  --line: #cbe2e0;
  --peach: #fbf2ec;
  --copper: #b86b36;
  --blue: #626dff;
  --shadow: 0 18px 60px rgba(7, 90, 88, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --max: 1120px;
  --content: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  display: block;
  height: 6px;
  background: var(--line);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.16rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
  border-color: var(--teal);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.button:hover {
  background: #064846;
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--teal);
}

.button.secondary:hover {
  background: var(--mist);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--teal);
  font-size: 1.35rem;
}

.page-main {
  min-height: 70vh;
}

.section,
.page-hero,
.home-hero {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  justify-content: start;
  padding-top: clamp(72px, 12vh, 132px);
  padding-bottom: 78px;
}

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

.hero-note {
  margin-top: 24px;
  color: var(--teal-2);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  color: var(--teal-2);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 600;
}

.home-hero h1,
.page-hero h1,
.section h2 {
  margin: 16px 0 0;
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero h1 {
  font-size: clamp(4.8rem, 14vw, 11rem);
}

.page-hero h1,
.section h2 {
  font-size: clamp(3.2rem, 7vw, 6.1rem);
}

.lead {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.65;
}

.home-hero .lead {
  margin-top: 32px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(42px, 8vh, 86px);
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 1.65rem;
  line-height: 1;
  transform: translateX(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.scroll-cue:hover {
  background: var(--teal);
  color: white;
  transform: translate(-50%, 4px);
}

.hero-logo-panel {
  border-top: 3px solid var(--teal);
  background: #020403;
  padding: clamp(34px, 5vw, 62px);
  box-shadow: var(--shadow);
}

.hero-logo-panel img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.page-hero {
  padding-top: clamp(70px, 10vw, 124px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  margin-top: 30px;
}

.section {
  padding-top: clamp(62px, 9vw, 110px);
  padding-bottom: clamp(62px, 9vw, 110px);
  border-bottom: 1px solid var(--line);
}

.section-narrow {
  max-width: var(--content);
}

.text-block {
  max-width: var(--content);
}

.text-block p {
  color: var(--ink);
  margin: 22px 0 0;
}

.pull-quote {
  margin: clamp(42px, 6vw, 68px) auto;
  max-width: 840px;
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.goal-list,
.simple-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.goal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.goal-list li {
  background: var(--mist);
  padding: 18px 22px;
}

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

.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.88em;
  width: 12px;
  border-top: 1px solid var(--teal-2);
}

.contrast-card,
.service-card,
.audience-card,
.advantage-row,
.process-step,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--paper);
}

.contrast-card {
  padding: 30px;
}

.contrast-card.warning {
  border-color: #efd8cc;
  background: var(--peach);
}

.contrast-card h3,
.service-card h3,
.audience-card h3 {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 1.02rem;
  line-height: 1.35;
}

.contrast-card.warning h3,
.addon h3 {
  color: #74401f;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-top: 4px solid var(--teal);
  background: var(--mist);
}

.service-card.addon {
  border-top-color: var(--copper);
  background: var(--peach);
}

.service-head,
.service-body,
.service-foot {
  padding: 24px;
}

.service-head {
  background: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid var(--line);
}

.service-format {
  color: var(--muted);
  font-weight: 600;
  margin-top: 10px;
}

.service-body {
  flex: 1;
}

.service-foot {
  border-top: 1px dashed rgba(7, 90, 88, 0.24);
  color: var(--muted);
}

.service-foot strong {
  color: var(--teal);
}

.process-list {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.process-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 26px;
  align-items: start;
}

.process-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--teal-2);
  color: white;
  border-radius: 50%;
  font-weight: 700;
}

.process-step h3 {
  margin: 2px 0 10px;
  color: var(--teal);
  font-size: 1.28rem;
}

.process-step p,
.audience-card p,
.advantage-row p {
  margin: 0;
  color: var(--muted);
}

.audience-card {
  padding: 24px;
  background: var(--mist);
}

.department-grid {
  margin-top: 34px;
}

.advantage-list {
  margin-top: 42px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.advantage-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 28px;
}

.advantage-number {
  color: var(--line);
  font-family: var(--serif);
  font-size: 2.45rem;
  line-height: 1;
}

.advantage-row h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.cta-panel {
  padding: clamp(34px, 6vw, 64px);
  background: var(--mist);
  border-left: 4px solid var(--teal);
}

.cta-panel h2 {
  margin-top: 0;
}

.cta-panel p {
  max-width: 760px;
}

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

.footer-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand img {
  width: 148px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.footer-email {
  color: var(--teal);
  font-weight: 700;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

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

  .nav-cta {
    margin-top: 8px;
  }

  .home-hero,
  .grid.two,
  .grid.three,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: calc(100vh - 76px);
  }

  .hero-logo-panel {
    order: -1;
  }
}

@media (max-width: 620px) {
  .section,
  .page-hero,
  .home-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    width: 96px;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 21vw, 6.8rem);
  }

  .hero-note {
    max-width: 260px;
    line-height: 1.6;
  }

  .page-hero h1,
  .section h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    overflow-wrap: break-word;
  }

  .hero-logo-panel {
    padding: 28px 18px;
  }

  .hero-actions .button,
  .section-actions .button {
    flex: 1 1 100%;
  }

  .goal-list,
  .process-step,
  .advantage-row {
    grid-template-columns: 1fr;
  }

  .process-step,
  .advantage-row {
    gap: 12px;
  }

  .service-head,
  .service-body,
  .service-foot,
  .contrast-card,
  .audience-card {
    padding: 20px;
  }
}
