:root {
  --font-sans: "Source Sans 3", sans-serif;
  --font-display: "Fraunces", serif;

  --bg: hsl(210 35% 98%);
  --text: hsl(224 55% 12%);
  --muted: hsl(221 18% 40%);

  --card: hsl(0 0% 100% / 0.9);
  --line: hsl(214 24% 86%);

  --primary: hsl(236 51% 31%);
  --accent: hsl(356 72% 46%);
  --accent-strong: hsl(356 75% 40%);

  --hero-bg:
    radial-gradient(1100px 560px at 20% 30%, hsl(356 72% 46% / 0.24), transparent 56%),
    radial-gradient(880px 520px at 78% 6%, hsl(224 56% 16% / 0.36), transparent 58%),
    linear-gradient(180deg, hsl(210 35% 98%) 0%, hsl(212 35% 96%) 100%);

  --shadow-elevate: 0 8px 18px hsl(224 42% 16% / 0.09);
  --shadow-soft: 0 3px 10px hsl(224 30% 16% / 0.06);

  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-weight: 400;
}

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

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

p {
  margin: 0;
  font-weight: 300;
}

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

main {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
}

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

.container.tight {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.68rem 1.05rem;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

.btn:focus-visible {
  outline: 2px solid hsl(356 72% 46% / 0.45);
  outline-offset: 2px;
}

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

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-hero {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 14px hsl(356 72% 46% / 0.22);
}

.btn-hero:hover {
  background: var(--accent-strong);
}

.btn-soft {
  background: hsl(236 51% 31% / 0.1);
  border-color: hsl(236 51% 31% / 0.24);
  color: var(--primary);
}

.btn-soft:hover {
  background: hsl(236 51% 31% / 0.16);
}

.btn-outline {
  background: hsl(0 0% 100% / 0.82);
  border-color: var(--line);
  color: var(--text);
}

.btn-outline:hover {
  border-color: hsl(236 51% 31% / 0.35);
}

.btn-compact {
  min-height: 2.1rem;
  padding: 0.42rem 0.82rem;
  font-size: 0.84rem;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(8px);
  background: hsl(210 35% 98% / 0.88);
  border-bottom: 1px solid var(--line);
}

.top-bar {
  display: none;
  background: var(--primary);
  color: hsl(0 0% 100% / 0.92);
  border-bottom: 1px solid hsl(0 0% 100% / 0.15);
}

.top-bar-wrap {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.35rem;
  font-size: 0.88rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-left {
  flex: 0 0 auto;
}

.top-bar-right {
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 0.18rem;
  text-align: right;
}

.top-bar-contact-stack {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem 0.6rem;
}

.top-bar-contact-stack .top-bar-note {
  flex: 0 0 100%;
}

.top-bar-location {
  font-weight: 600;
}

.top-bar-phone-link {
  font-weight: 700;
}

.top-bar-note {
  font-size: 0.78rem;
  color: hsl(0 0% 100% / 0.78);
}

.top-bar-sep {
  opacity: 0.45;
}

.top-bar a:hover {
  text-decoration: underline;
}

.nav-wrap {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 56px;
  width: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(224 35% 26%);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link.is-active {
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.7rem;
  margin-bottom: -0.7rem;
}

.nav-dropdown>.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown>.nav-link::after {
  content: "\25BE";
  font-size: 0.72rem;
  opacity: 0.72;
  transform: translateY(1px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-dropdown:hover>.nav-link::after,
.nav-dropdown:focus-within>.nav-link::after {
  transform: rotate(180deg) translateY(-1px);
  opacity: 0.95;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 13rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-soft);
  padding: 0.4rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.2s ease;
}

.dropdown-menu a {
  padding: 0.52rem 0.6rem;
  border-radius: 0.62rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(224 28% 24%);
}

.dropdown-menu a:hover {
  background: hsl(214 36% 94%);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.52rem 0.78rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.mobile-menu-toggle:hover {
  border-color: hsl(236 51% 31% / 0.35);
}

.mobile-menu-toggle[aria-expanded="true"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 16px hsl(236 51% 31% / 0.16);
}

.mobile-menu-toggle-text {
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hamburger {
  width: 1.12rem;
  height: 0.92rem;
  display: grid;
  align-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.desktop-cta {
  display: none;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: hsl(0 0% 100% / 0.98);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.3s ease, opacity 0.24s ease, transform 0.24s ease;
}

.mobile-menu.is-open {
  max-height: 90vh;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu .container {
  display: grid;
  gap: 0.45rem;
  padding-block: 0.9rem;
}

.mobile-menu .container>* {
  opacity: 0;
  transform: translateY(-7px);
}

.mobile-menu.is-open .container>* {
  animation: menuItemIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--menu-item-delay, 0ms);
}

@keyframes menuItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-link,
.mobile-group summary,
.mobile-subnav a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.72rem 0.86rem;
  background: hsl(0 0% 100% / 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.16s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.mobile-link:hover,
.mobile-group summary:hover,
.mobile-subnav a:hover {
  transform: translateY(-1px);
  border-color: hsl(236 51% 31% / 0.26);
  background: hsl(214 36% 95%);
}

.mobile-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group summary::after {
  content: "\25BE";
  font-size: 0.75rem;
  opacity: 0.72;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-group[open] summary::after {
  transform: rotate(180deg);
  opacity: 0.95;
}

.mobile-subnav {
  display: grid;
  gap: 0.36rem;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.22s ease, opacity 0.2s ease, transform 0.2s ease, margin-top 0.2s ease;
}

.mobile-group[open] .mobile-subnav {
  margin-top: 0.35rem;
  max-height: 22rem;
  opacity: 1;
  transform: translateY(0);
}

.mobile-subnav a {
  font-size: 0.88rem;
  font-weight: 600;
}

.mobile-cta {
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg);
  z-index: -3;
}

.hero-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, hsl(210 35% 98% / 0.94) 20%, hsl(210 35% 98% / 0.48) 62%, hsl(210 35% 98% / 0.12));
}

.hero-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(560px 370px at var(--spot-x, 24%) var(--spot-y, 40%), hsl(356 72% 46% / 0.22), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.8rem);
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

.hero-content .lead {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  color: var(--muted);
  max-width: 58ch;
}

.chip,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid hsl(214 24% 86% / 0.9);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.7);
  padding: 0.35rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: hsl(224 28% 30%);
}

.chip {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.5rem 0.92rem;
  white-space: nowrap;
}

.chip::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 2px hsl(356 72% 46% / 0.14);
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.stat-grid {
  margin-top: 1.65rem;
  display: grid;
  gap: 0.8rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 0.82rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.68rem;
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.84rem;
  background: hsl(356 72% 46% / 0.1);
  color: hsl(224 56% 18%);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.stat-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.stat-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.stat-card h3 {
  font-size: clamp(1.26rem, 2.4vw, 1.65rem);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.stat-card p {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

.section {
  padding-block: clamp(2.9rem, 6vw, 4.8rem);
}

.section h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  max-width: 20ch;
}

.section .lead {
  margin-top: 0.7rem;
  color: var(--muted);
  max-width: 66ch;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-elevate);
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

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

.card-title {
  display: flex;
  align-items: center;
  gap: 0.46rem;
  line-height: 1.18;
  max-width: 100%;
}

.card-title>span:last-child {
  min-width: 0;
  flex: 1 1 auto;
}

.card-icon {
  width: 1.36rem;
  height: 1.36rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(356 72% 46% / 0.2);
  background: hsl(356 72% 46% / 0.08);
  color: hsl(224 56% 18%);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.card-icon svg {
  width: 0.86rem;
  height: 0.86rem;
}

.mini-title {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  line-height: 1.18;
  margin: 0;
}

.mini-title>span:last-child {
  min-width: 0;
  flex: 1 1 auto;
}

.mini-title .card-icon {
  width: 1.22rem;
  height: 1.22rem;
  border-radius: 0.46rem;
}

.mini-title .card-icon svg {
  width: 0.78rem;
  height: 0.78rem;
}

.card h4 {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  letter-spacing: 0;
}

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

.card .btn {
  width: fit-content;
}

.hover-rise {
  transition: transform 0.18s ease;
}

.hover-rise:hover {
  transform: translateY(-2px);
}

.compact {
  gap: 0.4rem;
}

.intro-video-card {
  gap: 0.8rem;
}

.intro-section-grid {
  align-items: stretch;
}

.intro-story-card {
  height: 100%;
}

.intro-video-frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid hsl(214 20% 84% / 0.7);
  background: hsl(220 26% 10%);
  width: 100%;
  max-width: 571px;
}

.intro-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.intro-detail-grid {
  align-items: stretch;
}

.intro-detail-grid .card {
  height: 100%;
}

.split-7-5,
.split-5-7,
.card-grid,
.mini-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.stack-cards {
  display: grid;
  gap: 0.9rem;
}

.card-grid.three-up,
.mini-grid.two-up,
.field-row.two-up {
  grid-template-columns: 1fr;
}

.mini-block {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.7);
  padding: 0.8rem 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.mini-block p {
  margin: 0;
}

.note-card {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-top-grid {
  margin-top: 1.7rem;
}

.hero-page {
  padding-block: clamp(3rem, 6vw, 4.2rem);
}

.hero-page-content h1 {
  margin-top: 0.7rem;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  max-width: 19ch;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: hsl(224 24% 32%);
}

.breadcrumbs a {
  color: hsl(236 45% 34%);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.crumb-sep {
  opacity: 0.55;
}

.bulleted-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

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

.partner-network-card .partner-country-list {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.partner-network-head {
  display: grid;
  gap: 0.6rem;
}

.partner-network-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.partner-country-dropdown {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: hsl(0 0% 100% / 0.84);
  overflow: hidden;
}

.partner-country-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.82rem;
  transition: background-color 0.2s ease;
}

.partner-country-summary:hover {
  background: hsl(214 36% 95%);
}

.partner-country-summary::-webkit-details-marker {
  display: none;
}

.partner-country-summary-right {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.partner-country-count {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.1rem 0.44rem;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  color: hsl(224 30% 30%);
}

.partner-country-caret {
  font-size: 0.78rem;
  color: hsl(224 22% 44%);
  transition: transform 0.2s ease;
}

.partner-country-dropdown[open] .partner-country-caret {
  transform: rotate(180deg);
}

.partner-country-panel {
  border-top: 1px solid var(--line);
  padding: 0.72rem 0.82rem 0.78rem;
}

.partner-country-group {
  border-top: 1px solid var(--line);
  padding-top: 0.72rem;
}

.partner-country-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.6rem;
}

.partner-logo-card {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: hsl(0 0% 100% / 0.9);
  padding: 0.66rem;
  display: block;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-logo-card:hover {
  transform: translateY(-2px);
  border-color: hsl(236 51% 31% / 0.33);
  box-shadow: var(--shadow-soft);
}

.partner-logo-media {
  border: 1px solid hsl(214 24% 86% / 0.9);
  border-radius: 0.75rem;
  background: #fff;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0.5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.partner-logo-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.26s ease, opacity 0.26s ease, transform 0.26s ease;
}

.partner-logo-card:hover .partner-logo-media img,
.partner-logo-card:focus-visible .partner-logo-media img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

.partner-logo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, hsl(214 22% 95%), hsl(214 22% 88%));
  display: grid;
  place-items: center;
}

.partner-logo-fallback::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid hsl(224 18% 66% / 0.72);
  box-shadow: inset 0 0 0 6px hsl(224 18% 82% / 0.8);
}

.partner-carousel {
  margin-top: 1.5rem;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-inline: 0;
}

.partner-carousel-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.86);
  padding: 0.75rem;
}

.partner-carousel-track {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-start;
  overflow: visible;
  padding-inline: clamp(2.5rem, 5vw, 3.8rem);
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: stretch;
  will-change: transform;
}

.partner-carousel-track::-webkit-scrollbar {
  display: none;
}

.partner-carousel-item {
  flex: 0 0 clamp(170px, 18vw, 220px);
  border: 0;
  border-radius: 0.9rem;
  background: #fff;
  padding: 0.62rem;
  display: block;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-carousel-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.partner-carousel-logo {
  border: 0;
  border-radius: 0.7rem;
  background: #fff;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0.5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.partner-carousel-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.partner-carousel-item:hover .partner-carousel-logo img,
.partner-carousel-item:focus-visible .partner-carousel-logo img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

.partner-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  min-height: 2.2rem;
  min-width: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.95);
  box-shadow: 0 6px 14px hsl(224 42% 16% / 0.12);
  padding: 0.42rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: hsl(224 34% 24%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.16s ease;
}

.partner-carousel-nav.prev {
  left: 0.75rem;
}

.partner-carousel-nav.next {
  right: 0.75rem;
}

.partner-carousel-nav:hover {
  border-color: hsl(236 51% 31% / 0.36);
  background: #fff;
  transform: translateY(calc(-50% - 1px));
}

.partner-more-link {
  margin-top: 0.8rem;
}

.chip-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: hsl(0 0% 100% / 0.82);
  padding: 0.4rem 0.62rem;
  font-size: 0.84rem;
  color: hsl(224 30% 28%);
}

.chip-link {
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.chip-link:hover,
.chip-link:focus-visible {
  transform: translateY(-1px);
  border-color: hsl(236 51% 31% / 0.32);
  background: #fff;
}

.testimonial-billboard {
  margin-top: 1.35rem;
  max-width: 980px;
  margin-inline: auto;
}

.testimonial-billboard-stage {
  display: grid;
}

.testimonial-billboard-slide {
  grid-area: 1 / 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  padding: clamp(1rem, 1.7vw, 1.35rem);
  background:
    radial-gradient(circle at top right, hsl(221 83% 94%), transparent 34%),
    linear-gradient(135deg, hsl(0 0% 100%), hsl(214 47% 98%));
  min-height: 100%;
}

.testimonial-billboard-slide::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle, hsl(12 88% 56% / 0.14), transparent 62%);
  z-index: -1;
}

.testimonial-billboard-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.testimonial-billboard-grid {
  display: grid;
  gap: 1.1rem;
  align-items: start;
}

.testimonial-billboard-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 34rem;
}

.testimonial-billboard-art {
  position: relative;
  width: min(220px, 48vw);
  height: 62px;
}

.testimonial-billboard-art-mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: hsl(0 0% 100% / 0.96);
  border: 1px solid hsl(214 28% 86%);
  box-shadow: 0 12px 24px hsl(224 38% 16% / 0.08);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: hsl(221 83% 42%);
}

.testimonial-billboard-art-line {
  position: absolute;
  left: 56px;
  top: 24px;
  width: 118px;
  height: 1px;
  background: linear-gradient(90deg, hsl(221 83% 52%), hsl(12 88% 56% / 0.18));
}

.testimonial-billboard-art-orbit {
  position: absolute;
  left: 116px;
  top: 6px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px dashed hsl(221 83% 52% / 0.34);
}

.testimonial-billboard-art-dot {
  position: absolute;
  border-radius: 999px;
}

.testimonial-billboard-art-dot.dot-one {
  left: 96px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: hsl(12 88% 56%);
}

.testimonial-billboard-art-dot.dot-two {
  left: 168px;
  top: 32px;
  width: 14px;
  height: 14px;
  background: hsl(221 83% 52% / 0.22);
  border: 1px solid hsl(221 83% 52% / 0.34);
}

.testimonial-billboard-art.is-google .testimonial-billboard-art-mark {
  color: hsl(12 88% 46%);
}

.testimonial-billboard-art.is-google .testimonial-billboard-art-line {
  background: linear-gradient(90deg, hsl(12 88% 56%), hsl(42 90% 58% / 0.2));
}

.testimonial-billboard-art.is-google .testimonial-billboard-art-orbit {
  border-color: hsl(12 88% 56% / 0.34);
}

.testimonial-billboard-art.is-google .testimonial-billboard-art-dot.dot-one {
  background: hsl(221 83% 52%);
}

.testimonial-billboard-art.is-google .testimonial-billboard-art-dot.dot-two {
  background: hsl(42 95% 56% / 0.2);
  border-color: hsl(42 95% 48% / 0.4);
}

.testimonial-billboard-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(224 28% 42%);
}

.testimonial-billboard-side {
  display: grid;
  gap: 0.72rem;
  align-content: start;
  border-top: 1px solid hsl(214 28% 86%);
  padding-top: 0.82rem;
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.testimonial-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.4rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-source-badge.is-facebook {
  border-color: hsl(221 83% 47% / 0.18);
  background: hsl(221 83% 47% / 0.08);
  color: hsl(221 83% 38%);
}

.testimonial-source-badge.is-google {
  border-color: hsl(12 88% 55% / 0.16);
  background: hsl(42 100% 96%);
  color: hsl(12 88% 42%);
}

.testimonial-source-icon,
.testimonial-link-icon {
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.testimonial-source-icon svg,
.testimonial-link-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-card-date {
  color: hsl(224 16% 42%);
  font-size: 0.82rem;
  white-space: nowrap;
}

.testimonial-card-person {
  display: grid;
  gap: 0.2rem;
}

.testimonial-card-person h3 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-card-person p {
  margin: 0;
  color: hsl(224 18% 40%);
  font-size: 0.86rem;
}

.testimonial-card-quote {
  margin: 0;
  color: hsl(224 23% 28%);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.42;
  max-width: 26ch;
}

.testimonial-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: hsl(224 56% 20%);
  font-weight: 700;
  text-decoration: none;
}

.testimonial-card-link:hover,
.testimonial-card-link:focus-visible {
  color: hsl(236 51% 31%);
}

.testimonial-billboard-controls {
  margin-top: 0.82rem;
  display: grid;
  gap: 0.62rem;
}

.testimonial-billboard-progress {
  height: 0.34rem;
  border-radius: 999px;
  background: hsl(214 28% 90%);
  overflow: hidden;
}

.testimonial-billboard-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, hsl(221 83% 52%), hsl(12 88% 57%));
  transform: scaleX(0);
  transform-origin: left center;
}

.testimonial-billboard-toolbar {
  display: grid;
  gap: 0.72rem;
  align-items: center;
}

.testimonial-billboard-timer,
.testimonial-billboard-timer-mobile {
  margin: 0;
  color: hsl(224 18% 38%);
  font-size: 0.84rem;
  font-weight: 700;
}

.testimonial-billboard-timer-mobile {
  display: none;
}

.testimonial-billboard-dots {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.48rem;
}

.testimonial-billboard-dot {
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 999px;
  background: hsl(214 21% 78%);
  cursor: pointer;
  padding: 0;
  transition: transform 0.16s ease, background-color 0.2s ease;
}

.testimonial-billboard-dot.is-active {
  background: hsl(221 83% 48%);
  transform: scale(1.12);
}

.testimonial-billboard-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.testimonial-billboard-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.92);
  color: hsl(224 34% 24%);
  padding: 0.48rem 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.16s ease, background-color 0.2s ease;
}

.testimonial-billboard-nav-button:hover,
.testimonial-billboard-nav-button:focus-visible {
  border-color: hsl(236 51% 31% / 0.36);
  background: #fff;
  transform: translateY(-1px);
}

@media (min-width: 860px) {
  .testimonial-billboard-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.88fr);
    gap: 1.18rem;
  }

  .testimonial-billboard-side {
    min-height: 100%;
    border-top: 0;
    border-left: 1px solid hsl(214 28% 86%);
    padding-top: 0;
    padding-left: 1.08rem;
  }

  .testimonial-billboard-toolbar {
    grid-template-columns: auto 1fr auto;
  }
}

