@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0b1d34;
  --navy-deep: #061527;
  --ink: #1b1f24;
  --gold: #b08d3c;
  --gold-dark: #8d6e25;
  --gold-light: #c9a84c;
  --steel: #68717c;
  --ivory: #f7f4ef;
  --ivory-dark: #ede9e1;
  --white: #ffffff;
  --line: rgba(11, 29, 52, 0.12);
  --shadow: 0 24px 70px rgba(6, 21, 39, 0.16);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0.01em;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ─── Skip Link ─────────────────────────────── */
.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

/* ─── Layout ─────────────────────────────────── */
.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.container.narrow {
  width: min(860px, calc(100% - 48px));
}

/* ─── Header ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(6, 21, 39, 0.42);
}

.header-inner {
  min-height: 94px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

/* ─── Logo Badge ─────────────────────────────── */
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  background: var(--ivory);
  padding: 7px 18px 7px 12px;
  transition: background 0.2s ease;
}

.brand:hover {
  background: var(--white);
}

.brand img {
  width: 190px;
  height: auto;
}

.footer-brand img {
  width: 168px;
  height: auto;
}

/* ─── Navigation ─────────────────────────────── */
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.site-nav a,
.header-cta,
.btn,
.text-link,
.footer-lower nav a,
.sitemap-list a {
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.085em;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-color: var(--gold);
}

.nav-home-icon {
  display: flex;
  align-items: center;
  line-height: 0;
}
.nav-home-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.header-cta {
  color: var(--white);
  background: var(--gold);
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(141, 110, 37, 0.3);
}

/* ─── Mobile Toggle ──────────────────────────── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  background: currentColor;
}

/* ─── Hero ───────────────────────────────────── */
.home-hero {
  min-height: 620px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(247,244,239,1.00) 0%, rgba(247,244,239,0.98) 34%, rgba(247,244,239,0.72) 52%, rgba(247,244,239,0.08) 68%, rgba(247,244,239,0.00) 80%),
    url("Assets/Landing Page Background_FINAL.webp") center / cover no-repeat;
  border-bottom: 1px solid rgba(176, 141, 60, 0.16);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  align-items: center;
  min-height: 620px;
}

.hero-copy {
  padding: 80px 0;
}

/* ─── Eyebrow Labels ─────────────────────────── */
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.eyebrow.gold {
  color: var(--gold);
}

/* ─── Typography ─────────────────────────────── */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 60px;
  margin-bottom: 24px;
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.28;
  margin-bottom: 10px;
}

.hero-copy h1 span {
  color: var(--gold);
}

/* ─── Rule Mark ──────────────────────────────── */
.rule-mark {
  width: 300px;
  height: 16px;
  display: flex;
  align-items: center;
  margin: 0 0 26px;
}

.rule-mark::before,
.rule-mark::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.rule-mark span {
  width: 7px;
  height: 7px;
  margin: 0 14px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ─── Hero Lede ──────────────────────────────── */
.hero-lede {
  max-width: 480px;
  color: #2a3540;
  margin-bottom: 36px;
  font-size: 17px;
  line-height: 1.78;
}

/* ─── Buttons ────────────────────────────────── */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(6, 21, 39, 0.28);
}

.btn-secondary {
  color: var(--gold-dark);
  background: transparent;
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: rgba(176, 141, 60, 0.07);
  border-color: var(--gold-dark);
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(141, 110, 37, 0.32);
}

/* ─── Sections ───────────────────────────────── */
.section {
  padding: 90px 0;
  background: var(--white);
}

.section.muted {
  background: var(--ivory-dark);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p:not(.eyebrow) {
  color: #5a6370;
  font-size: 17px;
}

/* ─── Service Grid ───────────────────────────── */
.service-grid,
.feature-grid,
.resource-grid {
  display: grid;
  gap: 0;
}

.service-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.three,
.resource-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  min-height: 268px;
  padding: 36px 28px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-top: 3px solid transparent;
  transition: border-top-color 0.25s ease, background 0.25s ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  border-top-color: var(--gold);
  background: rgba(176, 141, 60, 0.03);
}

.service-card p {
  color: #4a515b;
  font-size: 15px;
  line-height: 1.72;
}

/* ─── Line Icons ─────────────────────────────── */
.line-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Text Link ──────────────────────────────── */
.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--gold-dark);
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.07em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 13px;
  color: var(--gold);
}

