:root {
  --ink: #112846;
  --ink-soft: #3b5273;
  --sky: #3d669d;
  --ocean: #2f5b92;
  --coral: #b0212e;
  --sun: #d34a54;
  --mint: #dce8f8;
  --sand: #f4f8ff;
  --paper: #ffffff;
  --line: rgba(29, 58, 96, 0.18);
  --line-strong: rgba(29, 58, 96, 0.3);
  --primary-gradient: linear-gradient(145deg, #2f5b92, #3d669d 58%, #b0212e 140%);
  --primary-shadow: 0 10px 20px rgba(44, 82, 131, 0.34);
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-border: rgba(47, 91, 146, 0.24);
  --card-shadow: 0 14px 28px rgba(24, 46, 77, 0.12);
  --mobile-nav-bg: rgba(246, 250, 255, 0.98);
  --shadow: 0 18px 34px rgba(24, 46, 77, 0.16);
  --shadow-deep: 0 16px 30px rgba(17, 36, 61, 0.26);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(circle at 8% -4%, rgba(176, 33, 46, 0.14), transparent 24%),
    radial-gradient(circle at 95% 8%, rgba(61, 102, 157, 0.2), transparent 22%),
    linear-gradient(180deg, #edf3ff 0%, #f6f9ff 38%, #eef4ff 72%, #f9fbff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  top: 15%;
  right: -170px;
  background: radial-gradient(circle, rgba(176, 33, 46, 0.15), transparent 68%);
  animation: floatDrift 20s ease-in-out infinite;
}

body::after {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(61, 102, 157, 0.18), transparent 68%);
  animation: floatDrift 24s ease-in-out infinite reverse;
}

@keyframes floatDrift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-18px) translateX(12px);
  }
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

p {
  margin: 0;
}

.container {
  width: min(1160px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 255, 0.72);
  border-bottom: 1px solid rgba(61, 102, 157, 0.16);
  box-shadow: 0 5px 12px rgba(29, 58, 96, 0.06);
  backdrop-filter: blur(8px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.header-shell {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 66px;
  padding: 0.3rem 0;
  margin-top: 0;
}

.site-header.scrolled {
  background: rgba(246, 250, 255, 0.82);
  box-shadow: 0 10px 22px rgba(29, 58, 96, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: -0.7rem;
  margin-right: 0.8rem;
}

.brand-badge {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  flex-shrink: 0;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.28);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ocean);
}

.brand-sub {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 0.32rem 0.12rem;
  color: var(--ocean);
  white-space: nowrap;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
  color: #244a7b;
  border-bottom-color: rgba(47, 91, 146, 0.45);
}

.site-nav a.nav-button {
  margin-left: 0.3rem;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 91, 146, 0.46);
  border-bottom: 1px solid rgba(47, 91, 146, 0.46);
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--primary-shadow);
}

.site-nav a.nav-button:hover,
.site-nav a.nav-button:focus-visible {
  color: #fff;
  border-bottom-color: rgba(47, 91, 146, 0.46);
  background: var(--primary-gradient);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid rgba(47, 91, 146, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ocean);
  padding: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(47, 91, 146, 0.52);
  background: #ffffff;
  transform: translateY(-1px);
}

.menu-icon {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: background-color 180ms ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(3.9rem, 11.2vw, 8.1rem) 0 2.4rem;
  background:
    linear-gradient(110deg, rgba(15, 37, 66, 0.88) 0%, rgba(17, 41, 71, 0.62) 42%, rgba(19, 45, 76, 0.34) 100%),
    url("media/hero1.png") center / cover no-repeat;
}

.hero .eyebrow {
  color: rgba(227, 238, 255, 0.96);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.6vw, 1.8rem);
  align-items: center;
  margin-top: clamp(0.9rem, 2.1vw, 1.8rem);
  min-height: clamp(430px, 58vh, 640px);
}

.hero-copy {
  max-width: 62ch;
}

.hero-copy h1 {
  font-size: clamp(2.12rem, 5vw, 4.1rem);
  max-width: 16ch;
  color: #ffffff;
  text-shadow: 0 12px 28px rgba(9, 24, 42, 0.35);
}

.hero-copy h1 span {
  color: #ffbac1;
}