.quote-card p {
  color: hsl(224 23% 34%);
  font-style: italic;
}

.contact-card {
  margin-top: 1rem;
}

.office-card h4 {
  margin-bottom: 0.2rem;
}

.meta-title {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0 0 0.2rem 0;
  font-family: var(--font-sans);
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(224 30% 30%);
}

.meta-icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.42rem;
  border: 1px solid hsl(356 72% 46% / 0.2);
  background: hsl(356 72% 46% / 0.08);
  color: hsl(224 56% 18%);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.meta-icon svg {
  width: 0.72rem;
  height: 0.72rem;
}

.office-card a:not(.btn) {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.office-card a:not(.btn):hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.office-card p {
  overflow-wrap: anywhere;
}

.office-card [data-quote-modal-open] {
  width: 100%;
  min-height: 2.45rem;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
  padding-block: 0.52rem;
  margin-top: 0.2rem;
}

.page-destinations .destination-card {
  grid-template-rows: auto 1fr auto;
  align-content: start;
}

.page-destinations .destination-card .btn {
  width: 100%;
  min-height: 2.3rem;
  padding: 0.45rem 0.92rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

.page-destination .destination-actions {
  margin-top: 0.2rem;
  gap: 0.48rem;
  align-items: center;
}

.page-destination .destination-actions .btn {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 2.1rem !important;
  padding: 0.38rem 0.88rem !important;
  border-radius: 0.78rem !important;
  font-size: 0.84rem !important;
  line-height: 1.1 !important;
  aspect-ratio: auto !important;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto !important;
}

.section-head {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-wrap {
  margin-top: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.82);
  padding: 0.95rem;
}

.quote-form {
  display: grid;
  gap: 0.8rem;
}

.quote-form label {
  display: grid;
  gap: 0.36rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-form label span {
  color: hsl(224 28% 22%);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.78rem;
  background: #fff;
  padding: 0.68rem 0.78rem;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: hsl(356 72% 46% / 0.56);
  box-shadow: 0 0 0 3px hsl(356 72% 46% / 0.16);
}

.field-error {
  min-height: 1.1em;
  color: hsl(0 76% 43%);
  font-size: 0.82rem;
  font-weight: 600;
}

.form-hint {
  font-size: 0.82rem;
  color: hsl(224 20% 39%);
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
}

.form-status:empty {
  padding: 0;
}

.form-status.is-success {
  color: hsl(140 65% 28%);
  background: hsl(140 56% 92%);
  border: 1px solid hsl(140 35% 74%);
}

.form-status.is-error {
  color: hsl(0 76% 43%);
  background: hsl(0 90% 96%);
  border: 1px solid hsl(0 68% 82%);
}

.page-accommodation {
  min-height: 100svh;
  background:
    radial-gradient(900px 480px at 0% 0%, hsl(356 72% 46% / 0.12), transparent 58%),
    radial-gradient(760px 440px at 100% 100%, hsl(236 51% 31% / 0.14), transparent 60%),
    linear-gradient(180deg, hsl(210 35% 98%) 0%, hsl(212 35% 96%) 100%);
}

.page-accommodation .site-header {
  background: hsl(210 35% 98% / 0.88);
}

.accommodation-stage {
  padding-block: clamp(1.5rem, 5vw, 3.25rem);
}

.booking-shell {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  background: hsl(0 0% 100% / 0.92);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: 0 24px 54px hsl(210 30% 18% / 0.12);
  overflow: hidden;
}

.booking-overview {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  color: hsl(0 0% 100% / 0.94);
  background:
    linear-gradient(180deg, hsl(236 51% 31%) 0%, hsl(224 56% 18%) 100%);
}

.booking-overview::after {
  content: "";
  position: absolute;
  inset: auto auto -72px -42px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: hsl(356 72% 46% / 0.2);
  filter: blur(8px);
}

.booking-badge-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.booking-overview .eyebrow {
  border-color: hsl(0 0% 100% / 0.18);
  background: hsl(0 0% 100% / 0.08);
  color: hsl(0 0% 100% / 0.94);
}

.booking-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.1);
  color: hsl(0 0% 100% / 0.94);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-status-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.booking-overview h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 5.8vw, 4.1rem);
  line-height: 0.95;
  max-width: 8ch;
}

