:root {
  --ink: #17211f;
  --moss: #314a43;
  --teal: #167c78;
  --sea: #d9ece8;
  --paper: #f8f4ec;
  --linen: #eee4d6;
  --coral: #c9644d;
  --white: #fffdf9;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(22, 124, 120, 0.4);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 1px 22px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.header-cta,
.button {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.06rem;
}

.site-header.is-scrolled .brand-mark {
  color: var(--white);
  background: var(--teal);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 11px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .nav a:hover {
  background: var(--sea);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-header.is-scrolled .header-cta {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 23, 21, 0.9) 0%, rgba(14, 23, 21, 0.68) 34%, rgba(14, 23, 21, 0.18) 70%),
    linear-gradient(0deg, rgba(14, 23, 21, 0.36), rgba(14, 23, 21, 0.04));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc4ad;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4.35rem);
  font-weight: 500;
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 28px rgba(22, 124, 120, 0.24);
}

.button.primary:hover {
  background: #116965;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.band {
  background: var(--paper);
}

.intro {
  border-bottom: 1px solid var(--line);
}

.section,
.intro {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.intro p,
.section-heading p,
.split p,
.eve-copy p,
.feature-panel p,
.metric-stack p,
.workflow-grid p,
.process-list p,
.cta-inner > p,
.footer p {
  color: rgba(23, 33, 31, 0.72);
}

.intro .section-grid > p {
  margin: 16px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 1.08rem;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-panel {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--moss);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel h3 {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 500;
}

.feature-panel p {
  margin: 20px 0 0;
  color: rgba(255, 253, 249, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border: 2px solid #9fd5c8;
  border-radius: 50%;
}

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

.metric-stack > div,
.workflow-grid article,
.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-stack > div {
  padding: clamp(22px, 3vw, 32px);
}

.metric-stack span,
.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--teal);
  background: var(--sea);
  border-radius: 50%;
  font-weight: 850;
}

.metric-stack strong {
  display: block;
  font-size: 1.16rem;
}

.metric-stack p,
.workflow-grid p,
.process-list p {
  margin: 10px 0 0;
}

.muted {
  background: var(--paper);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.workflow-grid article {
  min-height: 260px;
  padding: 26px;
}

.icon-dot {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 34%, var(--coral) 0 18%, transparent 19%),
    radial-gradient(circle at 42% 55%, var(--teal) 0 28%, transparent 29%),
    var(--sea);
}

.split {
  align-items: center;
}

.split > div:first-child p:last-child {
  margin-top: 20px;
  font-size: 1.08rem;
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 740;
}

.eve-section {
  background:
    linear-gradient(180deg, var(--paper), var(--white));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eve-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.eve-copy p {
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.eve-copy .button {
  margin-top: 28px;
}

.eve-frame-wrap {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 31, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.eve-frame {
  width: 100%;
  height: 620px;
  border: 0;
}

.process {
  background: var(--linen);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 244px;
  padding: 26px;
}

.cta-section {
  padding: clamp(70px, 9vw, 118px) 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 33, 31, 0.97), rgba(49, 74, 67, 0.96)),
    var(--ink);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-inner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
  color: #ffc4ad;
}

.cta-inner h2 {
  max-width: 620px;
}

.cta-inner > p {
  margin: 18px 0 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 1.1rem;
}

.schedule-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.08);
}

.schedule-panel h3 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
}

.schedule-panel p {
  margin: 0;
  color: rgba(255, 253, 249, 0.78);
}

.schedule-panel .button {
  width: 100%;
  margin-top: 10px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.footer p {
  margin: 0;
}

.footer p:first-child {
  color: var(--ink);
  font-weight: 800;
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 120px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 23, 21, 0.9) 0%, rgba(14, 23, 21, 0.68) 48%, rgba(14, 23, 21, 0.3) 100%),
      linear-gradient(0deg, rgba(14, 23, 21, 0.34), rgba(14, 23, 21, 0.08));
  }

  .section-grid,
  .split,
  .offer-layout,
  .eve-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 13px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    max-width: 155px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 800px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 108px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metric-stack,
  .workflow-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .workflow-grid article,
  .process-list li {
    min-height: auto;
  }

  .eve-frame-wrap {
    min-height: 560px;
  }

  .eve-frame {
    height: 560px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .schedule-panel {
    padding: 18px;
  }
}