.hero-copy > p {
  margin-top: 1rem;
  max-width: 54ch;
  color: rgba(238, 246, 255, 0.92);
  font-size: 1.03rem;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--primary-gradient);
  box-shadow: var(--primary-shadow);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(11, 42, 59, 0.18);
  background: rgba(255, 255, 255, 0.86);
}

.destination-strip {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(232, 242, 255, 0.2);
  border-bottom: 1px solid rgba(232, 242, 255, 0.2);
  background: linear-gradient(90deg, rgba(18, 45, 79, 0.66), rgba(42, 77, 122, 0.62), rgba(22, 52, 89, 0.66));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.strip-track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  min-height: 56px;
  white-space: nowrap;
  animation: runway 34s linear infinite;
  padding-left: 2.4rem;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 251, 255, 0.98);
  text-shadow: 0 1px 0 rgba(9, 22, 39, 0.35);
}

.strip-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 0.62rem;
  border-radius: 50%;
  background: #ff5c68;
  box-shadow: 0 0 0 2px rgba(255, 92, 104, 0.24);
}

@keyframes runway {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(2.5rem, 7.2vw, 5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.25));
  border-top: 1px solid rgba(11, 42, 59, 0.1);
  border-bottom: 1px solid rgba(11, 42, 59, 0.1);
}

.section-head {
  max-width: 70ch;
}

.section-head h2 {
  font-size: clamp(1.95rem, 3.3vw, 3rem);
}

.section-head p {
  margin-top: 0.68rem;
  color: var(--ink-soft);
  max-width: 60ch;
  font-size: 0.99rem;
  line-height: 1.6;
}

.services-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.video-card,
.process-card,
.faq-list details,
.contact-list li {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.service-card {
  padding: 1.2rem 1.1rem;
}

.service-card h3 {
  font-size: 1.34rem;
  line-height: 1.2;
  color: var(--ocean);
}

.service-card ul {
  margin: 0.72rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.service-card li {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.48;
}

.video-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-launch {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-launch:focus-visible {
  outline: 3px solid rgba(47, 91, 146, 0.52);
  outline-offset: -3px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #071427;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #071427;
  pointer-events: none;
}

.video-play {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  min-width: 58px;
  height: 32px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(176, 33, 46, 0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-meta {
  padding: 0.82rem 0.88rem 0.94rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.36rem;
  min-height: 146px;
}

.video-meta h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--ocean);
}

.video-meta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.5;
}

.video-tags {
  margin-top: 0;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.video-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(145deg, #c22f3c, #9f1e2a);
  border: 1px solid rgba(146, 21, 35, 0.45);
}

body.modal-open {
  overflow: hidden;
}

.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.reel-modal.is-open {
  display: grid;
  place-items: center;
}

.reel-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(5, 13, 24, 0.74);
  cursor: pointer;
}

.reel-dialog {
  position: relative;
  width: min(560px, calc(100% - 1.4rem));
  border: 1px solid rgba(132, 166, 213, 0.32);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 32, 56, 0.98), rgba(9, 21, 38, 0.98));
  box-shadow: 0 28px 52px rgba(5, 14, 26, 0.44);
  padding: 0.95rem 0.95rem 1rem;
  display: grid;
  gap: 0.7rem;
  color: rgba(236, 244, 255, 0.96);
}

.reel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reel-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(189, 214, 246, 0.96);
}

