/* Stayverse global styles */
:root {
  --navy: #0a2342;
  --navy-2: #12365d;
  --orange: #ff7a00;
  --orange-dark: #d86400;
  --white: #ffffff;
  --gray: #f5f7fa;
  --gray-2: #e7edf5;
  --ink: #172033;
  --muted: #607089;
  --success: #0f9f6e;
  --shadow: 0 18px 48px rgba(10, 35, 66, 0.14);
  --shadow-soft: 0 10px 28px rgba(10, 35, 66, 0.1);
  --radius: 8px;
  --header-height: 72px;
  --container: min(1120px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
.btn,
.nav-toggle,
.slider-btn,
.back-to-top {
  min-height: 44px;
  min-width: 44px;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 52px;
  height: 52px;
  border: 4px solid var(--gray-2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--gray);
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.9rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
}

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

.lead {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: #42536c;
  max-width: 760px;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}

.text-link:hover::after {
  width: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(10, 35, 66, 0.12);
}

.btn-outline {
  color: var(--navy);
  border: 1px solid rgba(10, 35, 66, 0.16);
  background: var(--white);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.nav-shell {
  width: var(--container);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  font-size: 0.96rem;
}

.desktop-nav {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

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

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 999;
  display: grid;
  gap: 18px;
  padding: 22px 16px 28px;
  background: var(--white);
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  box-shadow: var(--shadow);
  transform: translateY(-120%);
  visibility: hidden;
  transition: transform 0.25s ease, visibility 0.25s ease;
}

.mobile-panel.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-panel .brand {
  width: fit-content;
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav a,
.desktop-nav a {
  color: var(--navy);
  font-weight: 750;
}

.mobile-nav a {
  padding: 12px 6px;
  border-bottom: 1px solid var(--gray-2);
}

.mobile-nav a.active,
.desktop-nav a.active {
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 35, 66, 0.94) 0%, rgba(10, 35, 66, 0.78) 48%, rgba(10, 35, 66, 0.24) 100%),
    image-set(url("../images/hero.jpg") 1x);
  background-size: cover;
  background-position: 74% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(10, 35, 66, 0.9));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
  padding: 76px 0 92px;
  color: var(--white);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.55rem, 6.3vw, 5.15rem);
  text-wrap: balance;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
  max-width: 640px;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-weight: 750;
  font-size: 0.88rem;
}

.proof-pill svg,
.icon-badge svg,
.small-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.booking-card {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card form,
.filter-bar,
.contact-grid,
.newsletter-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(10, 35, 66, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 6px 0 0;
  color: var(--success);
  font-weight: 750;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-card,
.category-card,
.team-card,
.blog-card,
.benefit-card,
.amenity-card,
.step-card {
  padding: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.category-card:hover,
.team-card:hover,
.blog-card:hover,
.benefit-card:hover,
.amenity-card:hover,
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: var(--shadow);
}

.icon-badge,
.small-icon {
  display: inline-grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.12);
  border-radius: 999px;
}

.icon-badge {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.small-icon {
  width: 38px;
  height: 38px;
}

.category-card {
  min-height: 210px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(10, 35, 66, 0.94), rgba(18, 54, 93, 0.78)),
    var(--navy);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -40% -25% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.22);
}

.category-card h3,
.category-card p {
  position: relative;
  color: var(--white);
}

.category-card p {
  color: rgba(255, 255, 255, 0.78);
}

.destination-card,
.property-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.destination-card:hover,
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-2);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.destination-card:hover .media img,
.property-card:hover .media img,
.blog-card:hover .media img {
  transform: scale(1.05);
}

.card-body {
  padding: 18px;
}

.meta-row,
.pill-row,
.stats-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gray);
  font-size: 0.82rem;
  font-weight: 750;
}

.pill.accent {
  color: var(--white);
  background: var(--orange);
}

