/* My Experience Africa — Design System */
:root {
  --navy-900: #0f2340;
  --navy-800: #1a3a5c;
  --navy-700: #234a73;
  --navy-600: #2d5a8a;
  --orange-500: #f58220;
  --orange-400: #ff9a3d;
  --orange-600: #d96d0f;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --gray-100: #f4f6f8;
  --gray-200: #e2e8ef;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #334155;
  --success: #16a34a;
  --error: #dc2626;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(15, 35, 64, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 35, 64, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 35, 64, 0.14);
  --header-h: 96px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 100%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 112.5%; /* 18px at typical browser default — more readable body copy */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--cream);
  overflow-x: hidden;
}
body.is-nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  box-sizing: border-box;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--navy-800); color: var(--white); padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

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

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, 0.95) 0%, transparent 70%),
    linear-gradient(165deg, #f7f4ef 0%, #eef2f6 48%, #e8edf3 100%);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
}
.page-loader__glow {
  position: absolute;
  width: min(28rem, 70vw);
  height: min(28rem, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.12) 0%, transparent 68%);
  pointer-events: none;
  animation: loaderGlow 2.8s ease-in-out infinite;
}
.page-loader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: loaderEnter 0.55s ease both;
}
.page-loader__mark {
  position: relative;
  width: 11.5rem;
  height: 11.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(15, 35, 64, 0.08);
  border-top-color: var(--orange-500);
  border-right-color: rgba(245, 130, 32, 0.35);
  animation: loaderSpin 1.05s cubic-bezier(0.55, 0.15, 0.35, 0.85) infinite;
}
.page-loader__ring::after {
  content: '';
  position: absolute;
  inset: 0.55rem;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-bottom-color: rgba(15, 35, 64, 0.18);
  animation: loaderSpin 1.6s linear infinite reverse;
}
.page-loader__logo {
  width: 7.5rem;
  height: auto;
  max-width: 68%;
  display: block;
  animation: loaderPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(15, 35, 64, 0.08));
}
@keyframes loaderEnter {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loaderGlow {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.92; }
}

@media (max-width: 480px) {
  .page-loader__mark {
    width: 9.5rem;
    height: 9.5rem;
  }
  .page-loader__logo {
    width: 6.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__glow,
  .page-loader__ring,
  .page-loader__ring::after,
  .page-loader__logo,
  .page-loader__inner {
    animation: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background: linear-gradient(180deg, var(--orange-400) 0%, var(--orange-500) 52%, var(--orange-600) 100%);
  color: var(--white);
  border-color: rgba(217, 109, 15, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 1px 2px rgba(15, 35, 64, 0.06),
    0 10px 20px -12px rgba(245, 130, 32, 0.75);
}
.btn--primary:hover {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
  border-color: rgba(15, 35, 64, 0.35);
  color: var(--white);
  filter: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 2px 6px rgba(15, 35, 64, 0.12),
    0 14px 24px -10px rgba(15, 35, 64, 0.55);
}
.btn--primary:active {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  transform: translateY(0);
  filter: none;
}
.btn--primary:focus-visible {
  outline: 2px solid var(--navy-800);
  outline-offset: 3px;
}
.hero__actions .btn--primary::after,
a.btn--primary[href="/book.php"]::after {
  content: '';
  width: 0.9em;
  height: 0.9em;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}
.hero__actions .btn--primary:hover::after,
a.btn--primary[href="/book.php"]:hover::after {
  transform: translateX(3px);
}
.btn--outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--navy { background: var(--navy-800); color: var(--white); }
.btn--navy:hover { background: var(--navy-900); }
.btn--white {
  background: #fff;
  color: var(--navy-800);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(15, 35, 64, 0.08),
    0 10px 22px -12px rgba(15, 35, 64, 0.55);
}
.btn--white:hover {
  background: #f4f7fb;
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 6px rgba(15, 35, 64, 0.1),
    0 14px 26px -12px rgba(15, 35, 64, 0.6);
}
.btn--white:active {
  transform: translateY(0);
  background: #eef2f7;
}
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn--pill {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn--block { width: 100%; }
.btn--outline-navy {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
  box-shadow: none;
}
.btn--outline-navy:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-1px);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform 0.28s ease;
  overflow: visible;
  will-change: transform;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}
.site-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
  pointer-events: none;
}
.site-header.is-hidden.is-mega-open,
body.is-nav-open .site-header.is-hidden {
  transform: none;
  pointer-events: auto;
}
.site-header.is-mega-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.site-header.is-mega-open::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--mega-panel-h, calc(var(--header-h) + 18rem));
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 0;
  pointer-events: none;
}
.site-header.is-mega-open .site-header__inner {
  position: relative;
  z-index: 1;
}
.site-header.is-mega-open .mega-menu {
  z-index: 1;
}
.site-header.is-mega-open.is-scrolled {
  box-shadow: none;
}
.site-nav__link { color: var(--navy-800); }
.site-nav__trigger svg,
.site-nav__chevron { stroke: var(--navy-800); }
.lang-switcher__btn { color: var(--navy-800); border-color: var(--gray-200); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
}
.site-header__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 1002;
  position: relative;
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  height: var(--header-h);
  padding-right: 0.5rem;
}
.site-logo img {
  height: calc(var(--header-h) - 2px);
  width: auto;
  max-width: min(420px, 42vw);
  object-fit: contain;
  transform: scale(1.28);
  transform-origin: left center;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav__list { display: flex; align-items: center; gap: 0.25rem; }

@media (min-width: 1025px) {
  .site-logo img {
    max-width: min(360px, 28vw);
    transform: scale(1.22);
  }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--header-h);
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.65rem;
    padding-inline: clamp(1.25rem, 4vw, 4rem);
    padding-left: clamp(10.5rem, 20vw, 16rem);
    padding-right: clamp(6.5rem, 12vw, 11rem);
    pointer-events: none;
    background: transparent;
    overflow: visible;
    transition: transform 0.28s ease;
    will-change: transform;
  }
  .site-nav__list {
    flex: 0 1 auto;
    flex-wrap: nowrap;
    gap: 0.05rem;
    min-width: 0;
  }
  .site-nav__list > li {
    flex: 0 0 auto;
  }
  .site-nav__link {
    white-space: nowrap;
    font-size: 0.9375rem;
    padding: 0.45rem 0.6rem;
    gap: 0.3rem;
  }
  .site-nav__actions {
    flex: 0 0 auto;
    gap: 0.5rem;
  }
  .site-nav__cta {
    white-space: nowrap;
    flex-shrink: 0;
    padding-inline: 1.1rem;
  }
  .site-nav__list,
  .site-nav__actions {
    pointer-events: auto;
  }
  .site-nav__top {
    display: none;
  }
  .site-header__tools .nav-toggle {
    display: none;
  }

  /* Keep desktop nav in sync with header auto-hide */
  .site-header.is-hidden ~ .site-nav {
    transform: translateY(-100%);
  }
  .site-header.is-hidden ~ .site-nav .site-nav__list,
  .site-header.is-hidden ~ .site-nav .site-nav__actions {
    pointer-events: none;
  }
  .site-header.is-hidden.is-mega-open ~ .site-nav {
    transform: none;
  }
  .site-header.is-hidden.is-mega-open ~ .site-nav .site-nav__list,
  .site-header.is-hidden.is-mega-open ~ .site-nav .site-nav__actions {
    pointer-events: auto;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .site-nav {
    gap: 0.45rem;
    padding-left: clamp(9.5rem, 19vw, 14rem);
    padding-right: clamp(5.75rem, 11vw, 9rem);
  }
  .site-nav__link {
    font-size: 0.875rem;
    padding: 0.4rem 0.45rem;
  }
  .site-nav__cta {
    font-size: 0.8125rem;
    padding: 0.55rem 0.95rem;
  }
  .site-logo img {
    max-width: min(300px, 26vw);
    transform: scale(1.15);
  }
}

.site-nav__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.875rem; font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-sm); transition: var(--transition);
  background: none; border: none; cursor: pointer; color: inherit;
}
.site-nav__link:hover, .site-nav__link.is-active { color: var(--orange-500); }
.site-nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-nav__top {
  display: none;
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-switcher__btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.65rem 0.4rem 0.75rem; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); background: transparent;
  cursor: pointer; font-size: 0.8125rem; font-weight: 600;
  transition: var(--transition);
}
.lang-switcher__btn:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}
.lang-switcher__chevron {
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.lang-switcher__btn:hover .lang-switcher__chevron {
  opacity: 1;
}
.lang-switcher__btn[aria-expanded="true"] .lang-switcher__chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.lang-switcher__menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 150px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 0.5rem; z-index: 100;
  animation: fadeDown 0.2s ease;
}
.lang-switcher__menu button {
  display: block; width: 100%; text-align: left;
  padding: 0.5rem 0.75rem; border: none; background: none;
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.875rem; transition: background 0.15s;
}
.lang-switcher__menu button:hover { background: var(--gray-100); }
.lang-switcher__menu button.is-active { color: var(--orange-500); font-weight: 600; }

/* Mega menu */
.site-nav__item--mega { position: static; }
.mega-menu {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  border-top: none;
  padding: 2rem 0;
  animation: fadeDown 0.25s ease;
}
.mega-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.mega-menu__inner {
  padding-top: 0.5rem;
}
.mega-menu__columns {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(240px, 320px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.mega-menu__columns--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-menu__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy-800);
  padding-bottom: 0.875rem;
  margin-bottom: 1.125rem;
  border-bottom: 2px solid var(--orange-500);
}
.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.mega-menu__links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mega-menu__links a:hover {
  color: var(--orange-500);
  padding-left: 0.35rem;
}
.mega-menu__aside {
  padding-left: clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--gray-200);
}
.mega-menu__label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}
.mega-menu__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.mega-menu__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
.mega-menu__secondary {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.mega-menu__secondary:hover { color: var(--orange-500); }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(26, 58, 92, 0.06); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-800);
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.28s ease;
  transform-origin: center;
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-nav-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 1002;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(15, 35, 64, 0.52);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  cursor: pointer;
}
.site-nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Hero video slider */
.hero {
  position: relative;
  z-index: 2;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  overflow: visible;
}
.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__video--youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(10, 24, 45, 0.42) 0%,
      rgba(10, 24, 45, 0.38) 45%,
      rgba(10, 24, 45, 0.55) 100%
    ),
    linear-gradient(
      135deg,
      rgba(15, 35, 64, 0.28) 0%,
      transparent 55%
    );
}
.hero__content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center;
  padding-top: var(--header-h);
  text-align: center;
  overflow: visible;
}
.hero__inner {
  width: 100%;
  max-width: 720px;
}
.hero__subtitle { margin-inline: auto; }
.hero__eyebrow {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 1rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 1rem;
  animation: fadeUp 0.8s ease 0.35s both;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 540px;
  animation: fadeUp 0.8s ease 0.5s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero CTAs */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 0.25rem;
  animation: fadeUp 0.8s ease 0.55s both;
}

.hero__dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 0.5rem;
}
.hero__dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5); background: transparent;
  cursor: pointer; transition: var(--transition);
}
.hero__dot.is-active { background: var(--orange-500); border-color: var(--orange-500); }

/* Stats bar */
.stats-bar {
  background: var(--navy-800); color: var(--white);
  padding: 2.5rem 0;
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stats-bar__number {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--orange-400); line-height: 1;
}
.stats-bar__label { font-size: 0.875rem; opacity: 0.85; margin-top: 0.5rem; }

/* Section utilities */
.section { padding: clamp(2.75rem, 6vw, 5rem) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy-800); color: var(--white); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__eyebrow {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange-500); margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--navy-800); line-height: 1.2;
}
.section--navy .section__title { color: var(--white); }
.section__desc { margin-top: 1rem; color: var(--gray-600); font-size: 1.0625rem; }
.section--navy .section__desc { color: rgba(255,255,255,0.75); }

/* Home about — interlocking photo stack */
.home-about { overflow: hidden; }
.home-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.home-about__visual {
  --stack-r: clamp(1.5rem, 4vw, 2.25rem);
  --inset-w: 40%;
  --inset-h: 56%;
  --inset-top: 22%;
  --inset-gap: 0.85rem;
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1.05;
  min-height: 380px;
  filter: drop-shadow(0 22px 48px rgba(15, 35, 64, 0.14));
}
.home-about__image {
  overflow: hidden;
  background: var(--gray-200);
}
.home-about__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-about__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.home-about__slide.is-active {
  opacity: 1;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .home-about__slide { transition: none; }
}
.home-about__image--main {
  position: absolute;
  inset: 0;
  border-radius: var(--stack-r);
  overflow: visible;
  /* Match About Us collage C-notch */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 420' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M36 0h328a36 36 0 0 1 36 36v56H240a28 28 0 0 0-28 28v180a28 28 0 0 0 28 28h160v56a36 36 0 0 1-36 36H36a36 36 0 0 1-36-36V36A36 36 0 0 1 36 0z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 420' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M36 0h328a36 36 0 0 1 36 36v56H240a28 28 0 0 0-28 28v180a28 28 0 0 0 28 28h160v56a36 36 0 0 1-36 36H36a36 36 0 0 1-36-36V36A36 36 0 0 1 36 0z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.home-about__image--accent {
  position: absolute;
  right: 0;
  top: calc(var(--inset-top) + var(--inset-gap));
  width: var(--inset-w);
  height: calc(var(--inset-h) - (var(--inset-gap) * 2));
  z-index: 2;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: calc(var(--stack-r) * 0.82);
  border: none;
  background: transparent;
  box-shadow: 0 16px 36px rgba(15, 35, 64, 0.18);
}
.home-about__badge {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.home-about__badge span[aria-hidden] {
  color: var(--gray-400);
  font-weight: 400;
}
.home-about__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 1rem;
}
.home-about__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-800);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.home-about__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  max-width: 42ch;
}
.home-about__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: -0.75rem 0 1.75rem;
  max-width: 46ch;
}
.home-about__body p:last-child { margin-bottom: 0; }
.home-about__points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}
.home-about__points li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.45;
}
.home-about__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-500);
}
.home-about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-800);
  border-bottom: 1px solid rgba(26, 58, 92, 0.25);
  padding-bottom: 0.125rem;
  transition: gap 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.home-about__link:hover {
  color: var(--orange-600);
  border-color: var(--orange-500);
  gap: 0.55rem;
}

/* Project cards — homepage path finder */
.programs-section__header {
  margin-bottom: 1.75rem;
}
.programs-section__header .section__eyebrow {
  margin-bottom: 0.65rem;
}
.programs-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.programs-section__lead {
  margin-top: 0.85rem;
  max-width: 46rem;
}
.projects-carousel { position: relative; }
.projects-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.projects-carousel__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.projects-carousel__viewport.is-dragging .project-card__flip {
  transform: none !important;
  transition: none;
}
.projects-grid {
  display: flex;
  gap: 1.25rem;
  padding: 0.25rem 0 0.5rem;
  cursor: grab;
  touch-action: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
a.project-card {
  color: inherit;
  text-decoration: none;
}
.project-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(
    260px,
    calc((100vw - 2 * clamp(1.25rem, 4vw, 4rem) - 2 * 1.25rem) / 3),
    420px
  );
  aspect-ratio: 2 / 3;
  perspective: 1200px;
  border-radius: 22px;
  background: transparent;
}
.project-card:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}
.project-card__flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 22px;
}
.project-card:hover .project-card__flip,
.project-card:focus-within .project-card__flip {
  transform: rotateY(180deg);
}
.project-card__front,
.project-card__back {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: var(--shadow-md);
}
.project-card__front {
  background: var(--navy-900);
}
.project-card__back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
}
.project-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__img {
  transform: scale(1.06);
}
.project-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.5rem 1.25rem 1.35rem;
  background: linear-gradient(to top, rgba(15, 35, 64, 0.86) 0%, rgba(15, 35, 64, 0.38) 62%, transparent 100%);
  color: var(--white);
}
.project-card__age {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.92;
  margin-bottom: 0.3rem;
}
.project-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
.project-card__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 18rem;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-400) 0%, var(--orange-500) 52%, var(--orange-600) 100%);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .project-card__flip,
  .project-card__img {
    transition: none;
  }
  .project-card:hover .project-card__flip,
  .project-card:focus-within .project-card__flip {
    transform: none;
  }
  .project-card:hover .project-card__front {
    opacity: 0;
  }
  .project-card:hover .project-card__back {
    opacity: 1;
  }
  .project-card__back {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
}
.projects-carousel__footer {
  margin-top: 1.25rem;
}
.projects-carousel__nav {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.projects-carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.projects-carousel__btn:hover:not(:disabled) {
  border-color: var(--navy-800);
  color: var(--navy-800);
  transform: translateY(-1px);
}
.projects-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.projects-carousel__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.projects-carousel__blurb {
  max-width: 42rem;
  margin: 0;
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.programs-section__cta {
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  padding: 0.95rem 1.7rem;
}

/* Projects listing page */
.projects-index {
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(245, 130, 32, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 35% at 100% 20%, rgba(26, 58, 92, 0.06), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 48%, var(--cream) 100%);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.projects-index__intro {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.projects-index__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin: 0 0 0.75rem;
}
.projects-index__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy-800);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.projects-index__lead {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}
.projects-index__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 0 auto 3.5rem;
  padding: 0;
  max-width: 52rem;
  list-style: none;
}
.projects-index__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-800);
}
.projects-index__trust-icon {
  display: inline-flex;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--orange-500);
  flex-shrink: 0;
}
.projects-index__trust-icon svg {
  width: 100%;
  height: 100%;
}
.projects-index__list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.projects-index__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.projects-index__card--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.projects-index__card--reverse .projects-index__media { order: 2; }
.projects-index__card--reverse .projects-index__body { order: 1; }
.projects-index__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-800);
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.projects-index__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.projects-index__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 35, 64, 0.15) 0%, transparent 45%, rgba(15, 35, 64, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.projects-index__index {
  position: absolute;
  left: 1.25rem;
  bottom: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.03em;
  text-shadow: 0 8px 24px rgba(15, 35, 64, 0.35);
  pointer-events: none;
}
.projects-index__card:hover .projects-index__media img,
.projects-index__media:focus-visible img {
  transform: scale(1.06);
}
.projects-index__card:hover .projects-index__media-shade {
  opacity: 0.85;
}
.projects-index__media:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 3px;
}
.projects-index__body {
  min-width: 0;
}
.projects-index__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.projects-index__title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  color: var(--navy-800);
  line-height: 1.15;
  margin: 0 0 0.65rem;
}
.projects-index__title a {
  color: inherit;
  transition: color 0.2s ease;
}
.projects-index__title a:hover {
  color: var(--orange-500);
}
.projects-index__tagline {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-700);
  line-height: 1.45;
  margin: 0 0 0.75rem;
}
.projects-index__summary {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.projects-index__highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.projects-index__highlights li {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  font-size: 0.9375rem;
  color: var(--navy-800);
  line-height: 1.45;
}
.projects-index__highlights li::before {
  content: '';
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23f58220'/%3E%3Cpath d='M5.8 10.2l2.6 2.6 5.8-5.8' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.projects-index__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1.5rem;
}
.projects-index__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(26, 58, 92, 0.06);
  color: var(--navy-800);
  font-size: 0.8125rem;
  font-weight: 600;
}
.projects-index__meta-item--price strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange-600);
}
.projects-index__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}
.projects-index__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1.5px solid rgba(245, 130, 32, 0.45);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.projects-index__link:hover {
  color: var(--orange-500);
  border-color: var(--orange-500);
}

/* Features — fixed viewport background clipped to section bounds */
.features-section {
  position: relative;
  z-index: 1;
  background: var(--navy-900);
}
.features-section.is-parallax-ready {
  background: transparent;
}
.features-section__bg,
.features-section__overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: clip-path;
  opacity: 0;
}
.features-section.is-parallax-ready .features-section__bg,
.features-section.is-parallax-ready .features-section__overlay {
  opacity: 1;
}
.features-section__bg {
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.features-section__overlay {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 45, 0.72) 0%, rgba(10, 24, 45, 0.58) 45%, rgba(10, 24, 45, 0.74) 100%);
}
.features-section__content {
  position: relative;
  z-index: 2;
}
.features-section .section__eyebrow {
  color: var(--orange-400);
}
.features-section .section__title {
  color: var(--white);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-card {
  text-align: center; padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(8, 20, 40, 0.18);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(8, 20, 40, 0.24); }
.feature-card__icon {
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--orange-400);
}
.feature-card__title { font-weight: 600; color: var(--navy-800); margin-bottom: 0.5rem; }
.feature-card__text { font-size: 0.875rem; color: var(--gray-600); }

/* Keep neighboring page bands above the fixed features backdrop */
main > section:not(.features-section),
.stats-bar,
.site-footer {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .features-section__bg,
  .features-section__overlay {
    position: absolute;
    clip-path: none !important;
    will-change: auto;
    opacity: 1;
  }
  main > section:not(.features-section),
  .stats-bar,
  .site-footer {
    z-index: auto;
  }
}

/* Image showcase */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.showcase--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.showcase-section {
  padding: 0;
  overflow: hidden;
}
.showcase-section .showcase__media {
  position: relative;
  height: 100%;
  min-height: 100%;
}
.showcase-section .showcase__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  box-shadow: none;
}
.showcase-section .showcase--hero {
  min-height: clamp(560px, 58vh, 720px);
}
.showcase-section .showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 640px;
}
.showcase__cta.btn--primary {
  align-self: flex-start;
}
.showcase__images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.showcase__img {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4;
  background-size: cover; background-position: center;
}
.showcase__img--tall { grid-row: span 2; aspect-ratio: auto; }
.showcase__content h2 {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--navy-800); margin-bottom: 1rem; line-height: 1.2;
}
.showcase__content p { color: var(--gray-600); margin-bottom: 1.5rem; }
.showcase__list { margin-bottom: 2rem; }
.showcase__list li {
  padding: 0.5rem 0 0.5rem 1.75rem; position: relative;
  font-size: 0.9375rem; color: var(--gray-800);
}
.showcase__list li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500);
}