.reel-close {
  border: 1px solid rgba(176, 33, 46, 0.52);
  background: rgba(176, 33, 46, 0.16);
  color: #fff;
  border-radius: 8px;
  min-height: 32px;
  padding: 0.3rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.reel-dialog h3 {
  margin: 0;
  font-size: clamp(1.24rem, 2.8vw, 1.56rem);
}

.reel-player {
  width: min(420px, 100%);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  display: block;
  background: #050b14;
  border-radius: 12px;
}

@media (max-width: 720px) {
  .reel-dialog {
    width: calc(100% - 0.9rem);
    padding: 0.72rem 0.72rem 0.78rem;
    border-radius: 14px;
  }

  .reel-player {
    width: min(360px, 100%);
  }

  .video-play {
    min-width: 52px;
    height: 30px;
    font-size: 0.72rem;
  }
}

.process-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  --step-size: 3.2rem;
  --process-gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1rem;
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(1rem + (var(--step-size) / 2));
  left: calc(1rem + (var(--step-size) / 2));
  width: calc(100% + var(--process-gap));
  height: 10px;
  background:
    radial-gradient(circle, rgba(176, 33, 46, 0.88) 2.2px, transparent 2.8px) left center / 12px
      10px repeat-x;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.process-card:last-child::after {
  content: "";
  position: absolute;
  top: calc(1rem + (var(--step-size) / 2));
  left: calc(1rem + (var(--step-size) / 2));
  width: calc(100% - (1rem + (var(--step-size) / 2)) - 0.15rem);
  height: 10px;
  background:
    radial-gradient(circle, rgba(176, 33, 46, 0.88) 2.2px, transparent 2.8px) left center / 12px
      10px repeat-x;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-width: 3.2rem;
  height: 3.2rem;
  padding: 0 0.45rem;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(145deg, #cc3541, #a91f2c);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(176, 33, 46, 0.32);
  text-transform: none;
  margin-bottom: 0.72rem;
  line-height: 1;
}

.process-card h3 {
  font-size: 1.18rem;
}

.process-card p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.faq-shell {
  display: grid;
  gap: 1rem;
}

#faq {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

.faq-list {
  display: grid;
  gap: 0.82rem;
}

.faq-list details {
  position: relative;
  padding: 0.12rem 0.94rem 0.24rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease,
    background-color 180ms ease;
}

.faq-list details:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 91, 146, 0.4);
  box-shadow: 0 16px 24px rgba(24, 48, 81, 0.12);
}

.faq-list details[open] {
  border-color: rgba(47, 91, 146, 0.46);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.78));
  box-shadow: 0 16px 26px rgba(24, 48, 81, 0.14);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.62rem;
  padding: 0.72rem 0;
  font-weight: 800;
  font-size: 1.01rem;
  line-height: 1.34;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 91, 146, 0.9);
  box-shadow: 0 0 0 3px rgba(47, 91, 146, 0.16);
}

.faq-list summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(47, 91, 146, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
  border-color: rgba(47, 91, 146, 0.45);
  background: rgba(47, 91, 146, 0.1);
  color: var(--ocean);
}

.faq-list p {
  margin: 0 0 0.58rem;
  padding: 0.44rem 0 0.02rem 1.42rem;
  border-top: 1px dashed rgba(47, 91, 146, 0.22);
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

#contact {
  background: none;
  background-image: none;
}

#contact .section-head {
  text-align: center;
  margin-inline: auto;
}

.contact-list {
  margin: 1.2rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  gap: 0.82rem;
  padding: 0.95rem 1rem;
  font-size: 0.96rem;
  line-height: 1.34;
  border-color: rgba(47, 91, 146, 0.34);
  box-shadow: var(--card-shadow);
}

.contact-list a,
.contact-list span {
  color: var(--ink);
}

.contact-list a:hover {
  color: var(--coral);
}

.contact-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ocean);
  background: linear-gradient(145deg, rgba(61, 102, 157, 0.2), rgba(61, 102, 157, 0.08));
  border: 1px solid rgba(61, 102, 157, 0.32);
}

.contact-icon svg {
  width: 2.05rem;
  height: 2.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  border-top: 1px solid rgba(232, 242, 255, 0.2);
  background: linear-gradient(90deg, rgba(18, 45, 79, 0.66), rgba(42, 77, 122, 0.62), rgba(22, 52, 89, 0.66));
  margin-top: 1rem;
}

.footer-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.92rem;
  color: rgba(246, 251, 255, 0.98);
  text-shadow: 0 1px 0 rgba(9, 22, 39, 0.35);
}

.footer-link {
  color: #ffffff;
  font-weight: 800;
}

.footer-link:hover {
  color: #ffdbe0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .container {
    width: min(1160px, calc(100% - 1.8rem));
  }

  .process-card:not(:last-child)::after,
  .process-card:last-child::after {
    content: none;
  }

  .site-nav {
    gap: 0.78rem;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .site-nav a.nav-button {
    padding: 0.54rem 0.82rem;
  }
}