/* ─── Stats Band ─────────────────────────────── */
.stats-band {
  background: var(--navy);
  border-top: 1px solid rgba(176, 141, 60, 0.22);
  border-bottom: 1px solid rgba(176, 141, 60, 0.22);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.stat-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.58);
}

/* ─── Dark Band ──────────────────────────────── */
.dark-band {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 21, 39, 0.98), rgba(11, 29, 52, 0.98)),
    var(--navy);
}

.watermark {
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 420px;
  height: 260px;
  background: url("Assets/stewart_1031_exact_approved_logo_embedded.svg") center / contain no-repeat;
  opacity: 0.05;
}

.split-content {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 72px;
  align-items: center;
}

.dark-band h2,
.dark-band h3,
.cta-band h2,
.page-hero h1,
.page-hero p {
  color: var(--white);
}

.split-intro p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

/* ─── Proof Grid ─────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-grid article {
  min-height: 158px;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 20px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease;
}

.proof-grid article:hover {
  background: rgba(176, 141, 60, 0.07);
}

.proof-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.proof-link:hover {
  color: #e0c060;
  letter-spacing: 0.10em;
}

.proof-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(176, 141, 60, 0.65);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.proof-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-grid h3 {
  color: var(--white);
  margin-bottom: 7px;
  font-size: 19px;
  font-family: var(--serif);
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  font-size: 14.5px;
}

/* ─── Testimonial Band ───────────────────────── */
.testimonial-band {
  padding: 96px 0;
  background: var(--ivory);
  border-top: 1px solid rgba(176, 141, 60, 0.14);
  border-bottom: 1px solid rgba(176, 141, 60, 0.14);
  position: relative;
  overflow: hidden;
}

.testimonial-band::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: calc(50% - 340px);
  font-family: var(--serif);
  font-size: 260px;
  color: rgba(176, 141, 60, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.58;
  color: var(--navy);
  margin: 0 0 34px;
  letter-spacing: 0.01em;
}

.testimonial-meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(176, 141, 60, 0.3);
  flex-shrink: 0;
}

.testimonial-byline {
  text-align: left;
}

.testimonial-name {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.testimonial-role {
  display: block;
  font-size: 13px;
  color: var(--steel);
  margin-top: 3px;
}

/* ─── Photo Hero Variant (About page) ───────── */
.photo-hero {
  background:
    linear-gradient(150deg, rgba(6,21,39,0.93) 0%, rgba(11,29,52,0.76) 60%, rgba(11,29,52,0.52) 100%),
    url("Assets/Office Space.webp") center / cover no-repeat;
}

/* ─── Photo Split Layout ─────────────────────── */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 68px;
  background: var(--white);
}

.photo-panel-copy.on-navy {
  background: var(--navy);
  color: var(--white);
}

.photo-panel-copy.on-navy h2,
.photo-panel-copy.on-navy h3,
.photo-panel-copy.on-navy .eyebrow {
  color: var(--white);
}

.photo-panel-copy.on-ivory {
  background: var(--ivory);
}

.split-intro-p {
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  max-width: 400px;
  margin-bottom: 28px;
}

/* ─── Photo Background Section ───────────────── */
.photo-bg-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

.photo-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,21,39,0.90), rgba(11,29,52,0.68));
  pointer-events: none;
}

.photo-bg-section .container {
  position: relative;
  z-index: 1;
}

.photo-bg-section h2,
.photo-bg-section p,
.photo-bg-section .eyebrow {
  color: var(--white);
}

/* ─── Insight / Newsletter Band ──────────────── */
.insight-band {
  display: grid;
  grid-template-columns: minmax(320px, 38%) 1fr;
  background: var(--white);
  border-top: 1px solid rgba(176, 141, 60, 0.16);
}

.insight-image {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(6, 21, 39, 0.08), rgba(6, 21, 39, 0.44)),
    url("Assets/Landing Page Background_FINAL.webp") center / cover no-repeat;
}

.insight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 78px;
}

/* ─── Forms ──────────────────────────────────── */
.inline-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.inline-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(11, 29, 52, 0.26);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 60, 0.14);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-dark);
}

.form-status--success {
  color: #2a6e3f;
}