/* Testimonials */
.testimonials { overflow: hidden; }
.testimonials .section__header { margin-bottom: 2.5rem; }
.testimonials__carousel { position: relative; }
.testimonials__viewport {
  overflow: hidden;
  margin-inline: -0.25rem;
  padding: 0.35rem 0.25rem 0.75rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.testimonials__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  animation: testimonialsMarquee 48s linear infinite;
  will-change: transform;
}
.testimonials__carousel:hover .testimonials__track,
.testimonials__carousel:focus-within .testimonials__track {
  animation-play-state: paused;
}
@keyframes testimonialsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(22.5rem, 82vw);
  width: min(22.5rem, 82vw);
  min-height: 17.5rem;
  margin-right: 1.25rem;
  padding: 1.6rem 1.5rem 1.45rem;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 130, 32, 0.28);
}
.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testimonial-card__mark {
  display: flex;
  color: var(--orange-500);
  opacity: 0.9;
}
.testimonial-card__stars {
  display: flex;
  gap: 0.15rem;
  margin: 0;
  color: var(--orange-500);
}
.testimonial-card__quote {
  margin: 0 0 1.5rem;
  flex: 1;
}
.testimonial-card__quote p {
  font-family: var(--font-body);
  font-size: 0.9875rem;
  font-style: normal;
  font-weight: 400;
  color: var(--navy-800);
  line-height: 1.65;
  margin: 0;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--gray-200);
}
.testimonial-card__avatar {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--orange-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.testimonial-card__meta cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy-800);
}
.testimonial-card__meta span {
  font-size: 0.8125rem;
  color: var(--gray-600);
}
@media (prefers-reduced-motion: reduce) {
  .testimonials__track { animation: none; }
  .testimonials__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Home pricing */
.home-pricing {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.home-pricing__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.home-pricing__intro {
  max-width: 36rem;
}
.home-pricing__intro .section__desc {
  margin-bottom: 0;
}
.home-pricing__all-link {
  flex-shrink: 0;
}
.home-pricing__all-link::after {
  content: '';
  width: 0.9em;
  height: 0.9em;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}
.home-pricing__all-link:hover::after {
  transform: translateX(3px);
}
.home-pricing__carousel {
  position: relative;
  perspective: 1400px;
}
.home-pricing__viewport {
  overflow: hidden;
  touch-action: pan-y;
  padding-block: 1.5rem;
  margin-block: -1.5rem;
}
.home-pricing__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.home-pricing__viewport.is-dragging .home-pricing__card {
  transform: none !important;
  transition: none;
}
.home-pricing__track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 0.35rem 0.85rem;
  cursor: grab;
  touch-action: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.home-pricing__card {
  position: relative;
  flex: 0 0 clamp(
    260px,
    calc((100vw - 2 * clamp(1.25rem, 4vw, 4rem) - 2 * 1.25rem) / 3),
    420px
  );
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(15, 35, 64, 0.05);
  transform-style: preserve-3d;
  transform: translateZ(0) scale(1) rotateX(0deg) rotateY(0deg);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.3s ease;
  will-change: transform;
}
.home-pricing__card:hover {
  z-index: 2;
  transform: translateY(-10px) scale(1.06) rotateX(5deg) rotateY(-8deg);
  border-color: rgba(245, 130, 32, 0.28);
  box-shadow: 0 8px 18px rgba(15, 35, 64, 0.08);
}
.home-pricing__card--featured {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 4px 12px rgba(15, 35, 64, 0.06);
}
.home-pricing__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.home-pricing__badge {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 4;
  background: var(--orange-500);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}
.home-pricing__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.home-pricing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.home-pricing__card:hover .home-pricing__img {
  transform: scale(1.08);
}
.home-pricing__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.4rem;
}
.home-pricing__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.home-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin: 0 0 0.375rem;
}
.home-pricing__from-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.home-pricing__from-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}
.home-pricing__meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  margin: 0 0 0.625rem;
}
.home-pricing__meta-dot {
  margin: 0 0.25rem;
  opacity: 0.5;
}
.home-pricing__desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-pricing__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: gap 0.2s ease, color 0.2s ease;
}
.home-pricing__card:hover .home-pricing__cta {
  color: var(--orange-500);
  gap: 0.55rem;
}
@media (prefers-reduced-motion: reduce) {
  .home-pricing__card,
  .home-pricing__img {
    transition: none;
  }
  .home-pricing__card:hover {
    transform: translateY(-4px) scale(1.02);
  }
}
.home-pricing__nav {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.home-pricing__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.home-pricing__btn:hover:not(:disabled) {
  border-color: var(--navy-800);
  color: var(--navy-800);
  transform: translateY(-1px);
}
.home-pricing__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Legacy pricing cards (unused) */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative;
}
.pricing-card--featured {
  border-color: var(--orange-500); box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange-500); color: var(--white);
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 1rem;
  border-radius: 999px;
}
.pricing-card__name { font-weight: 600; color: var(--navy-800); margin-bottom: 0.5rem; }
.pricing-card__price {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 700; color: var(--navy-800);
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--gray-600); }
.pricing-card__features { margin: 1.5rem 0; }
.pricing-card__features li {
  padding: 0.4rem 0; font-size: 0.875rem; color: var(--gray-600);
  padding-left: 1.5rem; position: relative;
}
.pricing-card__features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--success); font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.is-open {
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: var(--shadow-sm);
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.45;
}
.faq-item__question-text { flex: 1; min-width: 0; }
.faq-item__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.1);
  color: var(--orange-500);
}
.faq-item.is-open .faq-item__toggle {
  background: var(--orange-500);
  color: var(--white);
}
.faq-item__toggle svg { display: block; transition: transform 0.25s ease; }
.faq-item__toggle .faq-item__plus-v {
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform-origin: center;
}
.faq-item.is-open .faq-item__toggle .faq-item__plus-v {
  opacity: 0;
  transform: scaleY(0);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item__answer p,
.faq-item__answer div {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9625rem;
  line-height: 1.7;
}
.faq-item__answer ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--gray-600);
  font-size: 0.9625rem;
  line-height: 1.7;
}
.faq-item__answer li + li { margin-top: 0.35rem; }
.faq-item__answer strong { color: var(--navy-800); }
.faq-item__answer a {
  color: var(--navy-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-item__answer a:hover { color: var(--orange-500); }
.faq-section__more {
  text-align: center;
  margin-top: 2.5rem;
}
.faq-page__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* FAQ page */
.faq-page {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 130, 32, 0.06), transparent 42%),
    radial-gradient(circle at 90% 100%, rgba(26, 58, 92, 0.05), transparent 38%),
    var(--cream);
}
.faq-page__container {
  max-width: 52rem;
  margin-inline: auto;
}
.faq-page__intro {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.faq-page__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.faq-page__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy-900);
  max-width: 38rem;
  margin-inline: auto;
}
.faq-page__intro-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.faq-page__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.faq-page__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.1);
  color: var(--navy-800);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.faq-page__nav-link:hover {
  border-color: rgba(245, 130, 32, 0.35);
  color: var(--orange-500);
  transform: translateY(-1px);
}
.faq-page__sections {
  display: grid;
  gap: 1.25rem;
}
.faq-page__section {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.faq-page__section-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 58, 92, 0.08);
}
.faq-page__section-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.12);
  color: var(--orange-500);
  border: 1px solid rgba(245, 130, 32, 0.18);
}
.faq-page__section-icon svg { display: block; }
.faq-page__section-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  padding: 0;
  border: none;
  display: block;
}
.faq-page__list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0;
}
.faq-page__list .faq-item {
  background: var(--cream);
  border-color: rgba(26, 58, 92, 0.06);
}
.faq-page__list .faq-item.is-open {
  background: var(--white);
}
.faq-page__list .faq-item__question {
  font-size: 1rem;
  padding: 1.1rem 1.15rem;
}
/* Pre-footer CTA band */
.page-cta,
.contact-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(340px, 45vw, 440px);
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.page-cta__media,
.contact-banner__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-cta__overlay,
.contact-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 35, 64, 0.9) 0%, rgba(15, 35, 64, 0.72) 48%, rgba(15, 35, 64, 0.55) 100%);
}
.page-cta__content,
.contact-banner__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.page-cta__eyebrow,
.contact-banner__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-400);
}
.page-cta__title,
.contact-banner__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
}
.page-cta__desc,
.contact-banner__text {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.page-cta__actions,
.contact-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Legacy in-container CTA removed — use page-cta partial */
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}
/* How It Works guides */
.how-guide {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 130, 32, 0.06), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(26, 58, 92, 0.05), transparent 38%),
    var(--cream);
}
.how-guide__layout {
  max-width: 72rem;
  margin-inline: auto;
}
.how-guide__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray-600);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.how-guide__crumbs a {
  color: var(--navy-800);
  text-decoration: none;
}
.how-guide__crumbs a:hover { color: var(--orange-500); }
.how-guide__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}
.how-guide__grid--solo {
  grid-template-columns: 1fr;
}
.how-guide__intro {
  text-align: left;
}
.how-guide__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.how-guide__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy-900);
}
.how-guide__intro-media {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--gray-200);
}
.how-guide__intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-guide__block-media {
  margin: 0.85rem 0 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 16 / 10;
}
.how-guide__block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-guide__content {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.how-guide__block {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.how-guide__block h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}
.how-guide__block p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.how-guide__block p:last-child,
.how-guide__block .how-guide__list:last-child {
  margin-bottom: 0;
}
.how-guide__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.how-guide__list li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  font-size: 0.9875rem;
  line-height: 1.65;
  color: var(--navy-800);
}
.how-guide__list li::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23f58220'/%3E%3Cpath d='M5.8 10.2l2.6 2.6 5.8-5.8' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.how-guide__inline-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0.25rem 0 0 !important;
}
.how-guide__inline-links a {
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.how-guide__inline-links a:hover { color: var(--orange-500); }
.how-guide__dot { color: var(--gray-400); }
.how-guide__cta {
  display: none;
}
@media (min-width: 1025px) {
  .how-guide__grid:not(.how-guide__grid--solo) {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  .how-guide__intro {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    padding-right: 0.5rem;
  }
}
.how-guide__layout > .how-guide__lead {
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  color: var(--gray-600);
}
.how-guide__layout > .how-guide__content {
  max-width: 42rem;
  margin-inline: auto;
}
.how-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.how-topics__card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.how-topics__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 130, 32, 0.35);
}
.how-topics__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.how-topics__card strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy-800);
}
.how-topics__card span:last-child {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-600);
}
@media (max-width: 900px) {
  .how-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .how-topics { grid-template-columns: 1fr; }
}

/* How it works — Projects Abroad–style image + text journey (MEA branding) */
.how-pa-intro {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  background: var(--white);
}
.how-pa-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: stretch;
}
.how-pa-intro__inner {
  max-width: 40rem;
  margin-inline: 0;
  text-align: left;
}
.how-pa-intro__media {
  display: none;
}
.how-pa-intro__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.how-pa-intro__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.2;
}
.how-pa-intro__lead {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: var(--gray-600);
}
.how-pa-intro__list-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
}
.how-pa-intro__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 40rem;
}
.how-pa-intro__list li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
}
.how-pa-intro__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--orange-500);
}
.how-pa-intro__close {
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy-800);
  font-weight: 500;
}

@media (min-width: 769px) {
  .how-pa-intro__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
  }
  .how-pa-intro__inner {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .how-pa-intro__media {
    display: block;
    position: relative;
    min-height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--navy-900);
    align-self: stretch;
  }
  .how-pa-intro__media img {
    width: 100%;
    height: 100%;
    min-height: 28rem;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

@media (min-width: 1025px) {
  .how-pa-intro__media img {
    min-height: 32rem;
  }
}
.how-pa-steps__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: left;
}

.how-pa-steps {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(245, 130, 32, 0.06), transparent 50%),
    var(--cream);
}
.how-pa-steps__wrap {
  max-width: 68rem;
  margin-inline: auto;
}
.how-pa-steps__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.15;
}
.how-pa-steps__list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 5vw, 3.5rem);
}
.how-pa-step {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.how-pa-step--flip .how-pa-step__media {
  order: 2;
}
.how-pa-step--flip .how-pa-step__copy {
  order: 1;
}
.how-pa-step__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
  aspect-ratio: 4 / 3;
}
.how-pa-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-pa-step__copy {
  min-width: 0;
}
.how-pa-step__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.2;
}
.how-pa-step__copy p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.how-pa-step__copy p:last-of-type {
  margin-bottom: 0;
}
.how-pa-step__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--orange-500);
  text-decoration: none;
  transition: color 0.2s ease;
}
.how-pa-step__cta-label {
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1.5px;
}
.how-pa-step__cta:hover {
  color: var(--orange-600);
}
.how-pa-step__cta-arrow {
  transition: transform 0.2s ease;
}
.how-pa-step__cta:hover .how-pa-step__cta-arrow {
  transform: translateX(3px);
}

