:root {
  --navy-950: #07192b;
  --navy-900: #0b2239;
  --navy-800: #123553;
  --navy-700: #1d4b70;
  --gold-500: #c8a15a;
  --gold-300: #e3c98f;
  --gold-100: #f7efd9;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #14202a;
  --muted: #5f6b73;
  --line: #dce1e3;
  --success: #245b42;
  --shadow: 0 18px 50px rgba(7, 25, 43, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, .96);
  border-bottom: 1px solid rgba(11, 34, 57, .09);
}
.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}
.brand-text span { display: block; line-height: 1.08; }
.brand-text small {
  margin-top: .22rem;
  color: var(--gold-500);
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  color: var(--navy-900);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--navy-700); }
.site-nav .nav-cta { color: var(--white); }
.nav-cta, .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.15rem;
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible, .nav-cta:hover, .nav-cta:focus-visible {
  background: var(--navy-700);
  transform: translateY(-1px);
}
.button.secondary {
  background: transparent;
  color: var(--navy-900);
}
.button.secondary:hover, .button.secondary:focus-visible { background: var(--gold-100); }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.35rem;
}

.hero {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}
.hero-grid {
  width: min(calc(100% - 40px), var(--max));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: center;
  gap: 6vw;
  padding: 5rem 0;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}
h1 {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -.045em;
}
h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
h3 { margin-bottom: .65rem; font-size: 1.45rem; }
.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 2rem;
  color: #dce5eb;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero .button { border-color: var(--gold-500); background: var(--gold-500); color: var(--navy-950); }
.hero .button:hover, .hero .button:focus-visible { background: var(--gold-300); }
.hero .button.secondary { background: transparent; color: var(--white); border-color: #708398; }
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 400px;
  display: grid;
  place-items: center;
}
.hero-visual::before { content: none; }
.hero-logo {
  position: relative;
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.trust-strip { background: var(--gold-100); border-bottom: 1px solid #eadbb7; }
.trust-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 1.2rem 0;
  color: var(--navy-900);
  text-align: center;
  font-weight: 800;
  letter-spacing: .01em;
}

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 3.2rem; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.audience {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--line);
}
.audience + .audience { padding-left: 2rem; border-left: 1px solid var(--line); }
.audience-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--gold-500);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.audience p { margin-bottom: 0; color: var(--muted); }

