:root {
  --ink: #06131a;
  --ink-2: #0b2029;
  --teal: #0f4f58;
  --aqua: #7fb8b5;
  --cream: #f5edda;
  --mist: #dfece8;
  --muted: #aabdb8;
  --gold: #c99b38;
  --gold-2: #eed07c;
  --charcoal: #131712;
  --line: rgba(201, 155, 56, 0.36);
  --panel: rgba(9, 28, 36, 0.82);
  --heading: "Cinzel", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(6, 19, 26, 0.94), rgba(8, 31, 38, 0.96) 44%, rgba(5, 12, 16, 1)),
    #06131a;
  color: var(--mist);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 74%);
}

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

a {
  color: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(201, 155, 56, 0.32);
  background: rgba(5, 15, 20, 0.86);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 208, 124, 0.58);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(15, 79, 88, 0.8), rgba(5, 15, 20, 0.94));
  box-shadow: 0 0 26px rgba(127, 184, 181, 0.22);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-lockup strong,
.footer-brand strong {
  display: block;
  color: var(--cream);
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-lockup small,
.footer-brand small {
  display: block;
  margin-top: 0.2rem;
  color: var(--gold-2);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
  color: rgba(245, 237, 218, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 29, 38, 0.74);
  color: var(--gold-2);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(680px, 88vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 155, 56, 0.28);
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 15, 20, 0.94) 0%, rgba(5, 15, 20, 0.78) 35%, rgba(5, 15, 20, 0.18) 72%),
    linear-gradient(180deg, rgba(5, 15, 20, 0.18), rgba(5, 15, 20, 0.92));
}

.hero-shell,
.section,
.begin-shell,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4rem;
}

.hero-copy {
  width: min(710px, 100%);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  color: var(--cream);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(3.7rem, 8.4vw, 7.7rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
  line-height: 1.15;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.challenge-copy p,
.path-copy > p,
.arc-copy > p,
.begin-shell > p {
  color: rgba(223, 236, 232, 0.9);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
}

.hero-actions,
.begin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.85rem 1.15rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  border: 1px solid rgba(245, 237, 218, 0.45);
  background: linear-gradient(180deg, #f2d982, #c99b38);
  color: #091c23;
}

.button-secondary {
  border: 1px solid rgba(201, 155, 56, 0.42);
  background: rgba(5, 15, 20, 0.68);
  color: var(--cream);
}

.principle-band {
  border-bottom: 1px solid rgba(201, 155, 56, 0.24);
  background: rgba(9, 31, 40, 0.84);
}

.principle-band div {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  color: var(--cream);
  font-family: var(--heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.principle-band span {
  min-width: 0;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 2rem;
}

.value-grid,
.challenge-list,
.arc-grid,
.journey-grid {
  display: grid;
  gap: 1rem;
}

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

.value-grid article,
.challenge-list article,
.arc-grid article,
.journey-grid article,
.step-list li {
  border: 1px solid rgba(201, 155, 56, 0.28);
  border-radius: 8px;
  background: rgba(7, 23, 31, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.value-grid article {
  min-height: 276px;
  padding: 1.3rem;
}

.value-grid p,
.challenge-list p,
.arc-grid p,
.journey-grid p,
.step-list li {
  color: rgba(223, 236, 232, 0.82);
}

.icon {
  width: 62px;
  height: 62px;
  display: block;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(238, 208, 124, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(15, 79, 88, 0.92), rgba(7, 23, 31, 0.95));
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  inset: 17px;
  border: 2px solid var(--gold-2);
  border-radius: 50%;
}

.icon.spiral::before {
  border-radius: 50%;
  border-left-color: transparent;
}

.icon.clarity::before {
  border-radius: 6px;
  transform: rotate(45deg);
}

.icon.service::after {
  inset: 25px 14px 14px;
  border-radius: 0 0 20px 20px;
}

.challenge-section,
.path-section,
.arc-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}

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

.challenge-list article {
  min-height: 210px;
  padding: 1.25rem;
}

.challenge-list span {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border: 1px solid rgba(127, 184, 181, 0.42);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: var(--heading);
  line-height: 42px;
  text-align: center;
}

.path-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.path-media,
.arc-media {
  overflow: hidden;
  border: 1px solid rgba(201, 155, 56, 0.34);
  border-radius: 8px;
  background: rgba(7, 23, 31, 0.9);
}

.path-media img,
.arc-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.path-media img {
  object-position: center;
}

.arc-media img {
  object-position: center;
}

.step-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 96px;
  padding: 1rem 1rem 1rem 4.8rem;
}

.step-list li::before {
  content: counter(list-item, decimal-leading-zero);
  position: absolute;
  top: 1.05rem;
  left: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(238, 208, 124, 0.48);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: var(--heading);
  line-height: 40px;
  text-align: center;
}

.step-list span {
  display: block;
  color: var(--cream);
  font-family: var(--heading);
  font-size: 1.08rem;
}

.arc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.7rem;
}

.arc-grid article,
.journey-grid article {
  padding: 1.2rem;
}

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

.journey-grid article {
  min-height: 206px;
}

.begin-section {
  padding: clamp(4.2rem, 8vw, 7.5rem) 0;
  border-top: 1px solid rgba(201, 155, 56, 0.25);
  background:
    linear-gradient(120deg, rgba(7, 23, 31, 0.96), rgba(15, 79, 88, 0.54)),
    #07171f;
}

.begin-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.7fr);
  gap: 1.5rem 3rem;
  align-items: end;
}

.begin-shell .eyebrow,
.begin-shell h2,
.begin-shell > p:first-of-type {
  grid-column: 1;
}

.begin-actions,
.care-note {
  grid-column: 2;
}

.care-note {
  margin: 1rem 0 0;
  color: rgba(223, 236, 232, 0.72);
  font-size: 0.92rem;
}

.site-footer {
  padding: 2.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(223, 236, 232, 0.72);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .value-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .challenge-section,
  .path-section,
  .arc-section,
  .begin-shell {
    grid-template-columns: 1fr;
  }

  .begin-actions,
  .care-note {
    grid-column: 1;
  }

  .path-media {
    order: 2;
  }

  .path-copy {
    order: 1;
  }

  .path-media img,
  .arc-media img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .header-shell {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid rgba(201, 155, 56, 0.32);
    border-radius: 8px;
    background: rgba(5, 15, 20, 0.98);
  }

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

  .site-nav a {
    padding: 0.9rem;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(127, 184, 181, 0.12);
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 15, 20, 0.08), rgba(5, 15, 20, 0.84) 46%, rgba(5, 15, 20, 0.98)),
      linear-gradient(90deg, rgba(5, 15, 20, 0.48), rgba(5, 15, 20, 0.14));
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-shell {
    padding: 5rem 0 3rem;
  }

  .principle-band div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0;
  }

  .value-grid,
  .challenge-list,
  .arc-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .hero-shell,
  .section,
  .begin-shell,
  .site-footer,
  .header-shell,
  .principle-band div {
    width: min(100% - 24px, 1180px);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-lockup strong,
  .footer-brand strong {
    font-size: 1.08rem;
  }

  .brand-lockup small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .value-grid article,
  .challenge-list article,
  .arc-grid article,
  .journey-grid article {
    min-height: auto;
  }

  .path-media img,
  .arc-media img {
    aspect-ratio: 4 / 3;
  }

  .step-list li {
    padding-right: 0.9rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