.booking-intro {
  position: relative;
  z-index: 1;
  max-width: 32ch;
  font-size: 1.04rem;
  font-weight: 400;
  color: hsl(0 0% 100% / 0.78);
}

.booking-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}

.booking-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid hsl(0 0% 100% / 0.18);
  background: hsl(0 0% 100% / 0.08);
}

.booking-gallery-main {
  aspect-ratio: 4 / 3;
  border-radius: 0.85rem;
}

.booking-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.booking-gallery-strip img {
  aspect-ratio: 1 / 1;
  border-radius: 0.65rem;
}

.booking-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.72rem;
  margin-top: 0.35rem;
}

.booking-meta span {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 600;
  color: hsl(0 0% 100% / 0.84);
}

.booking-meta span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: var(--accent);
}

.booking-directions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 2.55rem;
  border-radius: 999px;
  border: 1px solid hsl(0 0% 100% / 0.26);
  padding: 0 1rem;
  background: hsl(0 0% 100% / 0.1);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.booking-directions:hover,
.booking-directions:focus-visible {
  background: hsl(0 0% 100% / 0.18);
  outline: none;
}

.booking-workspace {
  display: grid;
  align-content: start;
  padding: clamp(1.25rem, 3.5vw, 2rem);
  background:
    linear-gradient(180deg, hsl(0 0% 100% / 0.92) 0%, hsl(210 35% 98%) 100%);
}

.booking-progress {
  display: grid;
  grid-template-columns: 1fr minmax(70px, 220px) 1fr;
  align-items: start;
  gap: 0.8rem;
  max-width: 420px;
  color: hsl(224 26% 30%);
}

.booking-step {
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  text-align: center;
  font-size: 0.84rem;
  text-transform: uppercase;
  font-weight: 700;
}

.booking-step span {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid hsl(236 51% 31% / 0.2);
  background: hsl(0 0% 100% / 0.95);
  color: var(--primary);
  line-height: 1;
}

.booking-step.is-active span,
.booking-step.is-complete span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.booking-progress-line {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), hsl(236 51% 31% / 0.3));
  margin-top: 0.78rem;
}

.accommodation-form {
  display: grid;
  margin-top: 1.25rem;
}

.booking-panel {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.15rem, 3vw, 1.8rem) 0 0;
}

.booking-panel[hidden] {
  display: none;
}

.booking-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.booking-panel-head h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.45rem, 3.3vw, 2rem);
}

.booking-panel-head>p {
  max-width: 21ch;
  color: var(--muted);
  font-weight: 600;
  text-align: right;
}

.date-picker-block {
  display: grid;
  gap: 0.85rem;
}

.date-picker-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.date-picker-head h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.date-picker-head p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
}

.date-button {
  min-height: 5.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 35% 98%) 100%);
  color: var(--primary);
  font: inherit;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.12rem;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.date-button:hover,
.date-button:focus-visible {
  transform: translateY(-1px);
  border-color: hsl(356 72% 46% / 0.35);
  box-shadow: 0 8px 18px hsl(224 30% 16% / 0.08);
  outline: none;
}

.date-button.is-selected {
  background: linear-gradient(180deg, hsl(236 51% 31%) 0%, hsl(224 56% 18%) 100%);
  border-color: hsl(236 51% 31%);
  color: #fff;
  box-shadow: 0 10px 20px hsl(236 51% 31% / 0.18);
}

.date-button-weekday,
.date-button-month {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.date-button-day {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.slot-button {
  min-height: 3.4rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 35% 98%) 100%);
  color: var(--primary);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.slot-button:hover,
.slot-button:focus-visible {
  transform: translateY(-1px);
  border-color: hsl(356 72% 46% / 0.42);
  box-shadow: 0 8px 18px hsl(224 30% 16% / 0.08);
  outline: none;
}

.slot-button.is-selected {
  background:
    linear-gradient(180deg, hsl(356 72% 46%) 0%, hsl(356 75% 40%) 100%);
  border-color: hsl(356 75% 40%);
  color: #fff;
  box-shadow: 0 10px 20px hsl(356 72% 46% / 0.2);
}

.slot-button.is-disabled,
.slot-button:disabled {
  background: hsl(220 24% 93%);
  border-color: hsl(220 24% 86%);
  color: hsl(224 12% 55%);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.72;
}

.slot-button.is-disabled:hover,
.slot-button.is-disabled:focus-visible,
.slot-button:disabled:hover,
.slot-button:disabled:focus-visible {
  transform: none;
  border-color: hsl(220 24% 86%);
  box-shadow: none;
}

.selected-slot-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  color: hsl(224 26% 30%);
  font-weight: 600;
}

.selected-slot-summary button {
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0.1rem 0.15rem;
}

.selected-slot-summary button:hover,
.selected-slot-summary button:focus-visible {
  text-decoration: underline;
  outline: none;
}

.accommodation-form label {
  display: grid;
  gap: 0.36rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.accommodation-form label span {
  color: hsl(224 28% 22%);
}

.accommodation-form input,
.accommodation-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: hsl(0 0% 100%);
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accommodation-form input:focus,
.accommodation-form textarea:focus {
  outline: none;
  border-color: hsl(356 72% 46% / 0.56);
  box-shadow: 0 0 0 3px hsl(356 72% 46% / 0.16);
}

.accommodation-form>.form-status {
  margin-top: 0.75rem;
}

.booking-pass {
  display: none;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 260px);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 35% 98%) 100%);
  padding: 1rem;
}

.booking-pass.is-visible {
  display: grid;
}

.booking-pass-copy {
  display: grid;
  gap: 0.35rem;
}

.booking-pass-copy h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.booking-pass-copy p:last-child {
  color: var(--muted);
}

.booking-pass-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  background: #fff;
  min-height: 220px;
  padding: 0.8rem;
  border: 1px solid var(--line);
}

