:root {
  --navy: #0f1f4a;
  --navy-dark: #091530;
  --navy-mid: #1a3166;
  --gold: #fcdb88;
  --gold-dark: #e8c060;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light-gray: #eef0f6;
  --muted: rgba(15,31,74,.55);
  --border: rgba(15,31,74,.10);
  --r-sm: 16px;
  --r-md: 28px;
  --r-lg: 40px;
  --r-xl: 56px;
  --font-display: Syne, sans-serif;
  --font-body: DM Sans, sans-serif;
  --pad: clamp(5rem, 8vw, 9rem);
  --gutter: clamp(1.5rem, 5%, 5rem);
  --overlap: -52px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.section-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.btn svg {
  flex-shrink: 0;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252, 219, 136, 0.45);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}
.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem var(--gutter);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}
nav.scrolled {
  padding: 0.85rem var(--gutter);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.nav-logo span {
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-links .btn-nav {
  background: var(--navy);
  color: #ffffff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.78rem !important;
  transition: background 0.2s !important;
}
.nav-links .btn-nav:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  font-size: 2.2rem;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 9rem var(--gutter) 9rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -5%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(252, 219, 136, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  border-radius: 80px 80px 0 0;
  z-index: 1;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(252, 219, 136, 0.12);
  border: 1px solid rgba(252, 219, 136, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.8rem;
}
.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.hero-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-card-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.hero-card-cta p {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 1rem 0;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 2rem;
}

.ticker-dot {
  opacity: 0.4;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.overlap {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: var(--overlap);
}

.about-section {
  /* background: var(--off-white); */
  padding: calc(var(--pad) + 2rem) var(--gutter) var(--pad);
  z-index: 2;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 6rem;
  align-items: center;
}

.photo-frame {
  position: relative;
}

.photo-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-gray);
}

.photo-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border-radius: var(--r-md);
  background: var(--navy);
  z-index: -1;
}

.photo-badge {
  position: absolute;
  top: 1.5rem;
  left: -2.5rem;
  background: var(--gold);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(252, 219, 136, 0.4);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
  margin-top: 0.2rem;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.portrait-placeholder svg {
  opacity: 0.2;
}
.portrait-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-text .btn {
  margin-top: 1rem;
}

.services-section {
  background: var(--navy);
  padding: calc(var(--pad) + 2rem) var(--gutter) var(--pad);
  z-index: 3;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
}
.services-header h2 {
  color: #ffffff;
}
.services-header .section-tag {
  color: var(--gold);
}
.services-header .header-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  line-height: 1.75;
}

.services-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card.card--gold {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card.card--gold h3 {
  color: var(--navy);
}
.service-card.card--gold p {
  color: rgba(15, 31, 74, 0.65);
}
.service-card.card--gold .service-num {
  color: rgba(15, 31, 74, 0.12);
}
.service-card.card--gold::before {
  background: var(--navy);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
}

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-section {
  background: #ffffff;
  padding: calc(var(--pad) + 2rem) var(--gutter) var(--pad);
  z-index: 4;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}
.process-header h2 {
  margin-bottom: 1rem;
}
.process-header p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(to right, #fcdb88, rgba(252, 219, 136, 0.2));
}

.step {
  text-align: center;
}
.step .step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(15, 31, 74, 0.2);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.cta-band {
  background: linear-gradient(135deg, #0f1f4a 0%, #1a3166 100%);
  padding: calc(var(--pad) + 2rem) var(--gutter) var(--pad);
  z-index: 5;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 219, 136, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .section-tag {
  color: var(--gold);
}
.cta-band h2 {
  color: #ffffff;
  margin: 1rem 0 1.5rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.testimonials-section {
  background: var(--off-white);
  padding: calc(var(--pad) + 2rem) var(--gutter) var(--pad);
  z-index: 6;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 3.5rem;
}
.testimonials-header h2 {
  margin-bottom: 0.5rem;
}
.testimonials-header p {
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: #ffffff;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 31, 74, 0.08);
}
.testimonial.testimonial--featured {
  background: #0f1f4a;
}
.testimonial.testimonial--featured blockquote {
  color: rgba(255, 255, 255, 0.8);
}
.testimonial.testimonial--featured .attr-name {
  color: #ffffff;
}
.testimonial.testimonial--featured .attr-title {
  color: rgba(255, 255, 255, 0.45);
}
.testimonial.testimonial--featured .t-attr-line {
  border-color: rgba(255, 255, 255, 0.12);
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.65;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.8rem;
  display: block;
}

.testimonial blockquote {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--muted);
  font-style: italic;
  flex: 1;
  margin-bottom: 2rem;
}

.t-attr-line {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.4rem;
}

.attr-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.attr-title {
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-section {
  background: #0f1f4a;
  padding: calc(var(--pad) + 2rem) var(--gutter) var(--pad);
  z-index: 7;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-left .section-tag {
  color: var(--gold);
}
.contact-left h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.contact-left p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.contact-right h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.c-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.c-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.25rem;
}

.c-value {
  font-size: 0.95rem;
  color: #ffffff;
}
.c-value a {
  color: #ffffff;
  transition: color 0.2s;
}
.c-value a:hover {
  color: var(--gold);
}

footer {
  background: #091530;
  color: rgba(255, 255, 255, 0.4);
  padding: 2.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 8;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-logo span {
  color: #e8c060;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}

footer p {
  font-size: 0.75rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .photo-frame {
    max-width: 340px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-cards {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  :root {
    --overlap: -32px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */