:root {
  --ink: #0a2638;
  --ink-deep: #061a27;
  --blue: #1975a5;
  --blue-bright: #2c8bbc;
  --green: #8bc53f;
  --green-dark: #658f2f;
  --ivory: #f7f4ed;
  --paper: #fffdf9;
  --sand: #e9e1d4;
  --muted: #65717a;
  --line: rgba(10, 38, 56, 0.14);
  --white: #ffffff;
  --shadow-sm: 0 12px 35px rgba(5, 26, 39, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 26, 39, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

::selection {
  background: var(--green);
  color: var(--ink-deep);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 9vw, 144px);
}

.section-soft {
  background: var(--ivory);
}

.section-ink {
  background: var(--ink-deep);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  position: relative;
  z-index: 100;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-contact a {
  transition: color 0.2s ease;
}

.utility-contact a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, 0.96);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(5, 26, 39, 0.07);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 205px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: #203b4b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 11px 19px;
  background: var(--ink);
  color: var(--white);
}

.button-primary {
  background: var(--green);
  box-shadow: 0 14px 30px rgba(110, 157, 49, 0.24);
  color: var(--ink-deep);
}

.button-primary:hover {
  background: #9bd84a;
  box-shadow: 0 18px 36px rgba(110, 157, 49, 0.32);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #bce880;
}

.eyebrow-center {
  justify-content: center;
}

.display-title {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(50px, 5.5vw, 82px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.display-title em {
  color: var(--blue);
  font-weight: 500;
}

.section-ink .display-title,
.survey-section .display-title,
.contact-band .display-title {
  color: var(--white);
}

.section-ink .display-title em,
.survey-section .display-title em,
.contact-band .display-title em {
  color: #bce880;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link span,
.card-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.card-link:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(840px, calc(100vh - 36px));
  overflow: hidden;
  align-items: center;
  color: var(--white);
  grid-template-columns: minmax(0, 1fr);
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
  background: var(--ink-deep);
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s linear;
}

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

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 19, 29, 0.93) 0%, rgba(3, 19, 29, 0.72) 45%, rgba(3, 19, 29, 0.28) 75%, rgba(3, 19, 29, 0.42) 100%),
    linear-gradient(0deg, rgba(3, 19, 29, 0.72) 0%, transparent 42%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  padding-block: 110px 145px;
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
}

.hero-copy {
  max-width: 790px;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(66px, 7.9vw, 118px);
  font-weight: 600;
  letter-spacing: -0.057em;
  line-height: 0.85;
  text-wrap: balance;
}

.hero h1 em {
  color: #bce880;
  font-weight: 500;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-card {
  align-self: end;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(5, 27, 40, 0.52);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-card-kicker {
  margin-bottom: 18px;
  color: #bce880;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card blockquote {
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.hero-card li {
  display: grid;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
  gap: 13px;
  grid-template-columns: auto 1fr;
}

.hero-card li span {
  color: #bce880;
  font-size: 10px;
  font-weight: 700;
}

.hero-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 19, 29, 0.46);
  backdrop-filter: blur(12px);
}

.hero-footer-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
}

.hero-footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.intro-grid {
  display: grid;
  align-items: end;
  gap: clamp(50px, 10vw, 170px);
  grid-template-columns: 1.25fr 0.75fr;
}

.intro-copy {
  padding-bottom: 4px;
}

.intro-copy p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-heading {
  margin-bottom: clamp(50px, 6vw, 82px);
}

.split-heading {
  display: grid;
  align-items: end;
  gap: clamp(50px, 10vw, 160px);
  grid-template-columns: 1.3fr 0.7fr;
}

.split-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.8;
}

.split-heading-light > p {
  color: rgba(255, 255, 255, 0.64);
}

.centered {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.centered .display-title {
  margin-inline: auto;
}

.centered > p:last-child {
  max-width: 590px;
  margin: 26px auto 0;
  color: var(--muted);
}

.tour-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.tour-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 38, 56, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  grid-column: span 6;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tour-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.tour-card-featured {
  grid-column: span 8;
}

.tour-card:nth-child(2) {
  grid-column: span 4;
}

.tour-image {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--sand);
}

.tour-card-featured .tour-image {
  min-height: 370px;
}

.tour-card:nth-child(2) .tour-image {
  min-height: 370px;
}

.tour-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 26, 39, 0.34), transparent 48%);
  content: "";
  pointer-events: none;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}

.tour-card:hover .tour-image img {
  transform: scale(1.045);
}

.status {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.status-open {
  background: var(--green);
  color: var(--ink-deep);
}

.status-wait {
  background: #dfaa5b;
  color: #2f210d;
}

.status-soon {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.tour-body {
  display: flex;
  padding: clamp(26px, 3.3vw, 42px);
  flex: 1;
  flex-direction: column;
}

.tour-region {
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tour-body h3 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.tour-body > p:not(.tour-region) {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tour-body .card-link {
  margin-top: auto;
}

.catalog-note {
  display: flex;
  margin-top: 28px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.catalog-note p {
  margin: 0;
  color: var(--muted);
}

.catalog-note strong {
  color: var(--ink);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(64px, 9vw, 130px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.about-visual {
  position: relative;
  min-height: 680px;
}

.about-main {
  width: calc(100% - 70px);
  height: 570px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  margin: 0;
  padding: 10px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.about-float img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 17px;
  object-fit: cover;
}

.about-seal {
  position: absolute;
  top: 32px;
  right: 11px;
  display: grid;
  width: 132px;
  height: 132px;
  padding: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 16px 35px rgba(70, 105, 28, 0.28);
  align-content: center;
  color: var(--ink-deep);
  line-height: 1.05;
  text-align: center;
  transform: rotate(6deg);
}

.about-seal span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-seal strong {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
}

.about-copy .lead {
  margin: 30px 0 20px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.about-copy > p:not(.eyebrow, .lead) {
  color: var(--muted);
}

.values-list {
  display: grid;
  margin-top: 34px;
}

.values-list > div {
  display: grid;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  gap: 18px;
  grid-template-columns: 36px 1fr;
}

.values-list span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.values-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.values-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.certification {
  display: flex;
  margin-top: 22px;
  padding: 17px;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  align-items: center;
  gap: 17px;
}

.certification img {
  width: 76px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.certification p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.certification strong {
  color: var(--ink);
  font-size: 14px;
}

.numbers {
  padding-block: 74px;
  background: var(--blue);
  color: var(--white);
}

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

.numbers-grid > div {
  display: grid;
  padding-inline: clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  gap: 4px;
  text-align: center;
}

.numbers-grid > div:last-child {
  border-right: 0;
}

.numbers strong {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.numbers span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-steps {
  position: relative;
  display: grid;
  margin: 80px 0 0;
  padding: 0;
  gap: 26px;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.journey-steps::before {
  position: absolute;
  top: 20px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line);
  content: "";
}

.journey-steps li {
  position: relative;
  text-align: center;
}

.journey-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  place-items: center;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.journey-steps h3 {
  margin-bottom: 11px;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 240px;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: #16374a;
  color: var(--white);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 19, 29, 0.72), transparent 52%);
  content: "";
  transition: background 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 17px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  text-align: left;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-cta {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gallery-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
}

.video-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: 0.78fr 1.22fr;
}

.video-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0;
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.survey-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.survey-section::before,
.survey-section::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.survey-section::before {
  top: -340px;
  left: -260px;
  width: 720px;
  height: 720px;
}

.survey-section::after {
  right: -140px;
  bottom: -300px;
  width: 520px;
  height: 520px;
}

.survey-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
}

.survey-intro {
  position: sticky;
  top: 140px;
}

.survey-intro > p:not(.eyebrow) {
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.survey-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.survey-promise span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
}

.survey-panel {
  min-height: 650px;
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(3, 19, 29, 0.28);
  color: var(--ink);
}

.survey-topline {
  display: flex;
  margin-bottom: 48px;
  align-items: center;
  gap: 18px;
}

.survey-topline p {
  min-width: 46px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.survey-progress {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sand);
}

.survey-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.35s ease;
}

.survey-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.survey-step[hidden] {
  display: none;
}

.survey-step.is-active {
  animation: step-in 0.38s ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.survey-step legend {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.field-help {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-grid-feature {
  grid-template-columns: repeat(2, 1fr);
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 144px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  align-content: start;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice-card:hover {
  border-color: rgba(25, 117, 165, 0.42);
  transform: translateY(-2px);
}

.choice-card:has(input:checked) {
  border-color: var(--green-dark);
  background: #f4faec;
  box-shadow: inset 0 0 0 1px var(--green-dark);
}

.choice-card input,
.pill-choice input,
.inline-choices input,
.check-line input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-number {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.choice-card strong {
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.choice-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.choice-card:has(input:focus-visible),
.pill-choice:has(input:focus-visible),
.inline-choices label:has(input:focus-visible),
.check-line:has(input:focus-visible) {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.choice-grid-compact {
  grid-template-columns: repeat(2, 1fr);
}

.pill-choice {
  cursor: pointer;
}

.pill-choice span {
  display: flex;
  min-height: 58px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pill-choice input:checked + span {
  border-color: var(--green-dark);
  background: #eef8e2;
  box-shadow: inset 0 0 0 1px var(--green-dark);
}

.field-error,
.survey-message {
  color: #a33131;
  font-size: 12px;
  font-weight: 600;
}

.field-error {
  min-height: 20px;
  margin: 10px 0 0;
}

.form-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-group {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field-group > label,
.field-label {
  display: block;
  margin-bottom: 8px;
  color: #304a59;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.field-group label span {
  color: var(--muted);
  font-weight: 500;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-group input,
.field-group select {
  height: 56px;
  padding: 0 15px;
}

.field-group textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 117, 165, 0.11);
}

.field-group :invalid:not(:placeholder-shown) {
  border-color: #b64545;
}

.inline-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.inline-choices label {
  cursor: pointer;
}

.inline-choices span {
  display: block;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.inline-choices input:checked + span {
  border-color: var(--green-dark);
  background: #eef8e2;
  box-shadow: inset 0 0 0 1px var(--green-dark);
}

.check-line {
  position: relative;
  display: grid;
  padding-left: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  cursor: pointer;
}

.check-line::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  content: "";
  place-items: center;
}

.check-line:has(input:checked)::before {
  border-color: var(--green-dark);
  background: var(--green);
  color: var(--ink-deep);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.check-line a {
  color: var(--blue);
  text-decoration: underline;
}

.privacy-link {
  margin: -12px 0 0 30px;
  color: var(--muted);
  font-size: 11px;
}

.privacy-link a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.survey-message {
  min-height: 22px;
  margin-top: 14px;
}

.survey-message.is-success {
  color: var(--green-dark);
}

.survey-actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button-back {
  background: transparent;
  color: var(--muted);
}

.survey-result {
  animation: step-in 0.4s ease both;
}

.result-kicker {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.survey-result h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.survey-result > p:not(.result-kicker, .result-note) {
  color: var(--muted);
  font-size: 16px;
}

.result-recommendation {
  display: grid;
  margin-block: 30px;
  padding: 24px;
  border-radius: 16px;
  background: var(--ivory);
  gap: 5px;
}

.result-recommendation span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-recommendation strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 600;
}

.result-note {
  color: var(--muted);
  font-size: 12px;
}

.result-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 18px;
}

.text-button {
  padding: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.team-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 0.76;
}

.team-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 19, 29, 0.9), transparent 58%);
  content: "";
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88);
  transition: transform 0.6s ease, filter 0.35s ease;
}

.team-card:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.team-card div {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
}

.team-card h3 {
  margin-bottom: 2px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 29px);
  font-weight: 600;
  line-height: 1;
}

.team-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-intro {
  position: sticky;
  top: 140px;
}

.faq-intro > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: grid;
  width: 100%;
  padding: 25px 0;
  background: transparent;
  align-items: center;
  gap: 20px;
  grid-template-columns: 1fr 24px;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
}

.accordion-item button span {
  position: relative;
  width: 22px;
  height: 22px;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 1px;
  background: var(--blue);
  content: "";
  transition: transform 0.2s ease;
}

.accordion-item button span::after {
  transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.accordion-item [role="region"] {
  padding: 0 55px 25px 0;
}

.accordion-item [role="region"] p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-band {
  position: relative;
  display: grid;
  min-height: 700px;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.contact-band-image,
.contact-band-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.contact-band-image {
  background: url("../images/galeria-11.jpg") center 48% / cover no-repeat;
}

.contact-band-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 19, 29, 0.94), rgba(3, 19, 29, 0.65) 55%, rgba(3, 19, 29, 0.22));
}

.contact-band-inner {
  padding-block: 100px;
}

.contact-band-inner .display-title {
  max-width: 790px;
  font-size: clamp(62px, 7vw, 100px);
}

.contact-band-inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.site-footer {
  padding-top: 82px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  padding-bottom: 70px;
  gap: 50px;
  grid-template-columns: 1.55fr 0.75fr 1.05fr 0.65fr;
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 6px;
}

.footer-brand p {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.35;
}

.footer-main h2 {
  margin-bottom: 20px;
  color: #bce880;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-main a,
.footer-main > div:not(.footer-brand) p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.65;
  transition: color 0.2s ease;
}

.footer-main a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 54px;
  padding: 8px 17px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: #1b9b55;
  box-shadow: 0 14px 38px rgba(4, 31, 18, 0.28);
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 42px rgba(4, 31, 18, 0.36);
  transform: translateY(-3px);
}

.whatsapp-float span {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.whatsapp-float b {
  font-size: 11px;
}

.lightbox {
  width: min(92vw, 1120px);
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(3, 14, 21, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  border-radius: 16px;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -50px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff4d8;
  color: #49380d;
  font-size: 13px;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}

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

@media (max-width: 1120px) {
  .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .main-nav .button {
    display: none;
  }

  .hero-layout {
    gap: 50px;
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .survey-shell {
    gap: 60px;
    grid-template-columns: 0.75fr minmax(480px, 1.25fr);
  }

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

  .team-card:nth-child(4),
  .team-card:nth-child(5) {
    aspect-ratio: 0.95;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner > p {
    display: none;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 176px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100dvh - 78px);
    padding: 45px 28px;
    overflow-y: auto;
    background: rgba(255, 253, 249, 0.99);
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    transition: clip-path 0.35s cubic-bezier(0.2, 0.7, 0, 1), opacity 0.25s ease, visibility 0s linear 0.35s;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    clip-path: inset(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .main-nav > a:not(.button) {
    padding: 10px 0;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 15px;
    font-family: var(--font-sans);
    font-size: 13px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-layout {
    padding-block: 100px 130px;
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .hero h1 {
    max-width: 760px;
  }

  .intro-grid,
  .split-heading,
  .about-grid,
  .video-grid,
  .survey-shell,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .video-copy,
  .video-frame,
  .survey-intro,
  .survey-panel {
    min-width: 0;
  }

  .split-heading {
    gap: 28px;
  }

  .split-heading > p {
    max-width: 620px;
  }

  .tour-card,
  .tour-card-featured,
  .tour-card:nth-child(2) {
    grid-column: span 6;
  }

  .tour-card-featured .tour-image,
  .tour-card:nth-child(2) .tour-image,
  .tour-image {
    min-height: 280px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-visual {
    max-width: 700px;
  }

  .journey-steps {
    gap: 18px;
  }

  .journey-steps p {
    font-size: 12px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
    grid-template-columns: repeat(3, 1fr);
  }

  .survey-intro,
  .faq-intro {
    position: static;
  }

  .survey-intro {
    max-width: 680px;
  }

  .survey-panel {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 82px;
  }

  .utility-bar {
    font-size: 10px;
  }

  .utility-contact a:last-child,
  .utility-contact span {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 154px;
  }

  .main-nav { height: calc(100dvh - 72px); }

  .display-title {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-layout {
    padding-block: 92px 115px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-footer-inner {
    min-height: 58px;
    justify-content: flex-start;
    gap: 12px;
    overflow: hidden;
    font-size: 14px;
    white-space: nowrap;
  }

  .intro-grid {
    gap: 34px;
  }

  .tour-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tour-card,
  .tour-card-featured,
  .tour-card:nth-child(2) {
    grid-column: 1;
  }

  .tour-image,
  .tour-card-featured .tour-image,
  .tour-card:nth-child(2) .tour-image {
    min-height: 250px;
  }

  .tour-body {
    padding: 26px;
  }

  .catalog-note {
    align-items: stretch;
    flex-direction: column;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-main {
    width: calc(100% - 35px);
    height: 430px;
  }

  .about-float {
    width: 45%;
  }

  .about-seal {
    top: 20px;
    width: 104px;
    height: 104px;
  }

  .about-seal strong {
    font-size: 21px;
  }

  .numbers {
    padding-block: 55px;
  }

  .numbers-grid {
    gap: 34px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid > div:nth-child(2) {
    border-right: 0;
  }

  .numbers-grid > div:nth-child(3),
  .numbers-grid > div:nth-child(4) {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .journey-steps {
    margin-top: 48px;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .journey-steps::before {
    top: 20px;
    bottom: 20px;
    left: 20px;
    width: 1px;
    height: auto;
  }

  .journey-steps li {
    display: grid;
    padding-bottom: 30px;
    align-items: start;
    gap: 20px;
    grid-template-columns: 42px 1fr;
    text-align: left;
  }

  .journey-steps li > span {
    margin: 0;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-tall {
    grid-row: span 2;
  }

  .gallery-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .video-grid {
    gap: 45px;
  }

  .survey-shell {
    gap: 50px;
  }

  .survey-panel {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .survey-topline {
    margin-bottom: 34px;
  }

  .choice-grid-feature,
  .choice-grid-compact,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: 1;
  }

  .choice-card {
    min-height: 116px;
  }

  .survey-actions,
  .result-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .survey-actions .button,
  .result-actions .button {
    width: 100%;
  }

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

  .team-card,
  .team-card:nth-child(4),
  .team-card:nth-child(5) {
    aspect-ratio: 0.76;
  }

  .team-card:last-child {
    grid-column: span 2;
    aspect-ratio: 1.25;
  }

  .faq-grid {
    gap: 48px;
  }

  .accordion-item button {
    font-size: 22px;
  }

  .contact-band {
    min-height: 640px;
  }

  .contact-band-inner .display-title {
    font-size: clamp(54px, 16vw, 72px);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 25px;
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 13px;
    bottom: 13px;
  }

  .whatsapp-float b {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    padding: 8px;
  }

  .whatsapp-float span {
    width: 38px;
  }
}

@media (max-width: 430px) {
  .numbers-grid > div {
    padding-inline: 10px;
  }

  .numbers strong {
    font-size: clamp(36px, 12vw, 48px);
  }

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

  .team-card,
  .team-card:nth-child(4),
  .team-card:nth-child(5),
  .team-card:last-child {
    grid-column: 1;
    aspect-ratio: 0.9;
  }

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

  .footer-main > div:nth-child(4) {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-slide.is-active {
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .hero-actions,
  .survey-section,
  .whatsapp-float,
  .contact-band,
  .site-footer {
    display: none !important;
  }

  .section {
    padding-block: 30px;
  }

  body {
    background: #fff;
    color: #000;
  }
}