.form-status--error {
  color: #b03c3c;
}

/* ─── Page Hero ──────────────────────────────── */
.page-hero {
  padding: 110px 0 96px;
  background:
    linear-gradient(135deg, rgba(6, 21, 39, 0.97), rgba(11, 29, 52, 0.88)),
    url("Assets/Landing Page Background_FINAL.webp") center / cover no-repeat;
}

.page-hero.compact {
  padding: 80px 0 72px;
}

.page-hero h1 {
  font-size: 54px;
  max-width: 840px;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

/* ─── Two Column ─────────────────────────────── */
.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 74px;
}

/* ─── Rich Copy ──────────────────────────────── */
.rich-copy p,
.feature-card p,
.resource-card p,
.legal-copy p {
  color: #4a515b;
}

.rich-copy p {
  font-size: 17px;
  line-height: 1.82;
}

/* ─── Feature & Resource Cards ───────────────── */
.feature-card,
.resource-card {
  min-height: 250px;
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 52, 0.1);
  box-shadow: 0 8px 28px rgba(6, 21, 39, 0.04);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.feature-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(6, 21, 39, 0.1);
  border-color: rgba(176, 141, 60, 0.28);
}

.resource-card {
  min-height: 320px;
}

/* ─── Standards List ─────────────────────────── */
.standards-list {
  display: grid;
  gap: 28px;
}

.standards-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.standards-list span,
.service-number,
.process-row span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
}

.standards-list h3,
.standards-list p {
  grid-column: 2;
}

.standards-list p {
  color: #4a515b;
  margin-bottom: 0;
  font-size: 15px;
}

/* ─── CTA Band ───────────────────────────────── */
.cta-band {
  padding: 62px 0;
  color: var(--white);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(176, 141, 60, 0.05));
  pointer-events: none;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  position: relative;
}

.cta-inner h2 {
  margin-bottom: 0;
}

/* ─── Service Detail ─────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr 0.9fr;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-detail p {
  color: #4a515b;
  font-size: 16px;
}

/* ─── Check List ─────────────────────────────── */
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0 0 13px 26px;
  color: #3c4550;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ─── Process Row ────────────────────────────── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-row article {
  padding: 30px 24px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-row article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(6, 21, 39, 0.09);
}

/* ─── Timeline ───────────────────────────────── */
.timeline {
  display: grid;
  gap: 20px;
}

.timeline div {
  padding: 28px 32px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.22s ease;
}

.timeline div:hover {
  box-shadow: 0 8px 28px rgba(6, 21, 39, 0.07);
}

.timeline span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* ─── Official Sources ───────────────────────── */
/* ─── Glossary ───────────────────────────────── */
.glossary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}

.glossary-item {
  padding: 28px 36px 28px 0;
  border-bottom: 1px solid var(--line);
}

.glossary-item:nth-child(even) {
  padding-left: 36px;
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.glossary-term {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}

.glossary-def {
  color: #4a515b;
  font-size: 15px;
  line-height: 1.78;
  margin: 0;
}

.official-sources {
  border-top: 1px solid var(--line);
}

.source-list,
.sitemap-list .container {
  display: grid;
  gap: 14px;
}

.source-list a,
.sitemap-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.source-list a:hover,
.sitemap-list a:hover {
  color: var(--gold-dark);
  padding-left: 6px;
}

/* ─── FAQ ────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 66px;
  align-items: start;
}

.faq-layout aside {
  position: sticky;
  top: 126px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid rgba(11, 29, 52, 0.12);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

details[open] {
  border-color: rgba(176, 141, 60, 0.38);
  box-shadow: 0 4px 22px rgba(6, 21, 39, 0.05);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  padding: 24px 28px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  color: var(--gold);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

details[open] summary::after {
  content: '\2212';
}

details p {
  margin: 0;
  padding: 0 28px 26px;
  color: #4a515b;
  font-size: 16px;
}

/* ─── Contact ────────────────────────────────── */
.contact-hero {
  background:
    linear-gradient(135deg, rgba(6, 21, 39, 0.98), rgba(11, 29, 52, 0.86)),
    url("Assets/Landing Page Background_FINAL.webp") center right / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.contact-panel {
  padding: 44px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.contact-methods a:hover {
  color: var(--white);
}

.booking-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.booking-divider::before,
.booking-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.booking-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.contact-form {
  padding: 44px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 52, 0.1);
  box-shadow: 0 18px 52px rgba(6, 21, 39, 0.07);
}

.contact-form,
.form-grid {
  display: grid;
  gap: 22px;
}

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

/* ─── Legal ──────────────────────────────────── */
.legal-effective {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-top: 52px;
  margin-bottom: 14px;
}

.legal-copy h2:first-of-type {
  margin-top: 40px;
}

.legal-copy h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-copy ul {
  padding-left: 0;
  margin: 14px 0 20px;
  list-style: none;
}

.legal-copy ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #4a515b;
}

.legal-copy ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-copy p {
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 16px;
}

.legal-copy strong {
  color: var(--navy);
  font-weight: 600;
}

.legal-copy a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ─── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.footer-upper {
  padding: 58px 0 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-upper-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.54);
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.68;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 18px;
}