.how-pa-after {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background: var(--white);
}
.how-pa-after__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 64rem;
  margin-inline: auto;
}
.how-pa-after__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.how-pa-after__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-pa-after__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy-800);
}
.how-pa-after__copy p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.how-pa-after__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.how-flow-guides {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (max-width: 900px) {
  .how-pa-step,
  .how-pa-step--flip,
  .how-pa-after__grid {
    grid-template-columns: 1fr;
  }
  .how-pa-step--flip .how-pa-step__media,
  .how-pa-step--flip .how-pa-step__copy {
    order: unset;
  }
  .how-pa-step__media,
  .how-pa-after__media {
    max-width: 36rem;
    width: 100%;
    margin-inline: auto;
  }
  .how-pa-after__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Legal pages */
.legal-page {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 130, 32, 0.06), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(26, 58, 92, 0.05), transparent 38%),
    var(--cream);
}
.legal-page__container {
  max-width: 48rem;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-page__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.legal-page--disclaimer .legal-page__container {
  max-width: 52rem;
}
.legal-page__updated {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin: 0 0 1.25rem;
}
.legal-page__intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--navy-800);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 58, 92, 0.08);
}
.legal-page__intro p { margin: 0; }
.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--navy-900);
  margin: 2rem 0 0.75rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.legal-page__content h2:first-child { margin-top: 0; }
.legal-page__content p {
  font-size: 0.9875rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0 0 1rem;
}
.legal-page__content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--gray-600);
  font-size: 0.9875rem;
  line-height: 1.75;
}
.legal-page__content li + li { margin-top: 0.4rem; }
.legal-page__content strong { color: var(--navy-800); font-weight: 600; }
.legal-page__content a {
  color: var(--navy-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page__content a:hover { color: var(--orange-500); }
.legal-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(26, 58, 92, 0.08);
}

.legal-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  background: linear-gradient(180deg, #fbfaf8 0%, #f4f7fa 100%);
}
.legal-callout__icon {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  background: var(--navy-800);
}
.legal-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}
.legal-callout p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-600);
}
.legal-callout a {
  color: var(--navy-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-callout--warn {
  border-color: rgba(245, 130, 32, 0.35);
  background:
    linear-gradient(135deg, rgba(245, 130, 32, 0.08), transparent 55%),
    linear-gradient(180deg, #fffaf5 0%, #f7f4ef 100%);
}
.legal-callout--warn .legal-callout__icon { background: var(--orange-500); }
.legal-callout--note {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-color: rgba(15, 35, 64, 0.12);
}

.legal-toc {
  display: none;
}
.legal-toc__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.legal-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: min(70vh, 36rem);
  overflow: auto;
  padding-right: 0.35rem;
}
.legal-toc__nav a {
  display: block;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--gray-600);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.legal-toc__nav a:hover {
  color: var(--navy-800);
  background: rgba(15, 35, 64, 0.04);
  border-left-color: var(--orange-500);
}

@media (min-width: 1025px) {
  .legal-page__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 3rem;
  }
  .legal-toc {
    display: block;
    position: sticky;
    top: 6.5rem;
  }
  .legal-page--disclaimer .legal-page__container {
    max-width: none;
  }
  .legal-page--disclaimer .legal-page__layout {
    max-width: 72rem;
    margin-inline: auto;
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  --page-hero-min: clamp(18rem, 38vw, 48rem);
  min-height: calc(var(--header-h) + var(--page-hero-min));
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 1.25rem clamp(3.5rem, 7vw, 5.5rem);
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 35, 64, 0.42) 0%, rgba(15, 35, 64, 0.58) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 28px rgba(15, 35, 64, 0.35);
}
.page-hero__subtitle {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 16px rgba(15, 35, 64, 0.35);
}

/* Prices page */
.prices-intro__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.prices-intro__lead {
  font-size: 1.0625rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 1.75rem;
}
.prices-note {
  display: flex; align-items: flex-start; gap: 0.875rem;
  background: #fff8ed; border: 1px solid rgba(245, 130, 32, 0.25);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  text-align: left; color: var(--navy-800);
}
.prices-note svg { flex-shrink: 0; color: var(--orange-500); margin-top: 0.1rem; }
.prices-note p { font-size: 0.9375rem; line-height: 1.55; margin: 0; }
.prices-note + .prices-note { margin-top: 0.85rem; }
.prices-note--deposit {
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.06), rgba(245, 130, 32, 0.1));
  border-color: rgba(26, 58, 92, 0.14);
}
.prices-note--deposit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}
.price-table__deposit {
  font-weight: 700;
  color: var(--orange-600);
  white-space: nowrap;
}

.prices-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-top: 2.5rem;
}
.prices-nav__link {
  padding: 0.625rem 1.25rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--gray-200);
  font-weight: 600; font-size: 0.875rem; color: var(--navy-800);
  transition: var(--transition);
}
.prices-nav__link:hover {
  border-color: var(--orange-500); color: var(--orange-500);
  box-shadow: var(--shadow-sm);
}

.price-program {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.price-program--reverse .price-program__media { order: 2; }
.price-program--reverse .price-program__body { order: 1; }

.price-program__media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-height: 640px;
}
.price-program__img {
  width: 100%; height: 100%; object-fit: cover;
}
.price-program__from {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: var(--radius-md); padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
}
.price-program__from-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600);
}
.price-program__from-value {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 700; color: var(--navy-800); line-height: 1.1;
}
.price-program__from-value--text {
  font-size: 1.35rem;
}
.price-enquire {
  margin: 1.25rem 0 0;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(15, 42, 68, 0.05);
  border: 1px solid rgba(15, 42, 68, 0.08);
}
.price-enquire__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
}
.price-enquire__desc {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.55;
}

.price-program__title {
  font-family: var(--font-display); font-size: clamp(1.625rem, 3vw, 2.125rem);
  color: var(--navy-800); margin-bottom: 1rem; line-height: 1.2;
}
.price-program__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.price-program__type {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--navy-800);
  color: var(--white);
}
.price-program__type--internship {
  background: var(--orange-500);
}
.price-program__dual-note {
  font-size: 0.875rem;
  color: var(--navy-700);
  background: rgba(26, 58, 92, 0.06);
  border-left: 3px solid var(--orange-500);
  padding: 0.75rem 1rem;
  margin: -0.5rem 0 1.25rem;
  line-height: 1.55;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.price-program__desc {
  color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.75;
}
.price-program__meta {
  display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 1.75rem;
}
.price-program__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--navy-700);
  background: var(--gray-100); border-radius: 999px; padding: 0.4rem 0.875rem;
}
.price-program__badge svg { color: var(--orange-500); flex-shrink: 0; }

.price-table-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.price-table {
  width: 100%; border-collapse: collapse; background: var(--white);
}
.price-table thead {
  background: var(--navy-800); color: var(--white);
}
.price-table th {
  padding: 0.875rem 1rem; text-align: left;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-table td {
  padding: 0.875rem 1rem; font-size: 0.9375rem;
  border-top: 1px solid var(--gray-200); color: var(--gray-800);
}
.price-table tbody tr:hover { background: var(--cream); }
.price-table__amount {
  font-weight: 700; color: var(--navy-800); font-family: var(--font-display);
}

.price-extra-week {
  margin-bottom: 1.75rem;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md);
  background: rgba(245, 130, 32, 0.08);
  border: 1px solid rgba(245, 130, 32, 0.22);
}
.price-extra-week__title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}
.price-extra-week__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.price-extra-week__rate {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.price-extra-week__amount {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--orange-500);
}
.price-extra-week__unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-700);
}

.price-program__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}
.price-program__cta,
.price-program__learn {
  min-width: 9.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.price-program__cta {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}
.price-program__cta:hover {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-md);
}
.price-program__learn {
  background: var(--white);
}

/* Price booking modal */
body.is-modal-open { overflow: hidden; }

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) 1rem max(0.75rem, env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.price-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.price-modal[hidden] {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}
.price-modal:not([hidden]) {
  display: flex;
}

.price-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 35, 64, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.price-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 980px);
  max-height: calc(100vh - 1.5rem);
  max-height: calc(100dvh - 1.5rem);
  margin-block: auto;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}
.price-modal.is-open .price-modal__dialog {
  transform: translateY(0) scale(1);
}

.price-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 2px rgba(15, 35, 64, 0.06),
    0 6px 16px rgba(15, 35, 64, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.price-modal__close:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
  box-shadow:
    0 2px 4px rgba(15, 35, 64, 0.1),
    0 8px 20px rgba(15, 35, 64, 0.18);
}

.price-modal__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.price-modal__info {
  padding: 2rem 1.75rem 2rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-right: 1px solid var(--gray-200);
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.price-modal__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 16/10;
}
.price-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-modal__categories {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: calc(100% - 1.75rem);
}
.price-modal__category {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--navy-800);
  color: var(--white);
}
.price-modal__category--internship {
  background: var(--orange-500);
}

.price-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--navy-800);
  margin-bottom: 0.35rem;
  line-height: 1.2;
  padding-right: 2.5rem;
}
.price-modal__tagline {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--orange-500);
  margin-bottom: 0.75rem;
}
.price-modal__summary {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.price-modal__includes-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 0.625rem;
}
.price-modal__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.price-modal__highlights li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: var(--gray-800);
  line-height: 1.45;
}
.price-modal__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}

.price-modal__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.price-modal__fact {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}
.price-modal__fact dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.price-modal__fact dd {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-800);
}

.price-modal__info-cta {
  display: none;
  margin-top: 1.25rem;
}

.price-modal__form-panel {
  padding: 2rem 2rem 2rem 1.75rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.price-modal__form-header {
  margin-bottom: 1.25rem;
}
.price-modal__form-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}
.price-modal__form-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}
.price-modal__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.price-modal__form .form-group { margin-bottom: 1rem; }
.price-modal__form .form-hint { margin-top: 0.2rem; margin-bottom: 0; line-height: 1.4; }

.price-modal__split-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
  align-items: start;
}
.price-modal__split-row .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.price-modal__split-row .form-group > label {
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.4rem;
}

.price-modal__input-wrap {
  position: relative;
}
.price-modal__input-wrap input {
  width: 100%;
  padding-right: 2.75rem;
  cursor: pointer;
}
.price-modal__input-wrap--time .price-modal__time-picker {
  width: 100%;
  padding-right: 2.75rem;
}
.price-modal__input-wrap {
  cursor: pointer;
}
.price-modal__input-wrap.is-open input,
.price-modal__input-wrap:focus-within input {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.price-modal__input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.price-modal__time-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: calc(0.75rem * 2 + 1.25rem + 3px);
  padding: 0 0 0 0.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.price-modal__input-wrap--time:focus-within .price-modal__time-picker {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.price-modal__time-picker.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.price-modal__time-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-modal__time-field:first-of-type {
  border-right: 1px solid var(--gray-200);
}
.price-modal__time-field select {
  width: 100%;
  padding: 0.75rem 0.25rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--navy-800);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
  text-align: center;
  line-height: 1.25;
  height: auto;
}
.price-modal__time-field select:focus {
  outline: none;
  box-shadow: none;
}
.price-modal__time-sep {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  line-height: 1;
  flex-shrink: 0;
  padding: 0 0.15rem;
  user-select: none;
}

.price-modal__form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%2394a3b8' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.price-modal__consent-group .form-error {
  margin-top: 0.5rem;
}
.price-modal__consent {
  position: relative;
  display: flex !important;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  margin-bottom: 0 !important;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 0.8125rem !important;
  color: var(--gray-600) !important;
  line-height: 1.55;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.price-modal__consent:hover {
  border-color: var(--gray-400);
}
.price-modal__consent:has(.price-modal__consent-input:checked) {
  border-color: var(--navy-600);
  background: rgba(26, 58, 92, 0.04);
}
.price-modal__consent.is-invalid {
  border-color: var(--error);
  background: rgba(220, 38, 38, 0.04);
}
.price-modal__consent.is-valid {
  border-color: var(--success);
  background: rgba(22, 163, 74, 0.04);
}
.price-modal__time-picker.is-valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.price-modal__time-picker.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.price-modal__form .form-group input.is-valid,
.price-modal__form .form-group select.is-valid,
.price-modal__form .form-group textarea.is-valid {
  border-color: var(--success);
}
.price-modal__form .form-group input.is-invalid,
.price-modal__form .form-group select.is-invalid {
  border-color: var(--error);
}
.price-modal__input-wrap:has(input.is-valid) input {
  border-color: var(--success);
}
.price-modal__input-wrap:has(input.is-invalid) input {
  border-color: var(--error);
}
.price-modal__input-wrap:has(input.is-valid) {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
  border-radius: var(--radius-sm);
}
.price-modal__input-wrap:has(input.is-invalid) {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-sm);
}
.price-modal__consent-input {
  position: absolute;
  top: 1rem;
  left: 1.125rem;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  clip: auto;
  overflow: visible;
  white-space: nowrap;
  border: 0;
}
.price-modal__consent-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 0.1rem;
  border: 2px solid var(--gray-400);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  pointer-events: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.price-modal__consent-input:checked + .price-modal__consent-box {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}