.community-panel,
.franchise-band,
.app-panel,
.story-panel,
.contact-panel {
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.community-panel,
.franchise-band,
.app-panel,
.story-panel {
  padding: 28px;
}

.community-panel h2,
.community-panel h3,
.franchise-band h2,
.franchise-band h3,
.app-panel h2,
.app-panel h3,
.story-panel h2,
.story-panel h3 {
  color: var(--white);
}

.community-panel p,
.franchise-band p,
.app-panel p,
.story-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: inherit;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 42%, var(--white) 42% 56%, transparent 56%),
    var(--orange);
}

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

.stat-card {
  padding: 22px 14px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  display: block;
  color: var(--orange);
  font-size: clamp(2rem, 9vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--navy);
  font-weight: 800;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 4px;
}

.testimonial-card {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 35, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.quote {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 750;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.slider-btn {
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 7px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  min-width: 9px;
  min-height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 35, 66, 0.22);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--orange);
}

.app-panel {
  display: grid;
  gap: 24px;
}

.phone-mock {
  width: min(310px, 100%);
  margin-inline: auto;
  padding: 14px;
  border-radius: 34px;
  background: #071b33;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.phone-screen {
  min-height: 500px;
  padding: 18px;
  border-radius: 24px;
  background: var(--white);
}

.phone-card {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--gray);
}

.phone-card strong {
  color: var(--navy);
}

.page-hero {
  padding: 72px 0 54px;
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.95), rgba(18, 54, 93, 0.84)),
    url("../images/hero.jpg") center / cover;
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.crumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  font-size: 0.9rem;
}

.crumbs a {
  color: var(--white);
}

.listing-layout {
  display: grid;
  gap: 22px;
}

.filter-panel {
  padding: 18px;
  position: sticky;
  top: calc(var(--header-height) + 16px);
  align-self: start;
}

.property-card .card-body {
  display: grid;
  gap: 12px;
}

.price {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding-left: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.14);
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--orange));
  font-size: 1.5rem;
  font-weight: 900;
}

.article-feature {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.article-feature .media {
  aspect-ratio: 16 / 11;
}

.blog-card .card-body {
  display: grid;
  gap: 10px;
}

.blog-tag {
  width: fit-content;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
}

.contact-details {
  padding: 26px;
  background: var(--navy);
}

.contact-details h2,
.contact-details h3,
.contact-details p,
.contact-details a {
  color: var(--white);
}

.contact-details p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  padding: 22px;
  background: var(--white);
}

.map-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--navy);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(10, 35, 66, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(10, 35, 66, 0.05) 1px, transparent 1px),
    var(--gray);
  background-size: 34px 34px;
}

.site-footer {
  padding: 52px 0 24px;
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 900;
}

.newsletter-form {
  grid-template-columns: 1fr;
}

.newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.whatsapp-chat {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-chat:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.38);
}

.whatsapp-chat svg {
  width: 28px;
  height: 28px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.swipe-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 86%);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.swipe-row > * {
  scroll-snap-align: start;
}

.hidden {
  display: none !important;
}

.mt-18 {
  margin-top: 18px;
}

.mt-28 {
  margin-top: 28px;
}

.no-overlap {
  margin-top: 0;
}

@media (min-width: 640px) {
  .booking-card form,
  .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .proof-pill {
    justify-content: center;
  }

  .article-feature {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (min-width: 820px) {
  .section {
    padding: 86px 0;
  }

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

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

  .booking-card {
    padding: 20px;
  }

  .booking-card form {
    grid-template-columns: 1.2fr repeat(3, minmax(130px, 0.8fr)) auto;
    align-items: end;
  }

  .split,
  .app-panel,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-layout {
    grid-template-columns: minmax(230px, 280px) 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr;
  }
}

@media (min-width: 1060px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.9rem;
  }

  .desktop-nav a {
    position: relative;
    padding: 25px 0;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a.active::after {
    transform: scaleX(1);
  }

  .nav-toggle,
  .mobile-panel {
    display: none;
  }

  .hero {
    align-items: center;
    background-position: center;
  }

  .hero-content {
    padding: 118px 0 158px;
  }

  .hero .lead {
    max-width: 640px;
  }

  .testimonial-slide {
    flex-basis: 50%;
  }

  .swipe-row {
    display: grid;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: min(1280px, calc(100% - 64px));
  }
}

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

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