:root {
  --navy: #0d1f3c;
  --navy-mid: #142848;
  --navy-light: #1e3560;
  --gold: #b8963e;
  --gold-light: #d4af5a;
  --gold-pale: #f0e2c0;
  --silver: #c8cdd6;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --text-dark: #0d1f3c;
  --text-mid: #3a4a62;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.25);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 9px 22px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─── SECTION BASE ─── */
section {
  width: 100%;
}

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(184, 150, 62, 0.04) 60px,
    rgba(184, 150, 62, 0.04) 61px
  );
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(184, 150, 62, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 5%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--silver);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 16px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.hero-body {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(200, 205, 214, 0.85);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-body p {
  margin-bottom: 10px;
}

.hero-body .emphasis {
  color: var(--gold-pale);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(184, 150, 62, 0.5);
  color: var(--gold-light);
  padding: 14px 36px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 16px;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(184, 150, 62, 0.08);
}

/* ─── GOLD RULE ─── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 50px;
  max-width: 200px;
}

.gold-rule span {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.gold-rule i {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ─── DIFFERENCE SECTION (light) ─── */
#about {
  background: var(--off-white);
  padding: 100px 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text-mid);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.section-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.card-light {
  border: 1px solid rgba(184, 150, 62, 0.2);
  padding: 36px 28px;
  background: var(--white);
  position: relative;
}

.card-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  color: rgba(184, 150, 62, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.card-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
}

.text-center {
  text-align: center;
}

/* ─── SERVICES SECTION (dark) ─── */
#services {
  background: var(--navy);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(184, 150, 62, 0.08) 0%,
    transparent 70%
  );
}

.section-title-light {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle-light {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--silver);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.section-body-light {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(200, 205, 214, 0.8);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

@media (max-width: 700px) {
  .phases-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

.phase-card {
  border: 1px solid rgba(184, 150, 62, 0.25);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.phase-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  border-right: 1px solid rgba(184, 150, 62, 0.2);
}

.phase-tag {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.phase-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.phase-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(200, 205, 214, 0.75);
  margin-bottom: 20px;
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  font-size: 15.5px;
  color: rgba(200, 205, 214, 0.75);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.6;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.bullet-list-dark li {
  color: var(--text-mid);
}

.bullet-list-dark li::before {
  background: var(--gold);
}

/* ─── TECHNOLOGY (light) ─── */
#technology {
  background: var(--off-white);
  padding: 100px 5%;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.tech-label {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.tech-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}

.tech-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.procalc-box {
  background: var(--navy);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.procalc-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(184, 150, 62, 0.15);
  transform: rotate(45deg);
}

.procalc-box-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.procalc-box-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.procalc-box-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(200, 205, 214, 0.75);
  margin-bottom: 24px;
}

.procalc-formula {
  border-top: 1px solid rgba(184, 150, 62, 0.25);
  padding-top: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.7;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 800px) {
  .tiers-grid {
    grid-template-columns: 1fr;
  }
}

.tier-card {
  border: 1px solid rgba(184, 150, 62, 0.2);
  padding: 36px 28px;
  background: var(--white);
  position: relative;
  transition: transform 0.25s;
}

.tier-card:hover {
  transform: translateY(-4px);
}

.tier-card.featured {
  border-color: var(--gold);
  background: var(--navy);
}

.tier-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.tier-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.tier-card.featured .tier-name {
  color: var(--white);
}

.tier-sublabel {
  font-size: 11px;
  color: var(--gold);
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tier-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.tier-card.featured .tier-price {
  color: var(--silver);
}

.tier-price-note {
  font-size: 12px;
  color: rgba(58, 74, 98, 0.6);
  margin-bottom: 20px;
}

.tier-card.featured .tier-price-note {
  color: rgba(200, 205, 214, 0.5);
}

.tier-divider {
  width: 100%;
  height: 1px;
  background: rgba(184, 150, 62, 0.2);
  margin-bottom: 20px;
}

/* ─── PROCALC FULL PAGE (dark) ─── */
#procalc {
  background: var(--navy-mid);
  padding: 100px 5%;
  position: relative;
}

#procalc::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(184, 150, 62, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── REVIEWS (light) ─── */
#reviews {
  background: var(--off-white);
  padding: 100px 5%;
  overflow: hidden;
}

.reviews-track-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 -5%;
  padding: 0 5%;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.reviews-track {
  display: flex;
  gap: 28px;
  animation: scroll-reviews 35s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(184, 150, 62, 0.15);
  padding: 36px 32px;
  min-width: 360px;
  max-width: 360px;
  position: relative;
  flex-shrink: 0;
}

.review-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  color: rgba(184, 150, 62, 0.15);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}

.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-dot {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.review-attribution {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.review-location {
  font-size: 11px;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ─── INVESTMENT (dark) ─── */
#investment {
  background: var(--navy);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

#investment::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(184, 150, 62, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.investment-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.investment-body {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(200, 205, 214, 0.8);
  margin-bottom: 16px;
}

.investment-highlight {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
  margin: 28px 0;
  padding: 24px 36px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  display: inline-block;
}

/* ─── CONTACT (light) ─── */
#contact {
  background: var(--off-white);
  padding: 100px 5%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon span {
  color: var(--gold);
  font-size: 14px;
}

.contact-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid rgba(184, 150, 62, 0.15);
  padding: 48px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}

input,
textarea,
select {
  background: var(--off-white);
  border: 1px solid rgba(184, 150, 62, 0.2);
  padding: 12px 16px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 15px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  padding: 48px 5%;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 44px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 12px;
  color: rgba(200, 205, 214, 0.4);
  text-align: right;
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ─── PAGE TRANSITIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NATIONAL BADGE ─── */
.national-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 150, 62, 0.08);
  border: 1px solid rgba(184, 150, 62, 0.25);
  padding: 10px 20px;
  margin-bottom: 40px;
}

.national-badge span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.national-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