.price-modal__consent-input:focus-visible + .price-modal__consent-box {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}
.price-modal__consent-text {
  flex: 1;
  min-width: 0;
}

.price-modal__note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-align: center;
}

.price-modal__booking-step[hidden] {
  display: none !important;
}
.price-modal__booking-success {
  text-align: center;
  padding: 2rem 0.5rem;
}
.price-modal__booking-success .price-modal__form-title {
  margin-bottom: 0.75rem;
}
.price-modal__booking-success .form-success__icon {
  margin: 0 auto 1.25rem;
}

.prices-included {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem 2rem;
  max-width: 900px; margin-inline: auto;
}
.prices-included li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; color: rgba(255,255,255,0.9);
}
.prices-included li span:first-child {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(245, 130, 32, 0.2); color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}

/* Project detail */
.project-detail { padding: 4rem 0; }
.project-detail__grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 3rem;
}
.project-detail__content h2 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--navy-800); margin: 2rem 0 1rem;
}
.project-detail__content p { color: var(--gray-600); margin-bottom: 1rem; }
.project-detail__sidebar {
  position: sticky; top: calc(var(--header-h) + 2rem);
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-md); height: fit-content;
}
.project-detail__price {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 700; color: var(--navy-800);
  margin-bottom: 1rem;
}
.project-detail__price-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.project-detail__facts-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-900);
}
.project-detail__facts {
  margin: 0 0 1.25rem;
}
.project-detail__fact {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.project-detail__fact:first-child {
  padding-top: 0;
}
.project-detail__fact dt {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
}
.project-detail__fact dd {
  margin: 0;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-800);
}
.project-detail__rates {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.project-detail__rates th,
.project-detail__rates td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
}
.project-detail__rates th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.project-detail__rates td:last-child {
  font-weight: 700;
  color: var(--navy-800);
  text-align: right;
}
.project-detail__sidebar .price-extra-week {
  margin-bottom: 1.25rem;
}
.project-detail__meta { margin: 1.5rem 0; }
.project-detail__meta dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); }
.project-detail__meta dd { font-weight: 600; color: var(--navy-800); margin-bottom: 0.75rem; }

/* Project section nav */
.project-section-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 2.5rem;
  padding: 0.375rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  width: fit-content;
  max-width: 100%;
}
.project-section-nav__link {
  display: inline-block;
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.project-section-nav__link:hover {
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.7);
}

/* Project content blocks */
.project-block {
  margin-bottom: 3.5rem;
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
.project-block__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.5rem;
}
.project-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--navy-800);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.project-block__intro {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: -0.5rem 0 1.5rem;
  max-width: 42rem;
}
.project-block__body p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.project-block__body p:last-child { margin-bottom: 0; }

/* What to expect cards */
.project-expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.project-expect-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.project-expect-card:hover {
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.project-expect-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: rgba(245, 130, 32, 0.12);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.project-expect-card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
.project-expect-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 0.5rem;
}
.project-expect-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.project-expect-card__text:last-child { margin-bottom: 0; }
.project-expect-grid--stack {
  grid-template-columns: 1fr;
}
.project-check-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.project-check-list li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: var(--navy-800);
  font-size: 1rem;
  line-height: 1.55;
}
.project-check-list li::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23f58220'/%3E%3Cpath d='M5.8 10.2l2.6 2.6 5.8-5.8' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.project-block__body .project-check-list:last-child { margin-bottom: 0; }

/* Project read-more (collapsed content between overview & inclusions) */
.project-readmore {
  position: relative;
  margin-bottom: 3.5rem;
}
.project-readmore__panel {
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-readmore:not(.is-expanded) .project-readmore__panel {
  max-height: 26rem;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0.25) 92%, transparent 100%);
}
.project-readmore:not(.is-expanded) .project-readmore__panel .project-block:first-child {
  margin-bottom: 0;
}
.project-readmore.is-expanded .project-readmore__panel {
  max-height: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.project-readmore__overlay {
  position: absolute;
  inset: auto 0 0;
  height: min(11rem, 48%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1rem 1.75rem;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 242, 0) 0%,
    rgba(250, 247, 242, 0.18) 35%,
    rgba(250, 247, 242, 0.55) 72%,
    rgba(250, 247, 242, 0.78) 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2;
}
.project-readmore.is-expanded .project-readmore__overlay {
  opacity: 0;
  visibility: hidden;
}
.project-readmore__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 10.5rem;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(245, 130, 32, 0.28), 0 2px 8px rgba(26, 43, 74, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-readmore__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 130, 32, 0.34), 0 4px 12px rgba(26, 43, 74, 0.1);
}
.project-readmore__btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}
.project-readmore.is-expanded .project-readmore__btn svg {
  transform: rotate(180deg);
}

/* Itinerary timeline */
.project-itinerary {
  position: relative;
  padding-left: 1.75rem;
}
.project-itinerary::before {
  content: '';
  position: absolute;
  left: 0.4375rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange-400), var(--gray-200));
  border-radius: 1px;
}
.project-itinerary__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
}
.project-itinerary__step:last-child { padding-bottom: 0; }
.project-itinerary__marker {
  position: relative;
  z-index: 1;
}
.project-itinerary__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange-500);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px var(--white);
}
.project-itinerary__content {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.project-itinerary__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 0.75rem;
}
.project-itinerary__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.project-itinerary__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 0.375rem;
}
.project-itinerary__list li:last-child { margin-bottom: 0; }
.project-itinerary__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-400);
}

/* What's included grid */
.project-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.project-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--navy-800);
  line-height: 1.5;
}
.project-included-item__check {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.project-included-item__check svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Project gallery */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.project-gallery__item {
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

/* Trip overview carousel */
.project-trip {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
.project-trip--below {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
}
.project-trip--below .project-trip__slide {
  flex: 0 0 min(380px, 78vw);
}
.project-trip--inline {
  margin-bottom: 3rem;
  padding: 0;
  background: transparent;
  border: none;
}
.project-trip--inline .project-trip__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 1.5rem;
}
.project-trip--inline .project-trip__slide {
  flex: 0 0 min(340px, 88%);
}
.project-trip__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1.75rem;
}
.project-trip__viewport {
  overflow: hidden;
  margin-inline: -0.25rem;
  padding-inline: 0.25rem;
}
.project-trip__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.project-trip__track::-webkit-scrollbar { display: none; }
.project-trip__slide {
  flex: 0 0 min(400px, 82vw);
  scroll-snap-align: start;
}
.project-trip__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  background-color: var(--cream-dark);
  background-size: cover;
  background-position: center;
  margin-bottom: 1.125rem;
  box-shadow: var(--shadow-md);
}
.project-trip__slide-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.project-trip__slide-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
  max-width: 38ch;
}
.project-trip__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.project-trip__nav {
  display: flex;
  gap: 0.625rem;
}
.project-trip__arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.project-trip__arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}
.project-trip__arrow:hover:not(:disabled) {
  border-color: var(--orange-500);
  color: var(--orange-500);
}
.project-trip__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.project-trip__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.project-detail__actions {
  margin-bottom: 3rem;
}
.project-detail__actions--below-trip {
  margin-top: 1.75rem;
  margin-bottom: 0;
}
.project-detail__itinerary-btn {
  min-width: 11rem;
}

/* Inclusions preview (main column) */
.project-block--included {
  margin-bottom: 3rem;
}
.project-included-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 1.75rem;
  line-height: 1.2;
}
.project-inclusions-preview--main {
  margin: 0;
  padding: 0;
  border: none;
}
.project-inclusions-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.project-inclusions-preview--main .project-inclusions-preview__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.project-inclusions-preview--main .project-inclusions-preview__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--navy-800);
  margin-top: 0.125rem;
}
.project-inclusions-preview--main .project-inclusions-preview__body {
  min-width: 0;
}
.project-inclusions-preview--main .project-inclusions-preview__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 0.375rem;
  line-height: 1.35;
}
.project-inclusions-preview--main .project-inclusions-preview__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.project-inclusions-preview--main .project-inclusions-preview__btn {
  width: 100%;
  max-width: 20rem;
  padding: 0.9375rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(245, 130, 32, 0.3);
}
.project-inclusions-preview--main .project-inclusions-preview__btn:hover {
  transform: translateY(-1px);
}
.project-inclusions-preview__item {
  display: flex;
  gap: 0.875rem;
}
.project-inclusions-preview__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--navy-800);
}
.project-inclusions-preview__icon svg {
  width: 100%;
  height: 100%;
}
.project-inclusions-preview__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.25rem;
  line-height: 1.35;
}
.project-inclusions-preview__text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* Project panel modals */
.project-panel-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.project-panel-modal[hidden] {
  display: none !important;
}
.project-panel-modal:not([hidden]) {
  display: flex;
}
.project-panel-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.project-panel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 64, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.project-panel-modal__dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(88vh, 900px);
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}
.project-panel-modal.is-open .project-panel-modal__dialog {
  transform: translateY(0) scale(1);
}
.project-panel-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: var(--gray-600);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.project-panel-modal__close:hover {
  background: rgba(15, 35, 64, 0.08);
  color: var(--navy-800);
}
.project-panel-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 2rem 0.25rem 0;
}
.project-panel-modal__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin: 0 0 1.5rem;
}
.project-itinerary--modal {
  padding-left: 0;
}
.project-itinerary--modal::before {
  left: 0.4375rem;
}

/* Inclusions grid inside panel modal */
.inclusions-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}
.inclusions-modal__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.inclusions-modal__icon {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  color: var(--orange-500);
}
.inclusions-modal__icon svg {
  width: 100%;
  height: 100%;
}
.inclusions-modal__item-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.375rem;
  line-height: 1.35;
}
.inclusions-modal__item-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.form-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 130, 32, 0.06), transparent 42%),
    radial-gradient(circle at 88% 100%, rgba(26, 58, 92, 0.05), transparent 38%),
    var(--cream);
}
.form-section__intro {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.form-section__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.form-section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}
.form-section__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
}
.form-card {
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  max-width: 44rem;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid > .form-group {
  margin-bottom: 0;
}
.form-subsection {
  margin-top: 0.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(26, 58, 92, 0.1);
}
.form-subsection__head {
  margin: 0 0 0.15rem;
}
.form-subsection__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-900);
}
.form-subsection__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-600);
}
.price-modal__form .form-subsection {
  margin-top: 0.15rem;
  padding-top: 0.85rem;
}
.price-modal__form .form-subsection__title {
  font-size: 1.05rem;
}
.form-split-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.form-split-row .form-group {
  margin-bottom: 0;
}
.form-split-row .form-group > label {
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
}
.form-group { margin-bottom: 1.25rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--navy-800); margin-bottom: 0.4rem;
}
.form-group label .required { color: var(--error); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.form-group input.is-valid { border-color: var(--success); }
.form-group input.is-invalid, .form-group select.is-invalid, .form-group textarea.is-invalid {
  border-color: var(--error);
}
.form-group input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12); }
.form-error {
  font-size: 0.8125rem; color: var(--error);
  margin-top: 0.35rem; min-height: 1.2em;
}
.form-hint { font-size: 0.8125rem; color: var(--gray-400); margin-top: 0.25rem; }