.difference { background: var(--navy-900); color: var(--white); }
.difference-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  align-items: start;
}
.difference h2 { color: var(--white); }
.difference-lead { color: #dce5eb; font-size: 1.1rem; }
.difference-points { border-top: 1px solid rgba(255,255,255,.2); }
.difference-points article { padding: 1.45rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.difference-points strong { display: block; margin-bottom: .35rem; color: var(--gold-300); font-family: Georgia, serif; font-size: 1.35rem; }
.difference-points p { margin: 0; color: #cbd6de; }

.approach { background: var(--white); }
.approach-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  align-items: start;
}
.approach-intro { position: sticky; top: 130px; }
.service-list { border-top: 1px solid var(--line); }
.service {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}
.service span {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 1.6rem;
}
.service h3 { margin-bottom: .35rem; }
.service p { margin: 0; color: var(--muted); }

.advanced { background: var(--gold-100); }
.advanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.advanced-grid p { margin-top: 0; color: #4e5660; font-size: 1.05rem; }
.advanced-grid p + p { margin-top: 1.2rem; }

.callout { padding-top: 0; }
.callout-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2.4rem, 6vw, 5rem);
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
}
.callout-inner::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(227, 201, 143, .25);
  border-radius: 50%;
}
.callout h2 { color: var(--white); }
.callout p { max-width: 700px; margin-bottom: 0; color: #dce5eb; }
.callout .button { position: relative; z-index: 1; background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--navy-950);
  color: var(--white);
}
.page-hero h1 { max-width: 850px; }
.page-hero p { max-width: 720px; margin-bottom: 0; color: #dce5eb; font-size: 1.2rem; }

.about-section, .reviews-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.about-copy { max-width: 720px; }
.about-copy p { margin-top: 0; color: #424e57; font-size: 1.06rem; }
.about-copy p + p { margin-top: 1.25rem; }
.values-section { background: var(--gold-100); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ddcfae;
}
.values-grid article { padding: 2rem 2rem 0 0; }
.values-grid article + article { padding-left: 2rem; border-left: 1px solid #ddcfae; }
.values-grid span { display: block; margin-bottom: 2rem; color: #9a7332; font-weight: 800; letter-spacing: .14em; }
.values-grid p { margin-bottom: 0; color: #5b554a; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.reviews-copy { max-width: 700px; }
.reviews-copy > p:not(.eyebrow) { margin-bottom: 1.8rem; color: var(--muted); font-size: 1.06rem; }
.review-note {
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.review-note img { width: 76px; height: 82px; margin-bottom: 1.4rem; object-fit: contain; }
.review-note p { margin-bottom: 0; color: var(--muted); }
.review-list-section { background: var(--gold-100); }
.review-list-section .section-heading { margin-bottom: 0; }
.review-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.review-card { padding: clamp(1.5rem, 4vw, 2.4rem); border: 1px solid #ddcfae; border-radius: var(--radius); background: var(--white); }
.review-card blockquote { margin: 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.3rem; line-height: 1.5; }
.review-author { margin: 1.3rem 0 0; color: var(--muted); font-weight: 800; }

.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.contact-details h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.contact-details > p { color: var(--muted); }
.contact-option {
  display: block;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.contact-option span { display: block; color: var(--muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-option a { color: var(--navy-800); font-weight: 800; }
.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; margin-bottom: .4rem; color: var(--navy-900); font-weight: 800; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 50px;
  padding: .75rem .9rem;
  border: 1px solid #bcc6cc;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(200, 161, 90, .28); border-color: var(--gold-500); }
.preview-note {
  margin: 0 0 1.25rem;
  padding: .85rem 1rem;
  border-radius: 8px;
  background: var(--gold-100);
  color: #624a1d;
  font-size: .87rem;
}
.form-status { margin: 1rem 0 0; color: var(--success); font-weight: 800; }

.site-footer { background: var(--navy-950); color: #cbd6de; }
.footer-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { color: var(--white); font-family: Georgia, serif; font-size: 1.4rem; }
.footer-copy { max-width: 420px; color: #9fb0bc; }
.footer-heading { margin-bottom: .65rem; color: var(--gold-300); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: #dce5eb; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-300); }
.copyright {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #8295a3;
  font-size: .82rem;
}

@media (max-width: 860px) {
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { min-height: 44px; display: flex; align-items: center; padding: 0 .5rem; }
  .site-nav .nav-cta { justify-content: center; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { min-height: 280px; }
  .hero-logo { width: min(100%, 560px); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience, .audience + .audience { padding: 1.6rem 0; border-left: 0; }
  .audience-number { margin-bottom: 1rem; }
  .approach-grid, .contact-grid, .difference-grid, .advanced-grid, .about-grid, .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .values-grid article, .values-grid article + article { padding: 1.6rem 0; border-left: 0; border-bottom: 1px solid #ddcfae; }
  .values-grid span { margin-bottom: .8rem; }
  .approach-intro { position: static; }
  .callout-inner { grid-template-columns: 1fr; }
  .callout-inner .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav-wrap { width: min(calc(100% - 28px), var(--max)); }
  .brand-text { font-size: .87rem; }
  .brand img { width: 46px; height: 46px; }
  .hero-grid, .container, .trust-inner, .footer-grid, .copyright { width: min(calc(100% - 28px), var(--max)); }
  .hero-grid { padding: 3.4rem 0; }
  h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
  .hero-visual { min-height: 290px; }
  .hero-visual::before { width: 280px; height: 280px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

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