:root {
  --navy: #061523;
  --navy-soft: #0b2235;
  --gold: #c99a45;
  --gold-light: #f2d38b;
  --ivory: #f6efe3;
  --ink: #172033;
  --muted: #667085;
  --green: #1d6b53;
  --rose: #8f4d3f;
  --line: rgba(201, 154, 69, 0.32);
  --shadow: 0 24px 80px rgba(3, 12, 23, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 154, 69, 0.16), transparent 28rem),
    linear-gradient(135deg, #fbf7ef 0%, #f7efe3 42%, #edf2ee 100%);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: white;
  background: rgba(6, 21, 35, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(3, 12, 23, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold-light);
}

.call-button,
.primary-action,
.secondary-action,
.closing-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}

.call-button,
.primary-action,
.closing-card a {
  color: #171002;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0 3rem;
}

.hero-copy {
  color: var(--navy);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.04rem;
}

.lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #38445b;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.75;
}

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

.secondary-action {
  color: var(--navy);
  border: 1px solid rgba(6, 21, 35, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 10px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 21, 35, 0.08);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 20px -18px -18px 20px;
  content: "";
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 724 / 1024;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 22px;
  color: white;
  background:
    linear-gradient(90deg, rgba(29, 107, 83, 0.9), rgba(6, 21, 35, 0.96)),
    var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-band p,
.intro-band strong {
  margin: 0;
}

.intro-band strong {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 235px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(160deg, rgba(11, 34, 53, 0.97), rgba(6, 21, 35, 0.97)),
    var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  line-height: 1.65;
}

.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.why-copy p:not(.eyebrow) {
  color: #475467;
  font-size: 1.08rem;
  line-height: 1.8;
}

.why-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 21, 35, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.why-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #151004;
  content: "✓";
  background: var(--gold);
  border-radius: 50%;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  color: white;
}

.contact-panel,
.closing-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-links {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.contact-links a:hover {
  color: var(--gold-light);
}

.closing-card {
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(145deg, rgba(143, 77, 63, 0.55), rgba(6, 21, 35, 0.96)),
    var(--navy);
}

.closing-card span {
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.closing-card a {
  width: fit-content;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 18px 0;
  color: #475467;
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
  }

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

  .hero-section {
    min-height: auto;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero-section,
  .intro-band,
  .section,
  .contact-section,
  .footer {
    width: min(100% - 22px, 1180px);
  }

  .call-button {
    width: 100%;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .intro-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-card:last-child {
    grid-column: auto;
  }
}

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

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