:root {
  --navy: #111d2e;
  --navy-2: #17263a;
  --anthracite: #23262d;
  --ink: #18202d;
  --text: #384254;
  --muted: #737d8c;
  --line: #e5e0d6;
  --paper: #fbfaf7;
  --white: #ffffff;
  --gold: #b88a3a;
  --gold-2: #d8b56d;
  --bronze: #8f642a;
  --sage: #edf1ed;
  --shadow: rgba(17, 29, 46, 0.08) 0 16px 40px;
  --soft-shadow: rgba(17, 29, 46, 0.06) 0 8px 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar strong {
  color: var(--gold-2);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(229, 224, 214, 0.9);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 138, 58, 0.38);
  border-radius: 50%;
  background: linear-gradient(145deg, #f3e5c4, var(--gold));
  box-shadow: var(--soft-shadow);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}

.brand-slogan {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .container {
  display: grid;
  gap: 4px;
  padding: 18px 0 24px;
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-weight: 600;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(184, 138, 58, 0.48);
}

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

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--white);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(184, 138, 58, 0.25);
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: center;
  padding: 84px 0;
  background:
    linear-gradient(90deg, rgba(17, 29, 46, 0.93), rgba(17, 29, 46, 0.78) 48%, rgba(17, 29, 46, 0.24)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-2);
}

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