.form-label-like {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.55rem;
}
.form-label-like .required { color: var(--error); }

.form-placement-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.form-placement-type__option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-placement-type__option:hover {
  border-color: var(--navy-400);
}
.form-placement-type__option:has(input:checked) {
  border-color: var(--navy-600);
  background: rgba(26, 58, 92, 0.04);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}
.form-placement-type__option input {
  width: auto;
  margin: 0;
  accent-color: var(--navy-700);
}
.form-placement-type.is-invalid .form-placement-type__option {
  border-color: var(--error);
}

@media (max-width: 640px) {
  .form-placement-type {
    grid-template-columns: 1fr;
  }
}

/* Shared date / time controls (booking + prices modal) */
.form-input-wrap,
.price-modal__input-wrap {
  position: relative;
  cursor: pointer;
}
.form-input-wrap input,
.price-modal__input-wrap input {
  width: 100%;
  padding-right: 2.75rem;
  cursor: pointer;
}
.form-input-wrap--time .form-time-picker,
.price-modal__input-wrap--time .price-modal__time-picker {
  width: 100%;
  padding-right: 2.75rem;
}
.form-input-wrap.is-open input,
.form-input-wrap:focus-within input,
.price-modal__input-wrap.is-open input,
.price-modal__input-wrap:focus-within input {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.form-input-icon,
.price-modal__input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.form-time-picker,
.price-modal__time-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: calc(0.75rem * 2 + 1.25rem + 3px);
  padding: 0 0 0 0.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.form-input-wrap--time:focus-within .form-time-picker,
.price-modal__input-wrap--time:focus-within .price-modal__time-picker {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.form-time-picker.is-invalid,
.price-modal__time-picker.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-time-picker.is-valid,
.price-modal__time-picker.is-valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.form-time-field,
.price-modal__time-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-time-field:first-of-type,
.price-modal__time-field:first-of-type {
  border-right: 1px solid var(--gray-200);
}
.form-time-field select,
.price-modal__time-field select {
  width: 100%;
  padding: 0.75rem 0.25rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--navy-800);
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.form-time-field select:focus,
.price-modal__time-field select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.form-time-sep,
.price-modal__time-sep {
  flex-shrink: 0;
  padding: 0 0.15rem;
  font-weight: 700;
  color: var(--navy-800);
}

.form-consent {
  position: relative;
  display: flex !important;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  margin-bottom: 0 !important;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 0.8125rem !important;
  color: var(--gray-600) !important;
  line-height: 1.55;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.form-consent:hover { border-color: var(--gray-400); }
.form-consent:has(.form-consent__input:checked) {
  border-color: var(--navy-600);
  background: rgba(26, 58, 92, 0.04);
}
.form-consent__input {
  position: absolute;
  top: 1rem;
  left: 1.125rem;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  border: 0;
}
.form-consent__box {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  pointer-events: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.form-consent:has(.form-consent__input:checked) .form-consent__box {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}
.form-consent__text { flex: 1; }

.booking-quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.06), rgba(245, 130, 32, 0.08));
  border: 1px solid rgba(26, 58, 92, 0.1);
}
.booking-quote[hidden] { display: none !important; }
.booking-quote + .btn,
.booking-quote + button[type="submit"] {
  margin-top: 1.25rem;
}
.booking-quote--pay {
  margin-bottom: 1.25rem;
}
.booking-quote__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 0.2rem;
}
.booking-quote__note {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.4;
  max-width: 40rem;
}
.booking-quote__breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}
.booking-quote__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.booking-quote__row strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  white-space: nowrap;
}
.booking-quote__row--deposit {
  padding: 0.55rem 0.7rem;
  margin: 0.15rem -0.15rem;
  border-radius: 10px;
  background: rgba(245, 130, 32, 0.12);
  color: var(--navy-800);
  font-weight: 600;
}
.booking-quote__row--deposit strong {
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  color: var(--orange-600);
}
.booking-quote__row--balance strong {
  font-size: 0.98rem;
  color: var(--gray-700);
}
.booking-quote__amount {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--orange-600);
  white-space: nowrap;
}

/* Time picker selects — inherit .form-group select styles unless reset here */
.form-time-picker .form-time-field select,
.price-modal__form .price-modal__time-picker .price-modal__time-field select {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  padding: 0.75rem 0.25rem;
}
.form-time-picker .form-time-field select:focus,
.price-modal__form .price-modal__time-picker .price-modal__time-field select:focus {
  border: none;
  box-shadow: none;
}
.form-group .form-time-field select.is-valid,
.form-group .form-time-field select.is-invalid,
.price-modal__form .form-group .price-modal__time-field select.is-valid,
.price-modal__form .form-group .price-modal__time-field select.is-invalid {
  border: none;
  box-shadow: none;
}

/* Challenge captcha */
.challenge-box {
  background: var(--gray-100); border-radius: var(--radius-md);
  padding: 1.25rem; display: flex; align-items: center; gap: 1rem;
}
.challenge-box__question {
  font-weight: 600; color: var(--navy-800); white-space: nowrap;
}
.challenge-box input { max-width: 80px; text-align: center; font-weight: 700; }
.challenge-box__refresh {
  background: none; border: none; cursor: pointer;
  color: var(--gray-600); padding: 0.25rem; transition: color 0.2s;
}
.challenge-box__refresh:hover { color: var(--orange-500); }

/* PayPal */
.paypal-container {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.paypal-container.is-hidden { display: none; }

.form-success {
  text-align: center; padding: 3rem;
}
.form-success__icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  background: var(--success); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}

/* Contact */
.contact-main {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 130, 32, 0.05), transparent 40%),
    radial-gradient(circle at 92% 100%, rgba(26, 58, 92, 0.04), transparent 36%),
    var(--cream);
}
.contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-aside__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.contact-aside__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.contact-aside:hover .contact-aside__media img {
  transform: scale(1.04);
}
.contact-aside__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.35rem 1.35rem;
  background: linear-gradient(to top, rgba(15, 35, 64, 0.88) 0%, rgba(15, 35, 64, 0.35) 65%, transparent 100%);
  color: var(--white);
}
.contact-aside__caption span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 0.25rem;
}
.contact-aside__caption strong {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
a.contact-channel:hover {
  border-color: rgba(245, 130, 32, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.contact-channel__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--orange-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.contact-channel__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.contact-channel__value {
  font-weight: 600;
  color: var(--navy-800);
  word-break: break-word;
}
.contact-channel__meta {
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.contact-aside__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 0.25rem;
}
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.contact-form-panel__intro {
  margin-bottom: 1.75rem;
}
.contact-form-panel__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.5rem;
}
.contact-form-panel__intro p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.9875rem;
}
.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}
.contact-form__success {
  padding: 2rem 0 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
}
.contact-info__item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-info__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy-800); color: var(--orange-400);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

/* About page — mobile first redesign */
.page-about {
  background: var(--white);
}
.about-top {
  padding: calc(var(--header-h) + clamp(1.25rem, 3vw, 2.25rem)) 0 clamp(2rem, 5vw, 3.5rem);
  background: var(--white);
}
.about-top__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.about-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
}
.about-crumbs a {
  color: var(--navy-800);
}
.about-crumbs a:hover {
  color: var(--orange-500);
}
.about-top__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  max-width: 12ch;
}
.about-top__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.about-top__media {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
  width: 100%;
}
.about-top__figure {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(1.25rem, 4vw, 2rem);
  background: var(--gray-200);
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.about-top__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-seal {
  position: absolute;
  left: -0.35rem;
  bottom: -0.85rem;
  width: clamp(6.5rem, 22vw, 8.75rem);
  height: clamp(6.5rem, 22vw, 8.75rem);
  z-index: 2;
}
.about-seal__ring {
  width: 100%;
  height: 100%;
  display: block;
  animation: aboutSealSpin 24s linear infinite;
}
.about-seal__core {
  position: absolute;
  inset: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--orange-500);
  pointer-events: none;
}
.about-seal__arrow {
  display: block;
  width: clamp(1.35rem, 3.8vw, 1.75rem);
  height: clamp(1.35rem, 3.8vw, 1.75rem);
}
@keyframes aboutSealSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .about-seal__ring { animation: none; }
}

.about-summary {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 130, 32, 0.07), transparent 42%),
    radial-gradient(circle at 88% 100%, rgba(26, 58, 92, 0.06), transparent 38%),
    var(--cream);
}
.about-summary__intro {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.about-summary__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.about-summary__text {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--navy-800);
  font-weight: 500;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 2.75rem);
}
.about-stats__card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1rem 1.25rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-stats__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
}
@media (hover: hover) and (pointer: fine) {
  .about-stats__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}
.about-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.12);
  color: var(--orange-500);
}
.about-stats__number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange-500);
}
.about-stats__label {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-800);
}

.about-split {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--white);
}
.about-split--alt {
  background: var(--cream);
}
.about-split__row {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.about-split__copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.12;
  color: var(--navy-900);
}
.about-split__copy > p {
  margin: 0 0 1.35rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 1.02rem;
}
.about-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.about-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.5;
}
.about-check__icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: inline-flex;
}
.about-check__circle {
  fill: var(--orange-500);
}
.about-check__mark {
  stroke: var(--white);
}

.about-collage {
  --r-main: clamp(1.5rem, 4vw, 2.25rem);
  --r-inset: calc(var(--r-main) * 0.82);
  --inset-w: 40%;
  --inset-h: 56%;
  --inset-top: 22%;
  --inset-gap: 0.85rem;
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  filter: drop-shadow(0 22px 48px rgba(15, 35, 64, 0.14));
}
.about-collage__main {
  position: absolute;
  inset: 0;
  border-radius: var(--r-main);
  overflow: hidden;
  background: var(--gray-200);
}
.about-collage__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-collage__card {
  display: none;
}
.about-collage__inset {
  position: absolute;
  right: 0;
  top: calc(var(--inset-top) + var(--inset-gap));
  width: var(--inset-w);
  height: calc(var(--inset-h) - (var(--inset-gap) * 2));
  z-index: 2;
  box-sizing: border-box;
  display: none;
  overflow: hidden;
  border-radius: var(--r-inset);
  background: transparent;
  box-shadow: 0 16px 36px rgba(15, 35, 64, 0.18);
}
.about-collage__inset img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  background: var(--gray-200);
}
.about-collage--flip .about-collage__inset {
  right: auto;
  left: 0;
}
.about-portrait {
  --frame-pad: 0.45rem;
  --frame-r: clamp(1.25rem, 4vw, 1.75rem);
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  padding: var(--frame-pad);
  border-radius: var(--frame-r);
  background: var(--white);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-portrait::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 8% 10% -6% -6%;
  border-radius: inherit;
  background: var(--gray-200);
  opacity: 0.85;
}
.about-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: calc(var(--frame-r) - var(--frame-pad));
  background: var(--gray-200);
}

