/* =========================================================
   XPLOR 360 — Light theme (fondo blanco)
   Ink · Cream · Steel · Tan
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f4ef;
  --bg-muted: #efeae2;
  --ink: #14181f;
  --ink-soft: #2a3038;
  --text: #1c222b;
  --text-muted: #5c6570;
  --cream: #ebe3d4;
  --steel: #6f91a5;
  --steel-deep: #4a6b7c;
  --steel-soft: rgba(111, 145, 165, 0.16);
  --tan: #a89070;
  --tan-deep: #8a7358;
  --line: rgba(20, 24, 31, 0.1);
  --line-strong: rgba(20, 24, 31, 0.18);

  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --space-lg: 3.5rem;
  --space-xl: 5.5rem;
  --radius: 2px;
  --header-h: 4.25rem;
  --container: 1120px;
  --narrow: 720px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px rgba(20, 24, 31, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #0b0e12;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(20, 24, 31, 0.04);
}

.btn-wide {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 24, 31, 0.05);
}

.header-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  margin-left: 0.35rem;
  border: 1px solid var(--line-strong);
  color: var(--ink) !important;
}

.nav-cta:hover {
  background: var(--bg-soft);
  border-color: var(--ink);
}

/* ---------- Hero: paisaje + jets encima ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 4.5rem;
  background: var(--bg-soft);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 35%, rgba(247, 244, 239, 0.88) 100%),
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(255, 255, 255, 0.25), transparent 65%);
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.plane {
  position: absolute;
  z-index: 1;
  will-change: transform;
}

.plane svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 10px 14px rgba(20, 24, 31, 0.35));
}

.plane-a {
  top: 14%;
  width: clamp(110px, 18vw, 180px);
  animation: fly-left 16s linear infinite;
}

.plane-b {
  top: 24%;
  width: clamp(80px, 13vw, 140px);
  animation: fly-left 22s linear infinite;
  animation-delay: -7s;
  opacity: 0.9;
}

.plane-c {
  top: 38%;
  width: clamp(60px, 10vw, 110px);
  animation: fly-left 28s linear infinite;
  animation-delay: -14s;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: 0 20px 50px rgba(20, 24, 31, 0.12);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  animation: rise 1s var(--ease) both;
}

.hero-logo {
  width: clamp(130px, 36vw, 210px);
  height: auto;
  margin: 0 auto 1.25rem;
  background: transparent;
  animation: logo-float 6s ease-in-out infinite;
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: 0.28em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.hero-title {
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.hero-lead {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  opacity: 0.65;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ---------- Sections ---------- */
.section-head {
  margin-bottom: var(--space-lg);
  max-width: 36rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-deep);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 34rem;
}

.section-action {
  margin-top: var(--space-lg);
  text-align: center;
}

/* ---------- Search ---------- */
.search-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.search-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.tab.is-active {
  color: var(--ink);
}

.tab.is-active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -0.9rem;
  height: 2px;
  background: var(--steel);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.field span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px var(--steel-soft);
}

.field-check {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  align-self: end;
  min-height: 3rem;
  padding-bottom: 0.35rem;
}

.field-check input {
  width: 1.05rem;
  height: 1.05rem;
  min-height: auto;
  accent-color: var(--steel-deep);
}

.field-check span {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--steel-soft);
  border-left: 3px solid var(--steel);
  color: var(--ink);
  font-size: 0.95rem;
}

.form-status.is-error {
  background: rgba(180, 90, 80, 0.1);
  border-left-color: #b45a50;
}

/* ---------- Destinations: imagen y texto NUNCA se solapan ---------- */
.destinations {
  padding: var(--space-xl) 0;
  background: var(--bg-soft);
}

.dest-list {
  display: flex;
  flex-direction: column;
}

.dest-item {
  border-top: 1px solid var(--line);
}

.dest-item:last-child {
  border-bottom: 1px solid var(--line);
}

.dest-link {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.dest-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-muted);
  width: 100%;
}

.dest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.dest-link:hover .dest-media img {
  transform: scale(1.04);
}

.dest-copy {
  min-width: 0;
}

.dest-copy h3 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.dest-copy p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.dest-price {
  color: var(--ink) !important;
  margin-bottom: 1.15rem !important;
}

.dest-price strong {
  color: var(--steel-deep);
  font-weight: 600;
}

.dest-cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--tan);
  padding-bottom: 0.2rem;
}

/* ---------- About ---------- */
.about {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--bg);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 12% 40%, rgba(111, 145, 165, 0.12), transparent 60%),
    radial-gradient(ellipse 35% 40% at 90% 80%, rgba(168, 144, 112, 0.1), transparent 55%);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  display: grid;
  place-items: center;
}

.about-visual img {
  width: min(100%, 340px);
  background: transparent;
  animation: logo-float 7s ease-in-out infinite;
}

.about-copy h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.about-copy > p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.about-points li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--steel);
  min-width: 0;
}

.about-points strong {
  font-size: 0.95rem;
}

.about-points span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: var(--space-xl) 0;
  background: var(--bg-soft);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-auto-rows: minmax(200px, 26vw);
  gap: 0.75rem;
}

.g-item {
  margin: 0;
  overflow: hidden;
  background: var(--bg-muted);
  min-width: 0;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.g-item:hover img {
  transform: scale(1.04);
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0 1rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  letter-spacing: 0.06em;
  padding: 0.65rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--steel-deep);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--text-muted);
  font-weight: 300;
  padding-bottom: 0.5rem;
  max-width: 40rem;
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--space-xl) 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(111, 145, 165, 0.12), transparent 55%),
    var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.85rem;
}

.contact-info .section-lead {
  margin-bottom: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-deep);
  margin-bottom: 0.25rem;
}

.contact-list a:hover {
  border-bottom: 1px solid var(--tan);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form .btn-wide,
.contact-form .form-status {
  grid-column: 1 / -1;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  justify-items: center;
  text-align: center;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
  background: transparent;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

.footer-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235, 227, 212, 0.7);
  margin-top: 0.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 227, 212, 0.72);
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(235, 227, 212, 0.45);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Animations ---------- */
@keyframes fly-left {
  0% {
    transform: translateX(-25vw) translateY(0);
  }
  50% {
    transform: translateX(45vw) translateY(-10px);
  }
  100% {
    transform: translateX(115vw) translateY(6px);
  }
}

@keyframes hero-drift {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.1) translate(-1%, 1%); }
}

@keyframes cloud-drift {
  from { transform: translateX(0); }
  to { transform: translateX(120vw); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---------- Responsive: sin solapes ---------- */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 0.9rem 0.5rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  /* Destinos: columna — imagen arriba, texto debajo (nunca encima) */
  .dest-link {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .about-visual img {
    width: min(68%, 240px);
  }

  .about-copy h2 {
    max-width: none;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  /* Aviones solo en zona superior, lejos del bloque de texto */
  .plane-a { top: 8%; }
  .plane-b { top: 16%; }
  .plane-c { display: none; }
}

@media (max-width: 640px) {
  .brand-tag {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 3.5rem;
  }

  .hero-content {
    width: 100%;
    padding: 1.25rem 1rem 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .plane-a { top: 6%; width: 88px; }
  .plane-b { top: 12%; width: 64px; opacity: 0.75; }

  .search-grid,
  .contact-form,
  .about-points {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .field-return.is-hidden {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .plane {
    display: none;
  }
}