h1,
h2,
.page-title {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -46px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-card {
  min-height: 150px;
  padding: 28px;
  background: var(--white);
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.proof-card span {
  color: var(--text);
  font-weight: 600;
}

section {
  padding: 82px 0;
}

.section-light {
  background: var(--paper);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-sage {
  background: var(--sage);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-title,
.page-title {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
}

.section-dark .section-title,
.section-dark .page-title {
  color: var(--white);
}

.section-lead {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.section-dark .card {
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(184, 138, 58, 0.34);
  border-radius: 50%;
  background: rgba(184, 138, 58, 0.08);
  color: var(--gold);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.section-dark .card h3 {
  color: var(--white);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-dark .card p,
.section-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 600;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-panel {
  padding: 42px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.quote-panel p {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.22;
}

.quote-panel span {
  color: var(--muted);
  font-weight: 700;
}

.market-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.market-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-radius: 12px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 29, 46, 0.08), rgba(17, 29, 46, 0.88)), var(--image) center / cover;
}

.market-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.market-card p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 181, 109, 0.32), transparent 26%),
    linear-gradient(120deg, rgba(17, 29, 46, 0.96), rgba(17, 29, 46, 0.78) 56%, rgba(17, 29, 46, 0.52)),
    var(--page-image, linear-gradient(120deg, var(--navy), var(--navy-2))) center / cover;
  color: var(--white);
}

.page-hero .page-title {
  max-width: 780px;
}

.page-hero .section-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.split-panel > div {
  padding: 34px;
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.timeline-item {
  position: relative;
  padding: 26px 26px 26px 76px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 26px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.cta-band {
  padding: 58px 0;
  background: var(--navy);
  color: var(--white);
}

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

.cta-inner h2 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.12;
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  padding: 54px 0 28px;
  background: #0d1725;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 38px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 15px;
}

.footer p,
.footer a,
.footer small {
  color: rgba(255, 255, 255, 0.62);
}

.footer a {
  display: block;
  min-height: 30px;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-band {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64)),
    radial-gradient(circle at 92% 0%, rgba(216, 181, 109, 0.28), transparent 34%);
  border: 1px solid rgba(229, 224, 214, 0.82);
  box-shadow: var(--soft-shadow);
}

.modern-band.dark {
  background:
    radial-gradient(circle at 90% 18%, rgba(216, 181, 109, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(17, 29, 46, 0.98), rgba(23, 38, 58, 0.94));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.modern-band h2,
.modern-band h3 {
  margin-bottom: 14px;
}

.modern-band p {
  color: var(--text);
}

.modern-band.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.modern-band.dark h2,
.modern-band.dark h3 {
  color: var(--white);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.metric-tile {
  min-height: 138px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 220ms ease, background 220ms ease;
}

.metric-tile:hover {
  background: #fffdf8;
  transform: translateY(-4px);
}

.metric-tile strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.metric-tile span {
  color: var(--text);
  font-weight: 700;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.insight {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.insight:hover {
  transform: translateY(-7px);
  border-color: rgba(184, 138, 58, 0.36);
  box-shadow: var(--lift-shadow);
}

.insight small {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.insight h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.insight p {
  margin: 0;
  color: var(--muted);
}

.image-panel {
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 29, 46, 0.08), rgba(17, 29, 46, 0.76)),
    var(--image) center / cover;
  box-shadow: var(--shadow);
  transition: transform 420ms ease, filter 420ms ease;
}

.image-panel:hover {
  transform: scale(1.015);
  filter: saturate(1.08) contrast(1.03);
}

.principle-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.numbered-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.numbered-list li {
  position: relative;
  min-height: 72px;
  padding: 20px 20px 20px 72px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 650;
}

.numbered-list li::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.service-detail + .service-detail {
  margin-top: 36px;
}

.service-label {
  position: sticky;
  top: 120px;
  padding: 28px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-label span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.service-label h2 {
  margin: 0;
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .section-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .card-grid.three,
  .footer-grid,
  .metric-row,
  .insight-grid,
  .principle-grid,
  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-label {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .nav-inner,
  .container {
    width: min(100% - 32px, var(--container));
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 112px;
  }

  section {
    padding: 58px 0;
  }

  .hero-proof,
  .card-grid,
  .card-grid.three,
  .market-map,
  .split-panel,
  .footer-grid,
  .metric-row,
  .insight-grid,
  .principle-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .cta-inner .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .brand-name {
    font-size: 19px;
  }

  .brand-slogan {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .quote-panel,
  .card,
  .contact-card,
  .form-card {
    padding: 24px;
  }
}

/* Modern motion and interaction layer */
:root {
  --navy-3: #0b1320;
  --gold-3: #f0d89a;
  --lift-shadow: rgba(17, 29, 46, 0.15) 0 24px 60px;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 181, 109, 0.12), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(17, 29, 46, 0.08), transparent 28%),
    var(--paper);
}

body.menu-open {
  overflow: hidden;
}

.topbar {
  background:
    linear-gradient(90deg, rgba(216, 181, 109, 0.1), transparent 34%),
    var(--navy-3);
}

.site-header {
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.82);
  border-color: rgba(184, 138, 58, 0.22);
  box-shadow: rgba(17, 29, 46, 0.08) 0 10px 34px;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55), transparent 70%);
  transform: translateX(-80%) rotate(18deg);
  transition: transform 700ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.04);
  box-shadow: rgba(184, 138, 58, 0.18) 0 14px 30px;
}

.brand:hover .brand-mark::after {
  transform: translateX(80%) rotate(18deg);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-button span {
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button:hover {
  background: rgba(184, 138, 58, 0.08);
  border-color: rgba(184, 138, 58, 0.42);
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(14px);
  transition: grid-template-rows 260ms ease;
}

.mobile-menu.open {
  display: grid;
  grid-template-rows: 1fr;
}

.mobile-menu .container {
  overflow: hidden;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: rgba(17, 29, 46, 0.08) 0 10px 24px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: rgba(17, 29, 46, 0.15) 0 18px 34px;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(110%);
}

.hero {
  background:
    radial-gradient(circle at var(--mx, 72%) var(--my, 32%), rgba(216, 181, 109, 0.32), transparent 21%),
    linear-gradient(90deg, rgba(17, 29, 46, 0.93), rgba(17, 29, 46, 0.78) 48%, rgba(17, 29, 46, 0.24)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center / cover;
  background-attachment: fixed;
}

.hero::before,
.page-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.eyebrow::before {
  transform-origin: left;
  animation: lineGrow 1200ms ease both;
}

.hero-content > *,
.page-hero .container > * {
  animation: fadeLift 760ms ease both;
}

.hero-content > *:nth-child(2),
.page-hero .container > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-content > *:nth-child(3),
.page-hero .container > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-content > *:nth-child(4),
.hero-actions {
  animation-delay: 240ms;
}

.proof-card,
.card,
.market-card,
.split-panel > div,
.timeline-item,
.contact-card,
.form-card {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease, filter 240ms ease;
}

.proof-card,
.card {
  position: relative;
  overflow: hidden;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.proof-card:hover {
  background: #fffdf8;
  transform: translateY(-4px);
}

.proof-card:hover::after {
  transform: scaleX(1);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 181, 109, 0.12), transparent 30%),
    linear-gradient(135deg, var(--navy-3), var(--navy));
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 138, 58, 0.1), transparent 42%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 138, 58, 0.34);
  box-shadow: var(--lift-shadow);
}

.card:hover::before {
  opacity: 1;
}

.section-dark .card {
  background: rgba(23, 38, 58, 0.72);
  backdrop-filter: blur(10px);
}

.section-dark .card:hover {
  border-color: rgba(216, 181, 109, 0.42);
  box-shadow: rgba(0, 0, 0, 0.16) 0 22px 54px;
}

.icon {
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.card:hover .icon,
.timeline-item:hover::before {
  transform: rotate(-6deg) scale(1.07);
  background: var(--gold);
  color: var(--white);
}

.clean-list li::before {
  transition: transform 180ms ease;
}

.clean-list li:hover::before {
  transform: scale(1.4);
}

.quote-panel,
.page-hero,
.cta-band {
  position: relative;
  overflow: hidden;
}

.quote-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(216, 181, 109, 0.16);
}

.market-card {
  position: relative;
  box-shadow: var(--soft-shadow);
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(216, 181, 109, 0.34), transparent 46%),
    linear-gradient(180deg, transparent, rgba(17, 29, 46, 0.92));
  opacity: 0;
  transition: opacity 260ms ease;
}

.market-card > * {
  position: relative;
  z-index: 1;
}

.market-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--lift-shadow);
  filter: saturate(1.08);
}

