:root {
  color-scheme: light;
  --navy: #092542;
  --navy-deep: #061c32;
  --navy-soft: #173852;
  --gold: #c5a15b;
  --gold-pale: #e2cf9f;
  --olive: #8da148;
  --ink: #172638;
  --text: #42505b;
  --cream: #f7f3ed;
  --white: #ffffff;
  --line: #e6e3dd;
  --shadow: 0 18px 48px rgba(9, 37, 66, 0.09);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-pale);
  color: var(--navy);
}

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

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5.1vw, 5rem);
  line-height: 0.98;
}

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

h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.35;
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

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

.section-heading h2::after,
.title-accent::after {
  display: block;
  width: 52px;
  height: 2px;
  margin: 0.7rem auto 0;
  background: var(--gold);
  content: "";
}

.title-accent::after {
  margin-inline: 0;
}

.section-heading p {
  max-width: 65ch;
  margin-inline: auto;
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0.78rem 1.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

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

.button-primary:hover {
  background: var(--navy-soft);
}

.button-secondary {
  border-color: rgba(9, 37, 66, 0.34);
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--navy);
  background: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(9, 37, 66, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.has-shadow {
  box-shadow: 0 8px 30px rgba(9, 37, 66, 0.08);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  color: var(--gold);
}

.brand-copy {
  display: grid;
  gap: 0.13rem;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.025em;
}

.brand-copy small {
  color: var(--navy-soft);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.4vw, 2.3rem);
}

.site-nav > a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ink);
  font-size: 0.71rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  width: 13px;
}

.site-nav .button {
  min-height: 44px;
  padding-inline: 1.45rem;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  overflow: hidden;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  max-width: 1600px;
  min-height: 650px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.04fr) minmax(520px, 0.96fr);
}

.hero-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 6.5vw, 7.5rem);
  background: var(--cream);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -130px;
  width: 260px;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(0 0, 45% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-lead {
  max-width: 56ch;
  margin-bottom: 1.1rem;
  font-size: 1.04rem;
  line-height: 1.68;
}

.competence-line {
  margin: 0;
  color: #9b7838;
  font-size: 0.81rem;
  font-weight: 600;
}

.hero-quote {
  position: relative;
  max-width: 46ch;
  margin: 1.55rem 0 0;
  padding-left: 2rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-quote::before {
  position: absolute;
  top: -0.45rem;
  left: 0;
  color: var(--gold);
  content: "“";
  font-size: 3rem;
  line-height: 1;
}

.hero-media {
  min-width: 0;
  margin: 0;
  background: #b5b6b2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.35fr);
}

.about-portrait {
  position: relative;
  margin: 0;
}

.about-portrait::before {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 58%;
  height: 54%;
  border: 1px solid var(--gold-pale);
  content: "";
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  object-position: center 28%;
}

.about-copy h2 { max-width: 15ch; }
.about-copy > p { max-width: 70ch; color: var(--text); }

.trust-grid {
  display: grid;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  gap: 1.15rem;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.4;
}

.trust-item svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--olive);
}

.journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.journey-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 300px;
  align-items: center;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 5rem);
  background-position: center;
  background-size: cover;
}

.journey-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
}

.journey-card:first-child {
  justify-content: flex-end;
  background-image: url("assets/journey-mountains.webp");
  color: var(--white);
}

.journey-card:first-child::before {
  background: linear-gradient(90deg, rgba(6, 28, 50, 0.9), rgba(6, 28, 50, 0.7));
}

.journey-card:last-child {
  background-image: url("assets/journey-path.webp");
}

.journey-card:last-child::before {
  background: linear-gradient(90deg, rgba(248, 245, 239, 0.96) 4%, rgba(248, 245, 239, 0.78) 58%, rgba(248, 245, 239, 0.3));
}

.journey-content { width: min(100%, 520px); }
.journey-card h2 { margin-bottom: 0.65rem; font-size: clamp(2.1rem, 3vw, 3rem); }
.journey-card:first-child h2 { color: var(--white); }
.journey-card p { max-width: 55ch; margin-bottom: 1.15rem; font-size: 0.87rem; }

.journey-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.offer { background: #fdfcf9; }

.offer-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}

.offer-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  padding: 2rem 1.2rem 1.45rem;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(9, 37, 66, 0.045);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-card:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.offer-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--olive);
}

.offer-icon svg { width: 58px; height: 58px; }
.offer-card h3 { min-height: 2.7em; font-size: 0.95rem; }
.offer-card p { margin-bottom: 1rem; color: var(--text); font-size: 0.72rem; line-height: 1.62; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.64rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.tools { background: var(--cream); }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; }

.tool-card {
  position: relative;
  isolation: isolate;
  min-height: 365px;
  overflow: hidden;
  padding: clamp(3rem, 5.5vw, 5.5rem);
  background-position: center;
  background-size: cover;
}