.footer-nav-links {
  display: grid;
  gap: 11px;
}

.footer-nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: var(--white);
}

.footer-lower {
  padding: 22px 0;
}

.footer-lower-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-lower-inner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.44);
}

.footer-lower nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-lower nav a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s ease;
}

.footer-lower nav a:hover {
  color: var(--white);
}

/* ─── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive: 1050px ─────────────────────── */
@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto auto 44px;
  }

  .brand img {
    width: 178px;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 94px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px 28px;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-top: none;
  }

  .header-cta {
    justify-self: end;
  }

  .photo-split {
    grid-template-columns: 1fr;
  }

  .photo-panel {
    min-height: 320px;
    order: -1;
  }

  .service-grid.four,
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-content,
  .two-column,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout aside {
    position: static;
  }

  .service-detail {
    grid-template-columns: 70px 1fr;
  }

  .service-detail .check-list {
    grid-column: 2;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .insight-band {
    grid-template-columns: 1fr;
  }

  .insight-image {
    min-height: 260px;
  }

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

  .footer-upper-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Responsive: 760px ──────────────────────── */
@media (max-width: 760px) {
  .container,
  .container.narrow,
  .header-inner {
    width: min(100% - 30px, 1120px);
  }

  .header-inner {
    min-height: 82px;
    grid-template-columns: 1fr 44px;
    gap: 16px;
  }

  .site-nav {
    inset: 82px 0 auto 0;
  }

  .brand img {
    width: 160px;
  }

  .header-cta {
    display: none;
  }

  .home-hero {
    min-height: 660px;
    background:
      linear-gradient(180deg, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.94) 50%, rgba(247, 244, 239, 0.34) 100%),
      url("Assets/Landing Page Background_FINAL.webp") center bottom / cover no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 660px;
    align-items: start;
  }

  .hero-copy {
    padding: 60px 0 290px;
  }

  h1,
  .page-hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 20px;
  }

  .rule-mark {
    width: 220px;
  }

  .button-row,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 66px 0;
  }

  .service-grid.four,
  .feature-grid.three,
  .resource-grid,
  .proof-grid,
  .process-row,
  .form-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .glossary-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .proof-grid article {
    grid-template-columns: 48px 1fr;
    padding: 22px 18px;
  }

  .service-card {
    min-height: auto;
    padding: 30px 16px;
  }

  .photo-panel-copy {
    padding: 48px 24px;
  }

  .photo-bg-section {
    padding: 72px 0;
  }

  .insight-copy,
  .contact-form,
  .contact-panel {
    padding: 34px 24px;
  }

  .page-hero {
    padding: 80px 0 72px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-detail .check-list {
    grid-column: auto;
  }

  .standards-list div {
    grid-template-columns: 1fr;
  }

  .standards-list h3,
  .standards-list p {
    grid-column: auto;
  }

  .testimonial-quote {
    font-size: 22px;
  }

  .testimonial-band::before {
    font-size: 200px;
    left: -10px;
  }

  .stat-item {
    padding: 32px 18px;
  }

  .stat-number {
    font-size: 40px;
  }

  .footer-upper-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-lower-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ─── Responsive: 430px ──────────────────────── */
@media (max-width: 430px) {
  .brand img {
    width: 148px;
  }

  h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .btn {
    width: 100%;
  }

  .home-hero {
    min-height: 700px;
  }

  .testimonial-band::before {
    display: none;
  }
}