.market-card:hover::before {
  opacity: 1;
}

.page-hero .container,
.cta-inner {
  position: relative;
  z-index: 1;
}

.split-panel {
  box-shadow: var(--soft-shadow);
}

.split-panel > div:hover {
  background: #fffdf8;
  transform: translateY(-3px);
}

.timeline-item:hover {
  transform: translateX(6px);
  border-color: rgba(184, 138, 58, 0.36);
  box-shadow: var(--soft-shadow);
}

.timeline-item::before {
  transition: transform 220ms ease, background 220ms ease;
}

.contact-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift-shadow);
}

.field input,
.field select,
.field textarea {
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(184, 138, 58, 0.5);
  background: var(--white);
  box-shadow: rgba(184, 138, 58, 0.1) 0 0 0 4px;
}

.cta-band {
  background:
    radial-gradient(circle at 88% 50%, rgba(216, 181, 109, 0.24), transparent 30%),
    var(--navy);
}

.footer {
  background: linear-gradient(180deg, #0d1725, #080f19);
}

.footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer a:hover {
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

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

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Final visual corrections */
.mobile-menu {
  display: none;
  grid-template-rows: 0fr;
  border-top: 0;
}

.mobile-menu.open {
  display: none;
}

.hero .btn-secondary,
.page-hero .btn-secondary,
.section-dark .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover,
.page-hero .btn-secondary:hover,
.section-dark .btn-secondary:hover {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.hero {
  min-height: calc(100vh - 114px);
}

.site-header + .mobile-menu,
.site-header .mobile-menu {
  margin: 0;
}

@media (max-width: 980px) {
  .mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    border-top: 1px solid var(--line);
  }

  .mobile-menu.open {
    display: grid;
    grid-template-rows: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    background-attachment: scroll;
  }
}

/* WordPress content layer */
.wp-content-area {
  max-width: 1000px;
}

.wp-content-area > * + * {
  margin-top: 24px;
}

.wp-content-area h2,
.wp-content-area h3,
.wp-content-area h4 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

.wp-content-area p,
.wp-content-area li {
  color: var(--text);
  font-size: 17px;
}

.wp-content-area ul,
.wp-content-area ol {
  padding-left: 22px;
}

.wp-content-area .wp-block-image img,
.wp-content-area img {
  height: auto;
  max-width: 100%;
  border-radius: 16px;
}

.wp-content-area .wp-block-columns {
  gap: 28px;
}

.wp-content-area .wp-block-group,
.wp-content-area .wp-block-cover,
.wp-content-area .wp-block-media-text {
  margin-top: 32px;
  margin-bottom: 32px;
}

.wp-content-area .wp-element-button,
.wp-content-area .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
}