.about-process {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--white);
}
.about-process__header {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.about-process__header h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy-900);
  line-height: 1.12;
}
.about-process__header p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}
.about-process__stage {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.25rem, 4vw, 2rem);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}
.about-process__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-process__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(3.75rem, 12vw, 5rem);
  height: clamp(3.75rem, 12vw, 5rem);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.about-process__play:hover {
  background: var(--orange-400);
  transform: translate(-50%, -50%) scale(1.05);
}
.about-process__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin: 0 0 0 0.18rem;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent currentColor;
}
.about-process__stage.is-playing .about-process__play {
  display: none;
}

.about-team {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--cream);
}
.about-team__header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  justify-items: center;
}
.about-team__header h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy-900);
  line-height: 1.12;
  max-width: 22ch;
}
.about-team__header p {
  margin: 0 auto;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 34rem;
}
.about-team__header .btn {
  justify-self: center;
}
.about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-content: center;
  margin-inline: auto;
  width: 100%;
  max-width: 22rem;
}
.about-person {
  text-align: center;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}
.about-person h3 {
  margin: 1rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-900);
}
.about-person > p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
}
.about-person__media {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.25rem, 3vw, 1.65rem);
  background: var(--gray-200);
  aspect-ratio: 4 / 5;
}
.about-person__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.55s ease;
}
.about-person:hover .about-person__media img {
  transform: scale(1.04);
}
.about-person__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 130, 32, 0.28), transparent 48%),
    linear-gradient(165deg, #1a3a5c 0%, #0f2340 100%);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 5rem);
  font-weight: 700;
}
.about-person__social {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 24px rgba(15, 35, 64, 0.14);
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .about-person__social {
    opacity: 0;
    transform: translateX(-50%) translateY(0.35rem);
  }
  .about-person:hover .about-person__social,
  .about-person:focus-within .about-person__social {
    opacity: 1;
    transform: translateX(-50%);
  }
}
.about-person__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy-800);
  box-shadow: none;
}
.about-person__social a:hover {
  background: var(--orange-500);
  color: var(--white);
}
@media (prefers-reduced-motion: reduce) {
  .about-person:hover .about-person__media img { transform: none; }
}

.about-reviews {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--white);
}
.about-reviews__header {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.about-reviews__header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy-900);
  line-height: 1.12;
}
.about-reviews__header p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.65;
}
.about-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.about-review {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.35rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.about-review blockquote {
  margin: 0 0 1.25rem;
}
.about-review blockquote p {
  margin: 0;
  color: var(--navy-800);
  line-height: 1.65;
}
.about-review footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-review footer > span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.about-review cite {
  display: grid;
  gap: 0.1rem;
  font-style: normal;
}
.about-review cite strong {
  color: var(--navy-900);
  font-size: 0.95rem;
}
.about-review cite em {
  color: var(--gray-600);
  font-size: 0.8125rem;
  font-style: normal;
}

.about-cta {
  display: none;
}

@media (min-width: 640px) {
  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 44rem;
    gap: 1.75rem;
  }
  .about-person {
    max-width: none;
    margin-inline: 0;
  }
  .about-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .about-collage {
    min-height: 0;
    max-width: none;
    aspect-ratio: 1 / 1.05;
  }
  .about-collage__main {
    overflow: visible;
    /* C-notch: equal 22% arms, cutout aligned to the 40% inset */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 420' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M36 0h328a36 36 0 0 1 36 36v56H240a28 28 0 0 0-28 28v180a28 28 0 0 0 28 28h160v56a36 36 0 0 1-36 36H36a36 36 0 0 1-36-36V36A36 36 0 0 1 36 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 420' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M36 0h328a36 36 0 0 1 36 36v56H240a28 28 0 0 0-28 28v180a28 28 0 0 0 28 28h160v56a36 36 0 0 1-36 36H36a36 36 0 0 1-36-36V36A36 36 0 0 1 36 0z'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
  .about-collage__card {
    display: none;
  }
  .about-collage__inset {
    display: grid;
  }
  .about-collage--flip .about-collage__main {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 420' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M36 0h328a36 36 0 0 1 36 36v348a36 36 0 0 1-36 36H36a36 36 0 0 1-36-36v-56h160a28 28 0 0 0 28-28v-180a28 28 0 0 0-28-28H0V36A36 36 0 0 1 36 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 420' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M36 0h328a36 36 0 0 1 36 36v348a36 36 0 0 1-36 36H36a36 36 0 0 1-36-36v-56h160a28 28 0 0 0 28-28v-180a28 28 0 0 0-28-28H0V36A36 36 0 0 1 36 0z'/%3E%3C/svg%3E");
  }
  .about-team__header {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .about-team__header .btn {
    justify-self: center;
  }
}

@media (min-width: 1025px) {
  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .about-stats__card {
    padding: 1.65rem 1.15rem 1.45rem;
  }
}

@media (min-width: 1025px) {
  .about-top__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
  .about-top__media {
    margin-inline: 0;
    max-width: none;
  }
  .about-seal {
    left: -1.25rem;
    bottom: -1.1rem;
  }
  .about-split__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .about-split__row--reverse .about-split__copy {
    order: 1;
  }
  .about-split__row--reverse .about-portrait,
  .about-split__row--reverse .about-collage {
    order: 2;
  }
  .about-portrait {
    margin-inline: 0;
    max-width: none;
  }
  .about-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 48rem;
    gap: 2.5rem;
  }
}

/* How-it-works / shared timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.timeline__item { position: relative; padding-bottom: 2rem; }
.timeline__item::before {
  content: ''; position: absolute; left: -2rem; top: 0.35rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange-500); transform: translateX(-5px);
}
.timeline__year { font-weight: 700; color: var(--orange-500); font-size: 0.875rem; }
.timeline__title { font-weight: 600; color: var(--navy-800); margin: 0.25rem 0; }
.timeline__text { font-size: 0.875rem; color: var(--gray-600); }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  margin-top: auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.9fr)) minmax(0, 1.1fr);
  gap: 2rem 2.5rem;
  padding-block: 3rem 2rem;
  align-items: start;
  justify-items: stretch;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: 17.5rem;
  padding-top: 0.15rem;
}
.site-footer__brand img {
  height: 120px;
  width: auto;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  filter: brightness(0) invert(1);
}
.site-footer__brand p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  max-width: 14.5rem;
}
.site-footer__col,
.site-footer__newsletter,
.site-footer__panel {
  width: 100%;
  max-width: none;
  min-width: 0;
}
.site-footer__toggle {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 1rem;
  border: none;
  background: none;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: default;
  pointer-events: none;
}
.site-footer__chevron {
  display: none;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.25s ease;
}
.site-footer__panel-body {
  display: block;
}
.site-footer__col h4,
.site-footer__newsletter h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.site-footer__newsletter h4,
.site-footer__toggle {
  padding-bottom: 0.45rem;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.85);
  width: fit-content;
  min-width: 3.75rem;
}
.site-footer__col ul,
.site-footer__panel-body > ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}
.site-footer__col a,
.site-footer__contact li,
.site-footer__panel a,
.site-footer__panel .site-footer__contact li {
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s;
}
.site-footer__col a:hover,
.site-footer__panel a:hover {
  color: var(--orange-400);
}

/* Newsletter (footer) */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 15.5rem;
}
.newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.newsletter-fields[hidden] {
  display: none !important;
}
.newsletter-input {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.8rem;
  border-radius: 4px;
  background: var(--white);
  border: none;
  color: var(--navy-800);
  outline: none;
  font-size: 0.875rem;
  box-sizing: border-box;
}
.newsletter-input::placeholder { color: var(--gray-400); }
.newsletter-input:focus {
  box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.4);
}
.newsletter-input.is-invalid { color: var(--error); }

.newsletter-submit {
  width: 100%;
  height: 2.5rem;
  border: none;
  border-radius: 4px;
  background: var(--orange-500);
  color: var(--white);
  padding: 0 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.newsletter-submit:hover:not(:disabled) {
  background: var(--orange-600);
}
.newsletter-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.newsletter-submit.is-loading { opacity: 0.75; }

.newsletter-error {
  color: rgba(255, 180, 180, 0.95);
  font-size: 0.75rem;
  line-height: 1.35;
}
.newsletter-error:empty {
  display: none;
}

.newsletter-success {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter-success:not([hidden]) {
  margin-top: 0.65rem;
}
.newsletter-success[hidden] {
  display: none !important;
}
.newsletter-success__text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}
.newsletter-success__badge {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-success-timer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(15, 35, 64, 0.1);
  pointer-events: none;
  z-index: 1;
}
.newsletter-success .form-success-timer {
  background: rgba(255, 255, 255, 0.14);
}
.form-success-timer__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--success);
  transform-origin: right center;
  transform: scaleX(1);
}
.form-success-timer.is-running .form-success-timer__bar {
  animation: mea-success-timer-shrink linear forwards;
}
@keyframes mea-success-timer-shrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

