:root {
  --navy: #061d49;
  --blue: #0b43b8;
  --gold: #f5aa00;
  --gold-soft: #fff1c7;
  --ink: #152033;
  --muted: #5d6a7c;
  --line: #d9e0ea;
  --surface: #f4f7fb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(6, 29, 73, 0.16);
  --shadow-soft: 0 12px 34px rgba(6, 29, 73, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 10px max(30px, calc((100vw - 1220px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-top: 5px solid var(--gold);
  box-shadow: 0 10px 30px rgba(6, 29, 73, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: 230px;
  height: 72px;
  overflow: hidden;
}

.brand img {
  width: 220px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.main-nav a.nav-action {
  border: 1px solid var(--navy);
}

.main-nav a.nav-action.primary {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
}

.main-nav a.nav-action.primary:hover {
  background: #ffc33d;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: var(--navy);
}

.hero::after,
.cta-section::after,
.services-page-hero::before,
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::after {
  background: linear-gradient(90deg, rgba(6, 29, 73, 0.92), rgba(6, 29, 73, 0.74) 46%, rgba(6, 29, 73, 0.2));
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide:first-child img {
  object-position: right center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
  padding: 155px 0 104px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.45;
}

.hero-actions,
.rate-input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn,
.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.outline-cta:hover {
  transform: translateY(-2px);
}

.btn.light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.btn.solid {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(245, 170, 0, 0.28);
}

.intro-section,
.rates-preview,
.about-page-hero,
.story-section,
.contact-band,
.rates-page {
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
  padding: 96px 0;
}

.intro-copy h2,
.rates-preview h2,
.section-heading h2,
.story-section h2,
.about-page-copy h1,
.services-page-hero h1,
.rate-tool-copy h2,
.contact-band h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.intro-copy p:not(.section-kicker),
.rates-preview p,
.story-section p,
.about-page-copy p,
.about-page-copy li,
.services-page-hero p,
.rate-tool-copy p,
.service-detail-card p,
.service-detail-card li,
.contact-grid p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-grid article,
.process-grid article,
.service-card,
.service-detail-card,
.rate-tool,
.contact-grid article {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.proof-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.proof-grid span,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.proof-grid strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.proof-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.services-section,
.process-section,
.services-page-hero {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.services-section::before,
.process-section::before,
.services-page-hero::before {
  background: linear-gradient(135deg, rgba(245, 170, 0, 0.16), transparent 38%);
}

.services-section,
.process-section {
  padding: 96px max(24px, calc((100vw - 1220px) / 2)) 104px;
}

.services-section > .section-kicker,
.services-section > h2,
.process-section > .section-kicker,
.process-section > h2 {
  position: relative;
  width: min(1220px, 100%);
  margin-inline: auto;
}

.services-section h2,
.process-section h2 {
  margin: 0;
  max-width: 780px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: min(1220px, 100%);
  margin: 46px auto 0;
}

.service-card {
  min-height: 100%;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(2, 10, 25, 0.24);
}

.service-photo {
  width: 100%;
  height: 190px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.service-card h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.22;
}

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

.outline-cta {
  position: relative;
  width: fit-content;
  min-width: 220px;
  margin: 42px auto 0;
  color: #fff;
  border: 2px solid #fff;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(1220px, 100%);
  margin: 46px auto 0;
}

.process-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  min-height: 230px;
  padding: 28px;
  color: var(--navy);
  background: #fff;
}

.process-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

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

.rates-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 96px 0;
}

.rates-preview img,
.about-page-image img,
.rate-tool img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rates-preview img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
}

.faq-section {
  padding: 86px max(24px, calc((100vw - 1220px) / 2));
  background: #fff;
}

.section-heading {
  width: min(1220px, 100%);
  margin: 0 auto 30px;
}

.faq-list {
  width: min(1220px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 70px;
  padding: 0 24px;
  border: 0;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover {
  background: #fff8e7;
}

.faq-plus {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 62px 26px;
  color: var(--muted);
  font-size: 18px;
}

.faq-answer p {
  margin: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.services-page-hero {
  padding: 92px max(24px, calc((100vw - 1220px) / 2)) 98px;
  text-align: left;
}

.services-page-hero .section-kicker,
.services-page-hero h1,
.services-page-hero p {
  position: relative;
  color: #fff;
}

.services-page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.about-page-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
  padding: 86px 0;
}

.about-page-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top center;
}

.about-page-copy ul {
  margin: 0;
  padding-left: 24px;
}

.story-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  padding: 76px 0 92px;
}

.service-detail-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 82px max(24px, calc((100vw - 1220px) / 2)) 96px;
  background: var(--surface);
}

.service-detail-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-detail-card img {
  width: 100%;
  height: 280px;
  margin-bottom: 24px;
  border-radius: 8px;
  object-fit: cover;
}

.service-detail-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 25px;
}

.service-detail-card p {
  margin: 0 0 18px;
}

.service-detail-card ul {
  margin: 0;
  padding-left: 22px;
}

.rates-page {
  padding: 82px 0 96px;
}

.rate-tool {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  margin-bottom: 42px;
  background: #fff;
  border: 1px solid var(--line);
}

.rate-tool label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 900;
}

.rate-tool input {
  width: 130px;
  height: 52px;
  padding: 0 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.rate-tool output {
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold-soft);
  font-size: 20px;
  font-weight: 900;
}

.rate-tool img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.rates-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.rates-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.rates-table caption {
  padding: 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  text-align: left;
}

.rates-table th,
.rates-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.rates-table th {
  color: #fff;
  background: var(--navy);
}

.rates-table td:nth-child(even) {
  color: var(--blue);
  font-weight: 900;
}

.contact-band {
  padding: 84px 0 98px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-grid a {
  color: var(--blue);
  font-weight: 900;
}

.contact-grid p {
  margin: 0;
}

.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 390px;
  overflow: hidden;
  background: url("assets/package-cta.jpg") center / cover no-repeat;
}

.cta-section::after {
  background: linear-gradient(110deg, rgba(6, 29, 73, 0.9), rgba(6, 29, 73, 0.55));
}

.cta-section div {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
  padding: 88px 0;
  color: #fff;
}

.cta-section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.15;
}

.cta-section p {
  max-width: 780px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 36px max(24px, calc((100vw - 1220px) / 2));
  color: #fff;
  background: var(--navy);
}

.site-footer strong {
  color: var(--gold);
  font-size: 18px;
}

.site-footer p {
  max-width: 660px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  display: block;
  color: #fff;
  font-weight: 800;
  text-align: right;
}

.chat-dot,
.scroll-top {
  position: fixed;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 900;
}

.chat-dot {
  left: 14px;
  bottom: 16px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 18px 36px rgba(6, 29, 73, 0.2);
}

.scroll-top {
  right: 28px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 26px;
}

@media (max-width: 1100px) {
  .service-grid,
  .process-grid.four,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 86px;
    padding: 10px 18px;
  }

  .brand,
  .brand img {
    width: 170px;
    height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(6, 29, 73, 0.12);
  }

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

  .main-nav a {
    border-radius: 8px;
  }

  .main-nav a.nav-action {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: 650px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(6, 29, 73, 0.9), rgba(6, 29, 73, 0.58));
  }

  .hero-content,
  .intro-section,
  .rates-preview,
  .about-page-hero,
  .story-section,
  .contact-band,
  .rates-page {
    width: calc(100% - 36px);
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p:not(.eyebrow) {
    font-size: 20px;
  }

  .intro-section,
  .rates-preview,
  .about-page-hero,
  .story-section,
  .rate-tool {
    grid-template-columns: 1fr;
  }

  .service-detail-section,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .services-section,
  .process-section,
  .services-page-hero,
  .service-detail-section,
  .faq-section {
    padding-inline: 18px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer a {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .service-grid,
  .process-grid.four,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 39px;
  }

  .intro-copy h2,
  .rates-preview h2,
  .section-heading h2,
  .story-section h2,
  .about-page-copy h1,
  .services-page-hero h1,
  .rate-tool-copy h2,
  .contact-band h2,
  .services-section h2,
  .process-section h2 {
    font-size: 29px;
  }

  .btn,
  .outline-cta {
    width: 100%;
  }

  .faq-answer {
    padding-inline: 62px 20px;
  }

  .rate-tool {
    padding: 20px;
  }

  .rate-input-row {
    align-items: stretch;
    flex-direction: column;
  }

  .rate-tool input,
  .rate-tool output {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