.tool-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
}

.tool-mtq {
  display: flex;
  justify-content: flex-end;
  background-image: url("assets/mtq-stones.webp");
}

.tool-mtq::before {
  background: linear-gradient(90deg, rgba(250, 248, 243, 0.08) 20%, rgba(250, 248, 243, 0.88) 48%, rgba(250, 248, 243, 0.98));
}

.tool-prism { background-image: url("assets/prism-brain.webp"); }
.tool-prism::before { background: linear-gradient(90deg, rgba(250, 248, 243, 0.99), rgba(250, 248, 243, 0.9) 48%, rgba(250, 248, 243, 0.22)); }
.tool-copy { width: min(100%, 420px); }
.tool-card h2 { margin-bottom: 0.2rem; font-size: clamp(2rem, 3vw, 3rem); }
.tool-kicker { margin-bottom: 1rem; color: var(--text); font-size: 0.75rem; font-weight: 600; }
.tool-card p { color: var(--text); font-size: 0.8rem; }

.check-list {
  display: grid;
  gap: 0.32rem;
  margin: 1rem 0 1.35rem;
  padding: 0;
  font-size: 0.72rem;
  list-style: none;
}

.check-list li { display: flex; gap: 0.55rem; }
.check-list li::before { color: var(--olive); content: "✓"; font-weight: 700; }

.audience-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  grid-template-columns: repeat(4, 1fr);
}

.audience-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
}

.audience-card svg {
  width: 48px;
  height: 48px;
  color: var(--olive);
  grid-row: 1 / 3;
}

.audience-card:nth-child(1) svg,
.audience-card:nth-child(4) svg { color: var(--gold); }
.audience-card h3 { margin-bottom: 0.35rem; font-size: 0.88rem; }
.audience-card p { color: var(--text); font-size: 0.7rem; line-height: 1.55; }

.benefits {
  padding-block: 3.2rem;
  background: linear-gradient(110deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.benefits h2 {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
}

.benefits h2::after {
  display: block;
  width: 52px;
  height: 2px;
  margin: 0.6rem auto 0;
  background: var(--gold);
  content: "";
}

.benefit-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1.3rem;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
}

.benefit-list svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--gold-pale);
}

.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.contact-image {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 28%;
  filter: sepia(0.12) contrast(0.93);
}

.contact-copy {
  display: grid;
  align-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-copy h2 { max-width: 15ch; }
.contact-copy p { max-width: 55ch; color: var(--text); }

.contact-details {
  display: grid;
  align-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details a,
.contact-details span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.74rem;
  text-decoration: none;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--gold);
}

.site-footer {
  padding-block: 2.8rem 1.2rem;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  align-items: start;
  padding-bottom: 2.2rem;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy small { color: var(--white); }

.footer-group strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.2rem;
}

.footer-nav a,
.footer-social a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-social a:hover { color: var(--gold-pale); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
}

@media (max-width: 1120px) {
  .site-nav { gap: 1.1rem; }
  .site-nav .button { padding-inline: 1rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr); }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid,
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .menu-toggle { display: grid; }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    visibility: hidden;
    max-height: calc(100dvh - 104px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    border: 1px solid var(--line);
    padding: 1rem;
    opacity: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    padding: 0.65rem 0.4rem;
  }

  .site-nav .button { margin-top: 0.8rem; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding-block: 4.5rem; }
  .hero-copy::after { display: none; }
  .hero-media { min-height: 480px; }
  .about-grid { grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); }
  .journey,
  .tools-grid { grid-template-columns: 1fr; }
  .journey-card:first-child { justify-content: flex-start; }
  .benefit-list { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 0.8fr 1.2fr; }
  .contact-copy { padding-inline: 2.5rem; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 0.79rem; }
  .brand-copy small { font-size: 0.46rem; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .button-row { display: grid; }
  .hero-copy { padding: 3.8rem 1.25rem; }
  .hero-media { min-height: 360px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { width: min(92%, 520px); }
  .trust-grid,
  .audience-grid,
  .offer-grid,
  .benefit-list { grid-template-columns: 1fr; }
  .journey-card,
  .tool-card { min-height: 390px; padding: 2.5rem 1.3rem; }
  .journey-card:last-child::before { background: rgba(248, 245, 239, 0.84); }
  .offer-grid { gap: 0.8rem; }
  .offer-card { min-height: 0; }
  .tool-mtq,
  .tool-prism { align-items: flex-end; }
  .tool-mtq::before,
  .tool-prism::before { background: linear-gradient(0deg, rgba(250, 248, 243, 0.99), rgba(250, 248, 243, 0.88) 57%, rgba(250, 248, 243, 0.18)); }
  .benefit-list li { width: min(100%, 280px); margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-image { min-height: 340px; }
  .contact-copy { padding: 3.5rem 1.3rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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