.site-footer__social-bar {
  display: flex;
  justify-content: center;
  padding-block: 0.25rem 1.25rem;
}
.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.site-footer__social a:hover {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-1px);
}
.site-footer__social a svg {
  width: 16px;
  height: 16px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1.25rem;
  padding-block: 1.15rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__copyright {
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
  order: 1;
}
.site-footer__credit {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
  white-space: nowrap;
  order: 2;
  margin-right: auto;
}
.site-footer__credit a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__credit a:hover {
  color: var(--orange-400);
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0;
  margin-left: 0;
  flex-shrink: 0;
  order: 3;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s;
}
.site-footer__legal a:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 0.75rem;
  margin: 0 0.85rem;
  background: rgba(255, 255, 255, 0.35);
  vertical-align: middle;
  transform: translateY(-0.05em);
}
.site-footer__legal a:hover {
  color: var(--orange-400);
}

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Legal copy must always be readable (never stuck invisible). */
.legal-page .reveal,
.legal-page .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  html { font-size: 100%; }
  :root { --header-h: 80px; }

  /* Tablet + phone: offcanvas nav */
  .nav-toggle { display: flex; z-index: 1004; position: relative; }
  .site-header { z-index: 1004; }
  .site-header__tools { z-index: 1005; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100%, 22.5rem);
    max-width: 100%;
    height: auto;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.75rem 1.25rem 2rem;
    transform: translateX(105%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1003;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    box-shadow: -12px 0 40px rgba(15, 35, 64, 0.14);
  }
  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .site-nav__top {
    display: block;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
  }
  .site-nav__label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
  }
  .site-nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
  }
  .site-nav__item,
  .site-nav__item--mega { width: 100%; }
  .site-nav__link {
    color: var(--navy-800) !important;
    padding: 0.8rem 0.2rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
  }
  .site-nav__item--mega > .site-nav__link {
    border-bottom: 1px solid var(--gray-200);
  }
  .site-nav__trigger .site-nav__chevron {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    display: block;
    transform: rotate(-90deg);
    transition: transform 0.25s ease;
  }
  .site-nav__item--mega.is-mega-expanded > .site-nav__link {
    border-bottom: none;
  }
  .site-nav__item--mega.is-mega-expanded .site-nav__chevron {
    transform: rotate(0deg);
  }
  .site-nav__actions {
    flex-direction: column;
    width: 100%;
    margin-top: 1.25rem;
    padding-top: 0;
    border-top: none;
    gap: 0.85rem;
  }
  .site-nav__cta { width: 100%; justify-content: center; }
  .mega-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin: 0 0 0.5rem;
    animation: none;
  }
  .mega-menu::before { display: none; }
  .mega-menu[hidden] { display: none !important; }
  .site-header.is-mega-open::before { display: none; }
  .site-header.is-mega-open { background: rgba(255, 255, 255, 0.98); }
  .mega-menu__inner { padding: 0.85rem 1rem 1rem; }
  .mega-menu__inner.container { padding-inline: 0; max-width: none; }
  .mega-menu__columns,
  .mega-menu__columns--three { grid-template-columns: 1fr; gap: 1.25rem; }
  .mega-menu__aside {
    display: block;
    border-left: none;
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0 0;
    margin-top: 0.5rem;
  }
  .site-nav-backdrop { top: var(--header-h); }

  /* Shared tablet collapses */
  .page-hero {
    --page-hero-min: 16rem;
    min-height: calc(var(--header-h) + var(--page-hero-min));
    padding: calc(var(--header-h) + 3rem) 1.25rem 3.5rem;
  }
  .hero {
    height: auto;
    min-height: min(85svh, 640px);
    max-height: none;
  }
  .showcase-section .showcase--hero { min-height: 0; }
  .showcase-section .showcase__media { min-height: 280px; }
  .showcase-section .showcase__content {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  }
  .projects-index__card,
  .projects-index__card--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .projects-index__card--reverse .projects-index__media,
  .projects-index__card--reverse .projects-index__body { order: unset; }
  .projects-index__media { aspect-ratio: 16 / 11; }
  .projects-index__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .projects-carousel__cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .programs-section__cta { width: 100%; }
  .project-card { flex-basis: min(280px, calc(100vw - 3rem)); }
  .form-grid,
  .form-split-row { grid-template-columns: 1fr; }
  .form-split-row .form-group > label { min-height: 0; }
  .form-card { padding: 1.75rem 1.5rem; }
  .price-modal {
    padding: 0;
    align-items: stretch;
  }
  .price-modal__dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
  }
  .price-modal__layout {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .price-modal__info,
  .price-modal__form-panel {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    overflow: visible;
  }
  .price-modal__info {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem 1.25rem 1.35rem;
  }
  .price-modal__form-panel {
    padding: 1.35rem 1.25rem 1.75rem;
  }
  .price-modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }
  .price-modal__form-grid,
  .price-modal__split-row { grid-template-columns: 1fr; }
  .price-modal__split-row .form-group > label { min-height: 0; }
  .price-modal__facts { grid-template-columns: 1fr; }
  .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table th:nth-child(4),
  .price-table td:nth-child(4) { display: none; }
  .page-cta { min-height: clamp(260px, 42vw, 360px); }
  .stats-bar__number { font-size: 2rem; }
  .site-logo img {
    height: calc(var(--header-h) - 10px);
    max-width: min(220px, 42vw);
    transform: scale(1.08);
  }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .home-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-about__visual {
    min-height: 360px;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
  .home-about__title { max-width: none; }
  .home-about__lead { max-width: none; }
  .features-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-section .showcase--hero { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .home-pricing__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-pricing__all-link { width: 100%; justify-content: center; }
  .home-pricing__card {
    flex-basis: min(280px, calc(100vw - 3rem));
  }
  .price-program,
  .price-program--reverse { grid-template-columns: 1fr; }
  .price-program--reverse .price-program__media,
  .price-program--reverse .price-program__body { order: unset; }
  .price-program__media { max-height: 420px; aspect-ratio: 16/10; }
  .prices-included { grid-template-columns: 1fr; }
  .project-detail__grid { grid-template-columns: 1fr; }
  .project-detail__sidebar { position: static; }
  .project-section-nav {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .project-expect-grid,
  .project-included-grid { grid-template-columns: 1fr; }
  .project-itinerary__step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .project-gallery { grid-template-columns: 1fr; }
  .inclusions-modal__grid { grid-template-columns: 1fr; }
  .project-panel-modal__dialog { padding: 1.5rem 1.25rem 1.75rem; }
  .project-inclusions-preview__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .project-inclusions-preview--main .project-inclusions-preview__btn { max-width: none; }
  .project-trip__slide,
  .project-trip--inline .project-trip__slide,
  .project-trip--below .project-trip__slide { flex-basis: min(320px, 88vw); }
  .project-trip--below { margin-top: 2.5rem; padding-top: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-aside__media { aspect-ratio: 16 / 10; max-height: 360px; }
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2rem;
    padding-block: 2.5rem 1.75rem;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    max-width: 18rem;
    margin-inline: auto;
  }
  .site-footer__col,
  .site-footer__newsletter,
  .site-footer__panel {
    max-width: none;
    justify-self: stretch;
  }
  .site-footer__brand img { height: 96px; max-width: 220px; }
  .newsletter-form { max-width: 16rem; }
  .booking-quote {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero__title,
  .hero__title {
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  html { font-size: 100%; } /* 16px standard root on mobile */
  body {
    font-size: 0.9375rem; /* 15px */
    line-height: 1.65;
  }
  .btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.875rem; /* 14px */
    gap: 0.35rem;
  }
  .btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem; /* 13px */
  }
  .btn--lg {
    padding: 0.75rem 1.35rem;
    font-size: 0.9375rem; /* 15px */
  }
  .site-logo img {
    height: calc(var(--header-h) - 8px);
    max-width: min(240px, 52vw);
    transform: scale(1.15);
  }
  .lang-switcher__btn {
    padding: 0.35rem 0.55rem 0.35rem 0.6rem;
    font-size: 0.75rem;
  }
  .nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.4rem;
  }
  .site-nav__link {
    padding: 0.75rem 0.15rem;
    font-size: 0.9375rem; /* 15px */
  }
  .mega-menu__heading {
    font-size: 0.6875rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.65rem;
  }
  .mega-menu__links a {
    padding: 0.45rem 0;
    font-size: 0.9375rem;
  }
  .mega-menu__links a:hover { padding-left: 0; }
  .mega-menu__text { font-size: 0.8125rem; margin-bottom: 0.85rem; }
  .mega-menu__actions { gap: 0.65rem; }
  .mega-menu__actions .btn { width: 100%; justify-content: center; }
  .showcase__images { grid-template-columns: 1fr; }
  .showcase__img--tall { grid-row: auto; aspect-ratio: 16/10; }
  .price-modal__facts { grid-template-columns: 1fr; }
  .hero { min-height: min(100svh, 640px); }
  .home-about__visual {
    min-height: 320px;
    max-width: none;
    --inset-w: 44%;
    --inset-h: 52%;
    --inset-top: 28%;
    --inset-gap: 0.65rem;
  }
  .home-about__image--accent {
    width: var(--inset-w);
  }
  .project-card { flex-basis: min(280px, calc(100vw - 3rem)); }
  .projects-carousel__cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .programs-section__cta { width: 100%; }
  .projects-index__card,
  .projects-index__card--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .projects-index__card--reverse .projects-index__media,
  .projects-index__card--reverse .projects-index__body { order: unset; }
  .projects-index__intro {
    text-align: left;
    margin-inline: 0;
  }
  .projects-index__trust {
    justify-content: flex-start;
    margin-bottom: 2.75rem;
  }
  .projects-index__media {
    aspect-ratio: 16 / 11;
  }
  .projects-index__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .form-grid { grid-template-columns: 1fr; }
  .form-split-row { grid-template-columns: 1fr; }
  .form-split-row .form-group > label { min-height: 0; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-card { padding: 1.5rem; }
  .booking-quote {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    padding-block: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .site-footer__brand {
    max-width: none;
    margin-inline: auto;
    margin-bottom: 0.25rem;
  }
  .site-footer__brand img { height: 92px; max-width: 220px; }
  .site-footer__brand p { max-width: 18rem; }
  .site-footer__panel {
    max-width: none;
    justify-self: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .site-footer__panel:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .site-footer__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem 0;
    border: none;
    border-bottom: none;
    background: none;
    font-family: var(--font-body);
    font-size: 0.9375rem; /* 15px */
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
    text-align: left;
    cursor: pointer;
    pointer-events: auto;
  }
  .site-footer__panel--newsletter .site-footer__toggle {
    width: 100%;
    min-width: 0;
    border-bottom: none;
    padding-bottom: 1rem;
  }
  .site-footer__chevron {
    display: block;
    opacity: 0.85;
  }
  .site-footer__panel.is-open .site-footer__chevron {
    transform: rotate(180deg);
  }
  .site-footer__panel-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }
  .site-footer__panel-body > * {
    overflow: hidden;
    min-height: 0;
  }
  .site-footer__panel.is-open .site-footer__panel-body {
    grid-template-rows: 1fr;
  }
  .site-footer__panel.is-open .site-footer__panel-body > * {
    padding-bottom: 1.15rem;
  }
  .newsletter-input {
    height: 2.35rem;
    font-size: 0.875rem;
    padding: 0 0.75rem;
  }
  .newsletter-submit {
    height: 2.35rem;
    font-size: 0.8125rem;
  }
  .mega-menu__links a {
    padding: 0.4rem 0;
    font-size: 0.875rem;
  }
  .mega-menu__heading {
    font-size: 0.6875rem;
  }
  .page-hero__title,
  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
  h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h2 { font-size: clamp(1.25rem, 5vw, 1.625rem); }
  .form-group label,
  .form-group > label {
    font-size: 0.8125rem;
  }
  input:not([type="checkbox"]):not([type="radio"]),
  select,
  textarea {
    font-size: 0.9375rem;
  }
  .newsletter-form { max-width: 100%; }
  .site-footer__social-bar {
    padding-block: 1.5rem 1rem;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-block: 1.35rem 1.85rem;
    gap: 0.55rem;
  }
  .site-footer__copyright {
    white-space: nowrap;
    text-align: left;
    font-size: clamp(0.6875rem, 3.1vw, 0.8125rem);
    line-height: 1.45;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    order: 0;
  }
  .site-footer__legal {
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
    box-sizing: border-box;
    font-size: clamp(0.625rem, 2.9vw, 0.75rem);
    line-height: 1.45;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    order: 1;
  }
  .site-footer__legal a:not(:last-child)::after {
    margin: 0 0.5rem;
    height: 0.6rem;
  }
  .site-footer__credit {
    text-align: left;
    font-size: clamp(0.6875rem, 3.1vw, 0.8125rem);
    white-space: nowrap;
    width: auto;
    margin-right: 0;
    order: 2;
  }
  .prices-included { grid-template-columns: 1fr; }
  .price-table th:nth-child(4),
  .price-table td:nth-child(4) { display: none; }
  .price-program__cta,
  .price-program__learn { flex: 1 1 auto; min-width: 0; }
}

@media (max-width: 480px) {
  .stats-bar__number { font-size: 2rem; }
  .project-detail__content [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .project-itinerary { padding-left: 0; }
  .project-itinerary::before { display: none; }
  .project-itinerary__label { min-width: auto; }
}

/* Flatpickr theme */
.flatpickr-calendar {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  z-index: 2100;
}
.price-modal .flatpickr-calendar {
  margin-top: 0.35rem;
}
.price-modal-flatpickr {
  z-index: 2200 !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekdays,
span.flatpickr-weekday {
  background: var(--navy-800);
  color: var(--white);
  fill: var(--white);
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 600;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: var(--white);
  color: var(--white);
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  fill: var(--orange-400);
  color: var(--orange-400);
}
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .numInputWrapper input {
  color: var(--white) !important;
  font-weight: 600;
}
.flatpickr-current-month .numInputWrapper {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}
.flatpickr-current-month .numInputWrapper:hover {
  background: rgba(255, 255, 255, 0.22);
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--white);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: var(--white);
}
.flatpickr-current-month .numInputWrapper span.arrowUp:hover:after {
  border-bottom-color: var(--orange-400);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:hover:after {
  border-top-color: var(--orange-400);
}
.flatpickr-day.selected {
  background: var(--orange-500);
  border-color: var(--orange-500);
}
.flatpickr-day.selected:hover { background: var(--orange-600); border-color: var(--orange-600); }
.flatpickr-day:hover { background: var(--cream-dark); }
