:root {
  --navy: #1B2A41;
  --steel: #4A6FA5;
  --gold: #C9972B;
  --gold-hover: #B8871F;
  --light: #F4F6F9;
  --white: #FFFFFF;
  --text: #1B2A41;
  --muted: #5B6B7D;
  --border: #DDE3EA;
  --shadow: 0 18px 40px rgba(27, 42, 65, 0.14);
  --radius: 14px;
  --header-h: 72px;
  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}

.logo-wordmark,
.footer-brand {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo-primary {
  color: var(--navy);
  font-weight: 700;
}

.logo-accent {
  color: var(--gold);
  font-weight: 600;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-call {
  background: var(--gold);
  color: var(--navy);
  padding: 0.7rem 1.15rem;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--gold-hover);
}

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

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(201, 151, 43, 0.12), transparent 55%),
    linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  padding: 3.5rem 0 4.5rem;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(27, 42, 65, 0.06);
}

.location-badge .icon {
  color: var(--gold);
}

#hero-heading {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 1.1rem;
}

.headline-line {
  display: block;
  color: var(--navy);
}

.headline-accent {
  display: block;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

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

.hero-media {
  position: relative;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-photo-fallback {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(74, 111, 165, 0.45), transparent 55%),
    linear-gradient(145deg, var(--navy) 0%, #243652 45%, var(--steel) 100%);
}

.floating-card {
  position: absolute;
  left: -1rem;
  bottom: -1.25rem;
  width: min(290px, calc(100% - 2rem));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  animation: rise-in 0.7s ease both;
}

.floating-card-title {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.check-list {
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 2px var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%231B2A41' d='M4.5 8.5 2 6l.7-.7 1.8 1.8 4-4 .7.7z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Stats */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-icon {
  display: inline-block;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.2rem;
}

.licensing-line {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

/* Features */
.features {
  padding: 3.5rem 0;
  background: var(--light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(201, 151, 43, 0.14);
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Why */
.why {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(27, 42, 65, 0.03), transparent),
    var(--white);
}

.why-inner {
  max-width: 760px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

#why-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.why-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.why-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.why-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text);
  font-weight: 500;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

/* Testimonial */
.testimonial {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
}

.testimonial-inner {
  max-width: 720px;
}

blockquote p {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.author-name {
  font-weight: 700;
}

.author-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.fictional-note {
  opacity: 0.7;
  font-style: italic;
}

/* CTA */
.cta-band {
  padding: 3.5rem 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 151, 43, 0.2), transparent 45%),
    var(--light);
  text-align: center;
}

.cta-inner {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

#cta-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-inner p {
  color: var(--muted);
  max-width: 32rem;
}

/* Footer */
.site-footer {
  background: #142033;
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-primary {
  color: var(--white);
}

.footer-tag {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 22rem;
}

.site-footer h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.placeholder {
  color: #F0C56A;
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
  }

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

  .site-nav a {
    padding: 0.7rem 0.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .floating-card {
    left: 1rem;
    right: 1rem;
    width: auto;
    bottom: -1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .btn-call span,
  .btn-call {
    font-size: 0.85rem;
  }

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

  .hero {
    padding-top: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