.booking-pass-qr img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

.booking-shell-pass {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

@media (max-width: 860px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .date-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-pass {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .booking-shell {
    border-radius: 0.55rem;
  }

  .booking-progress {
    grid-template-columns: 1fr 64px 1fr;
    gap: 0.45rem;
    width: min(100% - 2rem, 360px);
  }

  .booking-step {
    font-size: 0.76rem;
  }

  .booking-panel-head {
    display: grid;
  }

  .booking-panel-head>p {
    max-width: none;
    text-align: left;
  }

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

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

  .slot-button {
    min-height: 2.9rem;
    font-size: 0.94rem;
  }

  .selected-slot-summary {
    align-items: flex-start;
  }

  .booking-overview,
  .booking-workspace {
    padding: 1.1rem;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.inline-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.callback-actions .btn {
  min-height: 1.95rem;
  padding: 0.36rem 0.74rem;
  font-size: 0.81rem;
  line-height: 1;
  white-space: nowrap;
}

.callback-box {
  margin-top: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem;
  background: hsl(0 0% 100% / 0.75);
  display: grid;
  gap: 0.65rem;
}

.contact-section-grid {
  align-items: stretch;
}

.contact-office-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.contact-quote-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.contact-office-grid {
  margin-top: 0.3rem;
  gap: 0.8rem;
}

.contact-office-card .callback-box {
  margin-top: auto;
}

.callback-actions {
  align-items: center;
}

.contact-quote-card .form-wrap {
  flex: 1 1 auto;
  display: flex;
}

.contact-quote-card .quote-form {
  flex: 1 1 auto;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  margin-top: 2.8rem;
}

.analytics-consent {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: min(24rem, calc(100vw - 2rem));
}

.analytics-consent-card {
  border: 1px solid var(--line);
  background: hsl(0 0% 100% / 0.96);
  border-radius: 1.2rem;
  box-shadow: 0 22px 48px hsl(224 42% 16% / 0.18);
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.analytics-consent-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.analytics-consent-card p:last-of-type {
  color: var(--muted);
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: var(--hero-bg);
  opacity: 0.78;
  z-index: -1;
}

.footer-content {
  padding-block: 2.1rem 1.5rem;
}

.cta-band {
  border: 1px solid var(--line);
  background: hsl(0 0% 100% / 0.72);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-elevate);
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.kicker {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: hsl(224 38% 28%);
}

.cta-band h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
}

.cta-band p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
}

.footer-brand p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.footer-links a {
  display: block;
  margin-top: 0.35rem;
  color: hsl(224 30% 28%);
}

.footer-links a:hover {
  text-decoration: underline;
}

.analytics-settings-link {
  text-underline-offset: 0.12em;
}

.footer-bottom {
  margin-top: 1.3rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: hsl(224 20% 39%);
}

.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;
}

.chatbot-shell {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: calc(100vw - 16px);
}

.chatbot-shell[hidden] {
  display: none !important;
}

.chatbot-panel[hidden],
.chatbot-suggestions[hidden],
.chatbot-support[hidden] {
  display: none !important;
}

.chatbot-launcher {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px 9px 9px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 42px rgba(141, 20, 37, 0.28);
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(141, 20, 37, 0.32);
}

.chatbot-launcher-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.chatbot-launcher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.chatbot-launcher-copy {
  display: grid;
  gap: 2px;
  text-align: center;
}

.chatbot-launcher-label {
  display: block;
  font-size: 0.92rem;
  line-height: 1.05;
  font-weight: 700;
}

.chatbot-launcher-meta {
  display: block;
  font-size: 0.62rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.chatbot-panel {
  width: min(380px, calc(100vw - 24px));
  height: min(620px, calc(100dvh - 108px));
  max-height: calc(100dvh - 108px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(14, 48, 84, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(12, 39, 72, 0.22);
  display: flex;
  flex-direction: column;
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, rgba(10, 84, 148, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid rgba(14, 48, 84, 0.08);
}

.chatbot-head-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.chatbot-head-main > div:last-child {
  min-width: 0;
}

.chatbot-head-id {
  flex: 0 0 auto;
}

.chatbot-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(13, 78, 157, 0.14);
  background: #fff;
}

.chatbot-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.chatbot-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.chatbot-subtitle {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.chatbot-close {
  width: 40px;
  height: 40px;
  padding: 0;
  flex: 0 0 auto;
  line-height: 1;
}

.chatbot-close svg {
  width: 1rem;
  height: 1rem;
}

.chatbot-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  padding-bottom: 24px; /* Fix clipping of suggestion chips */
}

.chatbot-message-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
}

.chatbot-message-row.is-user {
  justify-content: flex-end;
}

.chatbot-message {
  max-width: calc(100% - 44px);
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.98rem;
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: anywhere;
}

.chatbot-message p {
  margin: 0;
  white-space: pre-line;
}

.chatbot-message.is-bot {
  align-self: flex-start;
  background: #f1f7fb;
  color: var(--ink);
}

.chatbot-message.is-user {
  background: #0f4f95;
  color: #fff;
}

.chatbot-message-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.chatbot-message-avatar.is-bot {
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(13, 78, 157, 0.14);
  background: #fff;
}

.chatbot-message-avatar.is-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f4f95;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.chatbot-sources {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #3b6487;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.chatbot-source-link {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(13, 78, 157, 0.08);
  color: #24567e;
  text-decoration: none;
  font-weight: 600;
}

.chatbot-source-link:hover {
  background: rgba(13, 78, 157, 0.14);
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  min-width: 0;
  max-width: 100%;
}

.chatbot-suggestions::-webkit-scrollbar {
  display: none;
}

.chatbot-suggestion {
  border: 1px solid rgba(14, 48, 84, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 11px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.chatbot-suggestion:hover,
.chatbot-suggestion:focus-visible {
  background: rgba(13, 78, 157, 0.04);
  border-color: rgba(13, 78, 157, 0.28);
}

.chatbot-support {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 247, 237, 0.72);
  border: 1px solid #fed7aa;
  display: block;
}

.chatbot-support p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.chatbot-support-link {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  margin-left: 0.15rem;
  font: inherit;
  font-weight: 800;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

.chatbot-support-link:hover,
.chatbot-support-link:focus-visible {
  color: var(--accent-strong);
}

/* --- Interactive Lead Form UI --- */
.chatbot-lead-form {
  margin-top: 10px;
  background: #fff;
  border: 1px solid rgba(14, 48, 84, 0.12);
  border-radius: 12px;
  padding: 12px; /* Reduced padding */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced gap */
}

.chatbot-lead-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chatbot-lead-form .form-group.is-hidden {
  display: none;
}

.chatbot-lead-form label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.chatbot-lead-form input,
.chatbot-lead-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f8fafc;
}

.chatbot-lead-form input:focus,
.chatbot-lead-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 78, 157, 0.1);
  background: #fff;
}

.chatbot-lead-form .form-submit.is-hidden {
  display: none;
}

.chatbot-lead-form .form-submit {
  margin-top: 2px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.chatbot-lead-form .form-submit:hover {
  background: var(--accent-strong);
}

.chatbot-lead-form .form-submit:active {
  transform: scale(0.98);
}

.chatbot-lead-form .form-skip {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  align-self: center;
}

.chatbot-form {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(14, 48, 84, 0.08);
  background: rgba(247, 250, 252, 0.88);
  flex: 0 0 auto;
  min-width: 0;
}

.chatbot-form textarea {
  width: 100%;
  resize: none;
  min-height: 78px;
  max-height: 120px;
  border: 1px solid rgba(14, 48, 84, 0.14);
  border-radius: 1.15rem;
  background: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
  line-height: 1.5;
  color: var(--text);
  box-shadow: inset 0 1px 2px rgba(12, 39, 72, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  overflow-wrap: anywhere;
}

.chatbot-form textarea::placeholder {
  color: #76879c;
}

.chatbot-form textarea:focus {
  outline: none;
  border-color: rgba(13, 78, 157, 0.44);
  box-shadow: 0 0 0 3px rgba(31, 138, 192, 0.16), inset 0 1px 2px rgba(12, 39, 72, 0.04);
  background: #fff;
}

.chatbot-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.chatbot-note {
  margin: 0 auto 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  min-width: 0;
}

.chatbot-send-button {
  width: 46px;
  height: 46px;
  padding: 0;
  flex: 0 0 auto;
}

.chatbot-send-button.is-loading {
  opacity: 0.7;
}

.chatbot-send-button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.chatbot-typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 46px;
}

.chatbot-typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c89ab;
  animation: chatbot-bounce 1s infinite ease-in-out;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chatbot-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatbot-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (max-width: 640px), (max-height: 760px) {
  .chatbot-shell {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
  }

  .chatbot-panel {
    width: 100%;
    height: min(620px, calc(100dvh - 92px));
    max-height: calc(100dvh - 92px);
    border-radius: 22px;
  }

  .chatbot-launcher {
    align-self: flex-end;
    max-width: min(100%, 320px);
  }

  .chatbot-head {
    padding: 16px 16px 12px;
  }

  .chatbot-body {
    padding: 12px 16px;
  }

  .chatbot-form {
    padding: 14px 16px 16px;
  }

  .chatbot-form textarea {
    min-height: 72px;
  }
}

.gallery-album-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.gallery-album-nav .chip-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-chip-count {
  border-radius: 999px;
  background: hsl(236 51% 31% / 0.12);
  color: hsl(236 51% 29%);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.08rem 0.42rem;
}

.gallery-albums {
  margin-top: 1rem;
  display: grid;
  gap: 1.1rem;
}

.gallery-album {
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: hsl(0 0% 100% / 0.82);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.gallery-album-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.gallery-album-head .gallery-album-title {
  font-size: clamp(1.18rem, 2.6vw, 1.62rem);
}

.gallery-album-title .card-icon {
  width: 1.22rem;
  height: 1.22rem;
}

.gallery-album-title .card-icon svg {
  width: 0.78rem;
  height: 0.78rem;
}

.gallery-album-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.album-nav-strip {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.album-nav-side {
  flex: 1 1 120px;
  display: flex;
  justify-content: flex-start;
}

.album-nav-side-right {
  justify-content: flex-end;
}

.album-nav-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.gallery-album-card {
  padding: 0;
  overflow: hidden;
}

.gallery-album-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-album-card-thumb {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: hsl(224 20% 94%);
}

.gallery-album-card-thumb img,
.gallery-album-card-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-album-card:hover .gallery-album-card-thumb img,
.gallery-album-card:hover .gallery-album-card-thumb video {
  transform: scale(1.05);
}

.gallery-album-card-play {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  border-radius: 999px;
  background: hsl(224 56% 12% / 0.7);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
}

.gallery-album-card-body {
  display: block;
  padding: 1rem 1.1rem;
}

.gallery-album-card-body .gallery-album-title {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin: 0 0 0.25rem 0;
}

.gallery-album-card-body .gallery-album-meta {
  margin: 0 0 0.6rem 0;
}

.gallery-album-card-body .btn {
  pointer-events: none;
}

.gallery-grid {
  margin-top: 1.6rem;
  column-count: 2;
  column-gap: 0.8rem;
}

.album-grid {
  margin-top: 0.82rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0.8rem;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.gallery-item:focus-visible {
  outline: 2px solid hsl(356 72% 46% / 0.55);
  outline-offset: 2px;
}

.gallery-item:hover {
  transform: translateY(-1px);
  border-color: hsl(236 51% 31% / 0.28);
  box-shadow: 0 8px 16px hsl(224 40% 14% / 0.12);
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.03);
}

.play-badge {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  border-radius: 999px;
  background: hsl(224 56% 12% / 0.66);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.56rem;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 120;
  padding: 1rem;
}

.gallery-modal[hidden] {
  display: none !important;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: hsl(224 42% 12% / 0.76);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.gallery-modal-panel {
  position: relative;
  width: min(1080px, 96vw);
  max-height: 92vh;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px hsl(224 40% 8% / 0.24);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.gallery-modal.is-open .gallery-modal-backdrop {
  opacity: 1;
}

.gallery-modal.is-open .gallery-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-modal-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.gallery-modal-title {
  font-weight: 700;
}

.gallery-modal-meta {
  margin-top: 0.18rem;
  color: hsl(236 41% 33%);
  font-size: 0.82rem;
  font-weight: 600;
}

.gallery-modal-count {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.gallery-modal-media {
  background: hsl(224 36% 10%);
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 0.5rem;
}

.gallery-modal-media img,
.gallery-modal-media video {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.quote-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 130;
  padding: 1rem;
}

.quote-modal[hidden] {
  display: none !important;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: hsl(224 42% 12% / 0.76);
}

.quote-modal-panel {
  position: relative;
  width: min(760px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 32px hsl(224 40% 8% / 0.24);
}

.quote-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.quote-modal .form-wrap {
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0.95rem;
  background: transparent;
}

.founder-hero {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  align-items: start;
}

.founder-lead {
  margin-top: 0.45rem;
}

.founder-actions {
  margin-top: 0.7rem;
}

.founder-headshot-wrap {
  display: flex;
  justify-content: center;
}

.founder-headshot {
  width: clamp(148px, 22vw, 220px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-elevate);
  background: #fff;
}

.founder-grid {
  margin-top: 1.2rem;
}

.founder-left-stack {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.75rem;
}

.founder-highlight {
  margin-top: 0;
}

.founder-highlight h4 {
  margin: 0;
}

.founder-pillar-grid {
  margin-top: 0;
}

.founder-pillar {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.78);
  padding: 0.8rem 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.founder-pillar h4 {
  margin: 0;
}

.founder-pillar p {
  margin: 0;
  font-size: 0.9rem;
}

.founder-metrics {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.65rem;
}

.founder-metric-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.76);
  padding: 0.8rem 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.62rem;
  row-gap: 0.12rem;
  align-items: center;
}

.founder-metric-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(356 72% 46% / 0.2);
  background: hsl(356 72% 46% / 0.1);
  color: hsl(224 56% 18%);
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
}

.founder-metric-icon svg {
  width: 1.06rem;
  height: 1.06rem;
}

.founder-metric-value {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.06;
}

.founder-metric-label {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.founder-quote {
  margin-top: 0.2rem;
}

.founder-award-feature {
  display: grid;
  gap: 0.9rem;
}

.founder-award-head {
  display: grid;
  gap: 0.35rem;
}

.founder-award-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-elevate);
}

.founder-award-copy {
  display: grid;
  gap: 0.5rem;
}

.founder-award-kicker {
  margin: 0;
}

.founder-award-copy h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.founder-award-copy p {
  margin: 0;
}

.founder-award-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.org-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.org-chart-header .card-title {
  margin-right: auto;
}

.org-chart-frame {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  overflow: auto;
  background: #fff;
}

.org-chart-frame img {
  min-width: 920px;
  width: 100%;
  height: auto;
}

@media (min-width: 700px) {
  .intro-video-card {
    height: 100%;
  }

  .intro-video-frame {
    max-width: none;
    height: 100%;
    aspect-ratio: auto;
  }

  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    column-count: 3;
  }

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

  .split-7-5 {
    grid-template-columns: 7fr 5fr;
  }

  .split-5-7 {
    grid-template-columns: 5fr 7fr;
  }

  .card-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mini-grid.two-up,
  .field-row.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-hero {
    grid-template-columns: 1fr auto;
  }

  .founder-grid {
    grid-template-columns: 6fr 6fr;
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    column-count: 4;
  }

  .top-bar {
    display: block;
  }

  .desktop-nav {
    display: flex;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .founder-grid>.card:first-child {
    position: sticky;
    top: 6.3rem;
    align-self: start;
  }
}

@media (max-width: 699px) {
  .hero-content {
    padding-top: 4.2rem;
    padding-bottom: 4.8rem;
  }

  .chip {
    white-space: normal;
  }

  .stat-card p {
    white-space: normal;
  }

  .hero-home .hero-media::after {
    background: linear-gradient(180deg, hsl(210 35% 98% / 0.86), hsl(210 35% 98% / 0.66));
  }

  .note-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    padding: 1rem;
  }

  .gallery-modal-actions .btn {
    padding-inline: 0.85rem;
  }

  .analytics-consent {
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
    width: auto;
  }

  .partner-carousel {
    width: 100%;
  }

  .partner-carousel-item {
    flex-basis: 78%;
  }

  .testimonial-billboard-slide {
    padding: 0.9rem;
  }

  .testimonial-billboard-art {
    width: 180px;
    height: 54px;
  }

  .testimonial-billboard-art-mark {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }

  .testimonial-billboard-art-line {
    left: 50px;
    width: 100px;
  }

  .testimonial-billboard-art-orbit {
    left: 104px;
    width: 42px;
    height: 42px;
  }

  .testimonial-billboard-art-dot.dot-one {
    left: 82px;
  }

  .testimonial-billboard-art-dot.dot-two {
    left: 150px;
    top: 28px;
  }

  .partner-carousel-track {
    padding-inline: 2.45rem;
  }

  .intro-video-frame {
    max-width: none;
    border-radius: 0.9rem;
  }

  .partner-carousel-nav.prev {
    left: 0.58rem;
  }

  .partner-carousel-nav.next {
    right: 0.58rem;
  }

  .testimonial-billboard-toolbar {
    justify-items: start;
  }

  .testimonial-billboard-timer {
    display: none;
  }

  .testimonial-billboard-timer-mobile {
    display: block;
  }

  .testimonial-billboard-nav {
    width: 100%;
  }

  .testimonial-billboard-nav-button {
    flex: 1 1 auto;
    justify-content: center;
  }
}
