:root {
  --navy: #082040;
  --navy-2: #0d2b50;
  --gold: #a88038;
  --gold-soft: #c4a367;
  --slate: #6f7888;
  --mist: #f3f4f6;
  --white: #ffffff;
  --ink: #10223a;
  --border: rgba(8, 32, 64, 0.12);
  --shadow: 0 24px 60px rgba(8, 32, 64, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,32,64,.08);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  width: 176px;
  height: 66px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.brand img {
  width: 180px;
  transform: scale(1.20);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.primary-nav a {
  position: relative;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .02em;
  padding: 28px 0 25px;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }
.primary-nav .services-link { color: var(--navy); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 54%, rgba(255,255,255,.80) 100%),
    url('assets/summit-support-background.png') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(168,128,56,.10), transparent 32%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -120px;
  top: 80px;
  opacity: .025;
  background: url('assets/summit-support-emblem.png') center/contain no-repeat;
  mix-blend-mode: multiply;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
  padding: 95px 0 105px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.hero h1,
.section-heading h2,
.about h2,
.contact h2 {
  margin: 18px 0 20px;
  color: var(--navy);
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(3.5rem, 6vw, 6.6rem); }
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #445166;
  font-size: 1.16rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8,32,64,.18);
}
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary {
  border-color: rgba(8,32,64,.18);
  background: rgba(255,255,255,.72);
  color: var(--navy);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  white-space: nowrap;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 42px;
}
.hero-proof span {
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-proof span + span::before {
  content: "•";
  color: var(--gold);
  margin-right: 18px;
}

.hero-brand-card {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8,32,64,.08);
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-brand-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(168,128,56,.07);
}
.brand-card-inner {
  position: relative;
  z-index: 2;
  width: 82%;
  text-align: center;
}
.brand-card-inner img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.brand-card-inner p {
  margin: 18px auto 0;
  max-width: 390px;
  color: var(--slate);
  font-size: .92rem;
}
.mountain-rule {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gold);
  margin: 4px 0 0;
}
.mountain-rule span { flex: 1; height: 1px; background: rgba(8,32,64,.16); }
.mountain-rule b { font-size: 1.05rem; transform: scaleX(1.8); font-weight: 400; }

.services {
  position: relative;
  padding: 110px 0 105px;
  color: var(--white);
  background:
    linear-gradient(135deg, #061a35 0%, var(--navy) 58%, #0c2c53 100%);
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -100px;
  top: -120px;
  opacity: .045;
  background: url('assets/summit-support-emblem.png') center/contain no-repeat;
  filter: grayscale(1) brightness(8);
}
.services-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}
.eyebrow-light { color: var(--gold-soft); }
.services-heading h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  margin-bottom: 0;
}
.services-heading > p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.70);
  font-size: 1.02rem;
}
.service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,128,56,.55);
  background: rgba(255,255,255,.085);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--gold);
  transition: width .25s ease;
}
.service-card:hover::after { width: 100%; }
.service-number {
  color: var(--gold-soft);
  font-family: "Noto Serif", Georgia, serif;
  font-size: .9rem;
  letter-spacing: .12em;
}
.service-icon {
  margin: 38px 0 16px;
  color: var(--gold-soft);
  font-size: 2.1rem;
  line-height: 1;
}
.service-card h3 {
  max-width: 480px;
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.25;
}
.service-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
}
.services-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 28px 30px;
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
}
.services-cta p { margin: 0; }

.about {
  padding: 115px 0;
  background: var(--mist);
}
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: center;
}
.about h2,
.contact h2 { font-size: clamp(2.5rem, 4vw, 4.4rem); }
.about-copy p {
  color: #536072;
  max-width: 600px;
}
.principles {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 52px rgba(8,32,64,.08);
  padding: 12px 30px;
}
.principles article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
}
.principles article + article { border-top: 1px solid var(--border); }
.principles article > span {
  color: var(--gold);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.principles h3 { margin: 0 0 6px; color: var(--navy); }
.principles p { margin: 0; color: var(--slate); }

.quote-band {
  padding: 80px 0;
  background: var(--white);
}
.quote-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
}
.quote-inner img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 18px;
}
.quote-inner blockquote {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-style: italic;
}

.contact {
  padding: 115px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-copy > p { color: var(--slate); max-width: 470px; }
.contact-details {
  margin-top: 42px;
  display: grid;
  gap: 14px;
}
.contact-details a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  background: var(--white);
  transition: border-color .2s ease, transform .2s ease;
}
.contact-details a:hover { transform: translateY(-2px); border-color: var(--gold); }
.contact-label {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}
.contact-details strong { color: var(--navy); font-size: .98rem; }
.contact-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(8,32,64,.16);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fcfcfd;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(168,128,56,.10);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 150px; }
.form-submit { width: 100%; border: 0; }
.form-note {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: .78rem;
  text-align: center;
}
.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: #8b3a32;
  font-size: .82rem;
  text-align: center;
}

.site-footer {
  padding: 40px 0;
  background: var(--navy);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 34px;
  align-items: center;
}
.footer-brand {
  width: 200px;
  height: 118px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.footer-copy p { margin: 0; }
.footer-copy .muted { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 4px; }
.back-to-top { color: var(--gold-soft); text-decoration: none; font-weight: 700; font-size: .86rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-grid { padding: 80px 0; }
  .hero-brand-card { min-height: 400px; }
  .services-heading { grid-template-columns: 1fr; gap: 20px; }
  .about-grid, .contact-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 200px 1fr; }
  .back-to-top { grid-column: 2; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { min-height: 72px; }
  .brand { width: 150px; height: 60px; }
  .brand img { width: 156px; }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    margin-left: auto;
    background: var(--navy);
  }
  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid rgba(8,32,64,.08); }
  .primary-nav a::after { display: none; }

  .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; gap: 7px; }
  .hero-proof span + span::before { display: none; }
  .hero-brand-card { min-height: 340px; }
  .brand-card-inner { width: 92%; }

  .services,
  .about,
  .contact { padding: 82px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 28px; }
  .services-cta { flex-direction: column; align-items: flex-start; }
  .services-cta .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-inner { flex-direction: column; }
  .quote-inner blockquote { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .back-to-top { grid-column: auto; }
}

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