:root {
  --deep-teal: #0d3b45;
  --sage: #4e7f78;
  --terracotta: #c96a4a;
  --gold: #e1b23c;
  --ink: #122033;
  --cream: #faf7f0;
  --white: #ffffff;
  --border: #e6ded2;
  --muted: #5f6874;
  --shadow: 0 20px 50px rgba(18, 32, 51, 0.08);
  --radius: 8px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(225, 178, 60, 0.09), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(78, 127, 120, 0.14), transparent 28%);
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #faf7f0 0%, #ffffff 55%, #f3f0e8 100%);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 98px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 108px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 28px;
  color: var(--deep-teal);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 999px;
  padding: 6px 2px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--terracotta);
}

.section {
  padding: 92px 0;
  scroll-margin-top: 118px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(230, 222, 210, 0.8);
  border-bottom: 1px solid rgba(230, 222, 210, 0.8);
}

.hero {
  position: relative;
  min-height: calc(100svh - 98px);
  display: flex;
  align-items: center;
  padding: 72px 0 64px;
  overflow: hidden;
  background: linear-gradient(135deg, #faf7f0 0%, #fcfbf7 60%, #f3f0e8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  width: 180px;
  height: 22px;
  border-bottom: 2px solid rgba(201, 106, 74, 0.34);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 56px;
  align-items: center;
}

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

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

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--deep-teal);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep-teal);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep-teal);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.hero-subtitle {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--deep-teal);
}

.button-primary:hover {
  background: #092f37;
}

.button-secondary {
  color: var(--deep-teal);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.68);
}

.button-secondary:hover {
  border-color: rgba(78, 127, 120, 0.55);
  background: var(--white);
}

.hero-mark {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  min-height: 620px;
  padding: 42px 36px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-mark::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 78px;
  height: 78px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 18px 0 0;
}

.hero-mark img {
  width: min(100%, 420px);
  margin: 0 auto;
}

.quote-card {
  margin-top: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--terracotta);
  background: var(--cream);
  border-radius: 6px;
  color: var(--deep-teal);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 750;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 760px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.text-flow p {
  font-size: 1.08rem;
}

.mini-cards,
.feature-grid,
.activity-grid,
.commitment-grid,
.possibility-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card,
.feature-card,
.activity-card,
.commitment-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.mini-card {
  padding: 22px;
}

.card-number,
.feature-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(18, 32, 51, 0.05);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.tag-list li,
.possibility-grid li {
  border: 1px solid rgba(78, 127, 120, 0.28);
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.75);
  color: var(--deep-teal);
  font-size: 0.9rem;
  font-weight: 700;
}

.tag-list li {
  padding: 6px 10px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
}

.process-list li {
  position: relative;
  padding: 72px 18px 0 0;
}

.process-dot {
  position: absolute;
  top: 18px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--deep-teal);
  box-shadow: 0 0 0 1px rgba(13, 59, 69, 0.18);
}

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

.activity-card {
  padding: 28px;
}

.activity-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.activity-card li::marker {
  color: var(--terracotta);
}

.commitment {
  position: relative;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--deep-teal);
  overflow: hidden;
}

.commitment::after {
  content: "";
  position: absolute;
  right: 38px;
  bottom: 34px;
  width: 130px;
  height: 46px;
  border-bottom: 2px solid rgba(225, 178, 60, 0.5);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.commitment h2,
.commitment h3,
.commitment .eyebrow {
  color: var(--white);
}

.commitment p {
  color: rgba(255, 255, 255, 0.78);
}

.commitment-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commitment-grid article {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.possibility-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.possibility-grid li {
  display: flex;
  align-items: center;
  min-height: 64px;
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
}

.contact-section {
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: 54px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  color: var(--deep-teal);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--deep-teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  margin-top: 8px;
  cursor: not-allowed;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0;
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 6px 0 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-inner a {
  color: var(--deep-teal);
  font-weight: 800;
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--terracotta);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    min-height: 0;
  }

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

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
  }

  .process-list::before {
    top: 18px;
    bottom: 14px;
    left: 11px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--terracotta), var(--gold), var(--sage));
  }

  .process-list li {
    min-height: 112px;
    padding: 8px 0 28px 48px;
  }

  .process-dot {
    top: 5px;
  }
}

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

  .header-inner {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    min-height: 0;
    padding: 12px 0;
  }

  .brand-logo {
    width: 86px;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 3px 10px;
    font-size: 0.84rem;
  }

  .section {
    padding: 68px 0;
    scroll-margin-top: 128px;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.65rem);
  }

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

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

  .hero-mark {
    padding: 22px;
  }

  .activity-grid,
  .feature-grid,
  .commitment-grid,
  .possibility-grid {
    grid-template-columns: 1fr;
  }

  .commitment {
    padding: 28px 22px;
  }

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

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

  .button {
    transition: none;
  }
}
