﻿:root {
  --plum: #520059;
  --plum-deep: #26002a;
  --wine: #93345d;
  --gold: #d8a543;
  --mint: #d9efe2;
  --cream: #fff8ea;
  --paper: #fffdf7;
  --ink: #17111a;
  --muted: #6d6270;
  --line: rgba(23, 17, 26, 0.12);
  --shadow: 0 24px 70px rgba(20, 9, 28, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.promo-strip,
.marquee-benefits {
  overflow: hidden;
  white-space: nowrap;
}

.promo-strip {
  position: relative;
  z-index: 30;
  background: #f5efe2;
  border-bottom: 1px solid rgba(82, 0, 89, 0.12);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.ticker,
.benefit-track {
  display: inline-flex;
  min-width: max-content;
  animation: slide 25s linear infinite;
}

.ticker span,
.benefit-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 18px;
}

.ticker span::after,
.benefit-track span::after {
  content: ".";
  color: var(--gold);
  font-weight: 900;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(82, 0, 89, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.brand {
  display: grid;
  place-items: center;
}

.brand img {
  width: 72px;
}

.nav a:not(.brand) {
  padding: 12px 6px;
}

.nav-cta {
  color: #fff;
  background: var(--wine);
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  background-image: url("assets/hero-recepcion.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 11, 31, 0.86) 0%, rgba(55, 20, 59, 0.68) 42%, rgba(28, 11, 31, 0.28) 100%),
    linear-gradient(0deg, rgba(20, 8, 24, 0.3), rgba(20, 8, 24, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 42px;
  width: min(1180px, calc(100% - 40px));
  min-height: 820px;
  margin: 0 auto;
  padding: 72px 0 58px;
  align-items: center;
}

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

.hero-side {
  display: grid;
  gap: 18px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 9px;
  margin-bottom: 28px;
  background: rgba(15, 9, 17, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
}

.avatar-stack {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 34px;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: -7px;
  background: var(--cream);
  color: var(--plum);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.eyebrow,
.section-label {
  margin: 0 0 13px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow.dark,
.section-label {
  color: var(--wine);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 8.2vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

.deal-box {
  max-width: 590px;
  padding: 20px 22px;
  margin-bottom: 24px;
  background: rgba(255, 248, 234, 0.96);
  color: var(--ink);
  border-left: 6px solid var(--gold);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.deal-box strong,
.deal-box span {
  display: block;
}

.deal-box strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.deal-kicker {
  margin-bottom: 4px;
  color: var(--wine);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 74px);
  gap: 10px;
}

.time-grid div {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.time-grid strong {
  font-size: 1.7rem;
}

.time-grid small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.lead-form {
  padding: 28px;
  background: rgba(255, 253, 247, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-head {
  margin-bottom: 22px;
}

.form-head span {
  color: var(--wine);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.form-head h2 {
  margin: 6px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.05rem;
  line-height: 1;
}

.form-head p,
.form-note,
.form-status {
  color: var(--muted);
  line-height: 1.55;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.cloudbeds-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 38%),
    linear-gradient(135deg, #fff6db 0%, #f2cd77 48%, #b88924 100%);
  box-shadow: 0 22px 54px rgba(20, 9, 28, 0.2);
}

.cloudbeds-panel-inner {
  padding: 22px 20px 18px;
  text-align: center;
}

.cloudbeds-panel-kicker {
  margin: 0 0 10px;
  color: rgba(38, 0, 42, 0.72);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
}

.cloudbeds-panel h2 {
  margin: 0 auto 12px;
  max-width: 520px;
  color: var(--plum-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.cloudbeds-panel-copy {
  max-width: 500px;
  margin: 0 auto 16px;
  color: rgba(38, 0, 42, 0.78);
  line-height: 1.6;
}

.cloudbeds-box-body {
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(147, 52, 93, 0.14);
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 900;
}

.primary-btn {
  width: 100%;
  color: #fff;
  background: var(--plum);
  box-shadow: 0 14px 24px rgba(82, 0, 89, 0.25);
}

.secondary-btn {
  width: fit-content;
  color: #fff;
  background: var(--wine);
}

.ghost-btn {
  width: fit-content;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.map-link {
  width: fit-content;
  color: var(--plum);
  background: var(--mint);
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
}

.form-status {
  min-height: 23px;
  margin: 10px 0 0;
  font-weight: 800;
}

.form-status.is-ok {
  color: #0a7147;
}

.form-status.is-error {
  color: #9c1735;
}

.marquee-benefits {
  background: var(--plum);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.benefit-track {
  animation-duration: 30s;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.promos {
  padding: 70px 0 86px;
}

.promos-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.promos-head h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.02;
}

.promos-sub {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  min-height: 54px;
  border-radius: 8px;
  background: var(--plum);
  border: 1px solid rgba(82, 0, 89, 0.32);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 18px 50px rgba(20, 9, 28, 0.18);
}

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

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 230px;
  border: 1px solid rgba(23, 17, 26, 0.12);
  box-shadow: 0 18px 50px rgba(20, 9, 28, 0.12);
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 17, 26, 0.88) 0%, rgba(23, 17, 26, 0.54) 54%, rgba(23, 17, 26, 0.18) 100%),
    linear-gradient(180deg, rgba(23, 17, 26, 0.18) 0%, rgba(23, 17, 26, 0.48) 100%);
}

.promo-card-inner {
  position: relative;
  z-index: 1;
  padding: 18px 18px 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  color: #fff;
}

.promo-tag {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
}

.promo-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1;
}

.promo-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.promo-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
}

.promo-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.promo-winter::before {
  background-image: url("assets/promo-invierno-mendoza.png");
}

.promo-autumn::before {
  background-image: url("assets/promo-otono-parque.png");
}

.intro {
  text-align: center;
}

.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  text-align: left;
}

.intro-main {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 30px 8px;
}

.intro-main .section-label {
  margin-bottom: 14px;
}

.intro h2,
.cards h2,
.reviews h2 {
  max-width: 800px;
  margin: 0 auto 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.intro p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.intro-main h2,
.intro-main p {
  margin-left: 0;
  margin-right: 0;
}

.rental-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 8px;
  align-items: center;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(135deg, #fff5da 0%, #f4d38a 42%, #e8bf5c 100%);
  border: 1px solid rgba(216, 165, 67, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 9, 28, 0.12);
}

.rental-copy {
  position: relative;
  z-index: 1;
}

.rental-kicker {
  margin: 0 0 10px;
  color: rgba(38, 0, 42, 0.72);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.rental-card h3 {
  margin: 0 0 14px;
  color: var(--plum-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 0.94;
}

.rental-card p:last-of-type {
  margin: 0;
  color: rgba(38, 0, 42, 0.8);
  font-size: 1rem;
  line-height: 1.72;
}

.rental-btn {
  margin-top: 24px;
  width: fit-content;
  background: var(--plum-deep);
}

.rental-car-frame {
  display: grid;
  place-items: center;
  min-height: 100%;
}

.rental-car {
  width: min(100%, 740px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(38, 0, 42, 0.22));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: 60px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 540px;
}

.image-main,
.image-float {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-main {
  inset: 0 8% 10% 0;
  width: 92%;
  height: 90%;
}

.image-float {
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 5 / 4;
  border: 8px solid var(--paper);
}

.split-copy h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.split-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.feature-list article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 6px;
}

.feature-list span {
  color: var(--muted);
}

.stock-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(220px, 1fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px;
  color: #fff;
  background: var(--plum-deep);
  border-radius: 8px;
}

.stock-band span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
}

.stock-band strong {
  font-size: 1.22rem;
}

.stock-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.stock-meter {
  height: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.stock-meter span {
  width: 72%;
  height: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--gold), var(--mint));
  border-radius: inherit;
}

.cards {
  text-align: center;
}

.card-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  text-align: left;
}

.card-grid article,
.review-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 9, 28, 0.08);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--wine);
  border-radius: 50%;
  font-weight: 900;
}

.card-grid h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.card-grid p,
.review-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-large {
  grid-column: span 5;
  grid-row: span 2;
}

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

.gallery-standard {
  grid-column: span 4;
}

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

.reviews {
  text-align: center;
}

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

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid strong {
  margin-top: 18px;
}

.review-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location h2 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.location p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq {
  max-width: 860px;
}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 900;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 76px 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(38, 0, 42, 0.8), rgba(38, 0, 42, 0.84)),
    url("assets/departamento-balcon.jpg") center / cover;
}

.final-cta p {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1;
}

.final-cta .primary-btn {
  width: fit-content;
  min-width: 230px;
  background: var(--gold);
  color: var(--plum-deep);
}

.footer {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 42px 20px;
  text-align: center;
  background: #fff;
}

.footer img {
  width: 70px;
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 14px 0;
  }

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

  .nav a:not(.brand) {
    font-size: 0.7rem;
  }

  .hero-content,
  .split,
  .intro-split,
  .stock-band {
    grid-template-columns: 1fr;
  }

  .rental-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .rental-copy {
    text-align: center;
  }

  .rental-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    padding-top: 52px;
  }

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

  .promos-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-cta {
    width: 100%;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .nav {
    width: min(100% - 20px, 460px);
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav-cta {
    grid-column: 1 / -1;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding: 38px 0 44px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .lead-form {
    padding: 22px;
  }

  .form-row,
  .card-grid,
  .review-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .intro-main {
    padding: 0;
    text-align: center;
  }

  .intro-main h2,
  .intro-main p {
    margin-left: auto;
    margin-right: auto;
  }

  .rental-card {
    gap: 18px;
    padding: 22px 18px;
  }

  .rental-card h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .rental-car {
    width: min(100%, 520px);
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .section {
    width: calc(100% - 24px);
    padding: 62px 0;
  }

  .image-stack {
    min-height: 410px;
  }

  .image-main {
    inset: 0;
    width: 100%;
    height: 78%;
  }

  .image-float {
    width: 62%;
    border-width: 6px;
  }

  .stock-band {
    width: calc(100% - 24px);
    padding: 24px;
  }

  .gallery img {
    height: 300px;
    min-height: 300px;
  }

  .location {
    display: grid;
    padding: 24px;
  }
}

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