@media (max-width: 1050px) {
  .site-header,
  .site-header.scrolled {
    background: var(--mobile-nav-bg);
    border-bottom-color: rgba(61, 102, 157, 0.2);
    box-shadow: 0 7px 14px rgba(29, 58, 96, 0.08);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(320px, 94vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.55rem 0.7rem 0.7rem;
    border: 1px solid rgba(61, 102, 157, 0.24);
    border-top: none;
    border-radius: 0 0 12px 12px;
    background: var(--mobile-nav-bg);
    box-shadow: var(--shadow);
    flex: initial;
    justify-content: initial;
  }

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

  .site-nav a {
    text-align: center;
    background: rgba(47, 91, 146, 0.06);
    border-radius: 6px;
    border-bottom: none;
    padding: 0.55rem 0.7rem;
  }

  .site-nav a.nav-button {
    margin-left: 0;
    border-radius: 999px;
    border: 1px solid rgba(47, 91, 146, 0.46);
    border-bottom: 1px solid rgba(47, 91, 146, 0.46);
    background: var(--primary-gradient);
    color: #fff;
  }

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

  .header-shell {
    position: relative;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    margin-top: 0.6rem;
    min-height: clamp(454px, 60.8vh, 610px);
  }

  .services-grid,
  .video-grid,
  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.8rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
  }

  .contact-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.48rem;
    padding: 0.34rem 0.25rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .contact-list a,
  .contact-list span {
    text-align: center;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

  .process-card:not(:last-child)::after,
  .process-card:last-child::after {
    content: none;
  }

}

@media (max-width: 860px) {
  .hero {
    padding: clamp(3.55rem, 11.9vw, 5.8rem) 0 2.26rem;
  }

  .hero-layout {
    min-height: clamp(444px, 62.8vh, 600px);
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 7vw, 3rem);
  }

  .section {
    padding: clamp(2.2rem, 6.5vw, 4rem) 0;
  }

  .brand {
    margin-left: -0.2rem;
  }

  .brand-badge,
  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-logo {
    transform: scale(1.2);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1160px, calc(100% - 1.25rem));
  }

  .site-header {
    top: 0;
  }

  .header-shell {
    min-height: 58px;
    border-radius: 0;
    padding: 0.35rem 0;
  }

  .brand-title {
    font-size: 1.04rem;
  }

  .brand-sub {
    font-size: 0.66rem;
  }

  .brand {
    margin-left: 0;
  }

  .brand-badge {
    width: 54px;
    height: 54px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
    transform: scale(1.18);
  }

  .hero {
    padding-top: 3.05rem;
    padding-bottom: 1.98rem;
  }

  .hero-layout {
    min-height: clamp(434px, 66.2vh, 570px);
  }

  .hero-copy h1 {
    font-size: clamp(1.74rem, 8vw, 2.5rem);
  }

  .faq-list summary {
    font-size: 0.94rem;
    padding: 0.66rem 0;
  }

  .faq-list p {
    font-size: 0.9rem;
    padding-left: 1.22rem;
  }

  .step {
    min-width: 2.6rem;
    height: 2.6rem;
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .destination-strip {
    margin-top: 1rem;
  }

  .strip-track {
    min-height: 50px;
    gap: 1.5rem;
    padding-left: 1.2rem;
    animation-duration: 28s;
  }

  .strip-track span {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .services-grid,
  .video-grid,
  .process-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-list {
    padding: 0.82rem;
    gap: 0.68rem;
  }

  .contact-list li {
    padding: 0.34rem 0.24rem;
  }

  .footer-shell {
    min-height: 80px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0;
  }
}

@media (max-width: 480px) {
  .header-shell {
    min-height: 56px;
    padding: 0.28rem 0;
  }

  .brand-badge,
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-logo {
    transform: scale(1.16);
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .site-nav {
    width: min(300px, 95vw);
  }

  .site-nav a {
    font-size: 0.84rem;
    padding: 0.52rem 0.62rem;
  }

  .site-nav a.nav-button {
    padding: 0.52rem 0.72rem;
  }

  .hero {
    padding-top: 2.78rem;
    padding-bottom: 1.86rem;
  }

  .hero-layout {
    min-height: clamp(408px, 70.2vh, 528px);
  }

  .hero-copy > p {
    font-size: 0.94rem;
  }

  .btn {
    min-height: 42px;
    padding: 0.64rem 1rem;
    font-size: 0.76rem;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .contact-list {
    padding: 0.7rem;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.42rem;
    padding: 0.3rem 0.2rem;
    font-size: 0.9rem;
  }

  .contact-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .contact-icon svg {
    width: 1.48rem;
    height: 1.48rem;
  }

  .footer-shell {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

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