:root {
  --ink: #3c2b22;
  --brown: #875238;
  --brown-deep: #513426;
  --gold: #e2aa39;
  --gold-light: #f9dc93;
  --ivory: #f8f4ec;
  --sand: #ede0c9;
  --muted: #705f55;
  --line: rgba(63, 36, 24, 0.16);
  --white: #fffdf9;
  --whatsapp: #25d366;
  --shadow: 0 18px 48px rgba(51, 29, 17, 0.14);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--font-body); font-size: 17px; line-height: 1.55; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
.page-width { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; top: -4rem; left: 1rem; z-index: 100; padding: .7rem 1rem; background: var(--gold); color: var(--brown-deep); font-weight: 800; }
.skip-link:focus { top: 1rem; }

.announcement { background: var(--gold); color: #5c3928; font-size: 14px; font-weight: 700; letter-spacing: .015em; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.announcement p, .announcement a { display: flex; align-items: center; gap: .45rem; margin: 0; }
.announcement svg { width: 16px; height: 16px; stroke-width: 2.6; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255, 253, 249, .97); border-bottom: 1px solid rgba(135, 82, 56, .14); backdrop-filter: blur(12px); }
.header__inner { min-height: 82px; display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand__logo { display: grid; place-items: center; width: 64px; height: 64px; padding: 2px; background: #fff; border: 1px solid var(--sand); }
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand__text { line-height: 1; display: flex; flex-direction: column; gap: .2rem; color: var(--brown); }
.brand__text strong { font-family: var(--font-display); font-size: 27px; font-weight: 600; }
.brand__text small { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: #765846; }
.main-nav { display: flex; align-items: center; gap: 1.65rem; margin-left: auto; color: #694936; font-size: 14px; font-weight: 700; }
.main-nav a { position: relative; padding: .45rem 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--gold); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta, .button { min-height: 45px; border: 0; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; font-size: 15px; font-weight: 750; line-height: 1.1; transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease; }
.header-cta { padding: 0 1rem; background: var(--brown); color: white; }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.header-cta svg, .button svg { width: 17px; height: 17px; stroke-width: 2.5; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: min(760px, calc(100svh - 120px)); overflow: hidden; color: white; background: var(--brown-deep); }
.hero__image { position: absolute; inset: 0; background: url("assets/fleet-hero.jpg") center / cover no-repeat; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28, 18, 13, .88) 0%, rgba(35, 21, 12, .58) 38%, rgba(35, 21, 12, .08) 76%); }
.hero__inner { position: relative; display: flex; align-items: center; min-height: inherit; padding: 6rem 0 5rem; }
.hero__content { max-width: 690px; }
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1.15rem; color: var(--brown); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow span { display: inline-block; width: 30px; height: 3px; background: var(--gold); }
.eyebrow--light { color: var(--gold-light); }
.hero h1, h2, h3 { margin: 0; }
.hero h1 { max-width: 690px; font-family: var(--font-display); font-size: clamp(52px, 6vw, 88px); line-height: .98; letter-spacing: 0; font-weight: 500; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero__lead { max-width: 580px; margin: 1.55rem 0 2rem; font-size: 19px; line-height: 1.55; font-weight: 500; color: rgba(255,255,255,.92); }
.hero__actions { display: flex; gap: 1.3rem; align-items: center; flex-wrap: wrap; }
.button { padding: .8rem 1rem; border: 1px solid transparent; }
.button--gold { background: var(--gold); color: var(--brown-deep); }
.button--brown { background: var(--brown); color: white; }
.button--outline { width: 100%; background: transparent; color: var(--brown); border-color: var(--line); justify-content: space-between; }
.button--outline:hover { border-color: var(--brown); background: var(--brown); color: white; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; font-size: 15px; font-weight: 850; }
.text-link svg { width: 18px; height: 18px; }
.text-link--light { color: #fff; }
.hero__stamp { position: absolute; right: 0; bottom: 3.25rem; display: grid; width: 164px; height: 164px; place-content: center; border: 1px solid rgba(248, 220, 147, .75); border-radius: 50%; text-align: center; transform: rotate(-9deg); background: rgba(50, 29, 17, .32); backdrop-filter: blur(4px); }
.hero__stamp span { font-family: var(--font-display); color: var(--gold-light); font-size: 19px; line-height: 1; }
.hero__stamp strong { font-size: 23px; letter-spacing: .02em; text-transform: uppercase; }
.hero__stamp small { margin-top: .25rem; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.trust-strip { background: var(--brown); color: white; }
.trust-strip__inner { min-height: 118px; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-strip p { display: flex; align-items: center; gap: .9rem; margin: 0; padding: 1.25rem 2rem; border-right: 1px solid rgba(255,255,255,.17); font-size: 14px; line-height: 1.35; }
.trust-strip p:first-child { padding-left: 0; }
.trust-strip p:last-child { padding-right: 0; border: 0; }
.trust-strip svg { width: 30px; height: 30px; flex: 0 0 auto; color: var(--gold); stroke-width: 1.8; }
.trust-strip strong { display: block; margin-bottom: .15rem; color: var(--gold-light); font-size: 15px; }

.section-spacing { padding: 104px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr); gap: 5rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2, .stay-section h2, .booking h2 { color: var(--brown); font-family: var(--font-display); font-size: clamp(40px, 4vw, 62px); line-height: 1.02; font-weight: 500; }
.section-heading > p { margin: 0 0 .35rem; color: var(--muted); font-size: 17px; }
.section-heading--center { display: block; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }

.catalog { position: relative; overflow: hidden; background: var(--ivory); }
.catalog::before { content: ""; position: absolute; top: 95px; right: -160px; width: 460px; height: 460px; background-image: linear-gradient(45deg, rgba(226,170,57,.15) 25%, transparent 25%, transparent 75%, rgba(226,170,57,.15) 75%), linear-gradient(45deg, rgba(226,170,57,.15) 25%, transparent 25%, transparent 75%, rgba(226,170,57,.15) 75%); background-position: 0 0, 20px 20px; background-size: 40px 40px; transform: rotate(15deg); pointer-events: none; }
.catalog .page-width { position: relative; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vehicle-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); box-shadow: 0 9px 24px rgba(72,40,20,.06); }
.vehicle-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.vehicle-card__image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(31,20,13,.38)); }
.vehicle-card__image span { position: absolute; z-index: 1; top: 14px; left: 14px; display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: var(--gold); color: var(--brown-deep); font-size: 12px; font-weight: 900; }
.vehicle-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; }
.card-kicker { margin: 0 0 .4rem; color: var(--brown); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.vehicle-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 500; }
.vehicle-card ul { display: grid; gap: .45rem; padding: 0; margin: 1.1rem 0 1.4rem; list-style: none; color: var(--muted); font-size: 14px; }
.vehicle-card li { display: flex; align-items: center; gap: .48rem; }
.vehicle-card li svg { width: 16px; height: 16px; color: var(--brown); }
.vehicle-card .button { margin-top: auto; font-size: 14px; }
.catalog-note { max-width: 760px; margin: 2rem 0 0; padding-left: 1.2rem; border-left: 3px solid var(--gold); color: var(--muted); font-size: 15px; }

.stay-section { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; background: var(--brown-deep); color: white; }
.stay-section__image { position: absolute; inset: 0; background: url("assets/apartment-two-bedroom.jpg") center / cover no-repeat; }
.stay-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,25,17,.91) 0%, rgba(43,25,17,.78) 43%, rgba(43,25,17,.18) 100%); }
.stay-section__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr); gap: 8rem; align-items: end; }
.stay-section h2, .booking h2 { color: #fff; max-width: 720px; }
.stay-section__copy > p:not(.eyebrow) { max-width: 590px; margin: 1.3rem 0 2rem; color: rgba(255,255,255,.88); font-size: 18px; }
.stay-options { display: grid; gap: 1px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.22); }
.stay-options article { display: flex; gap: 1rem; padding: 1.3rem; background: rgba(41,24,16,.73); backdrop-filter: blur(5px); }
.stay-options svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--gold); }
.stay-options h3 { margin-bottom: .18rem; font-family: var(--font-display); font-size: 23px; font-weight: 500; }
.stay-options p { margin: 0; color: rgba(255,255,255,.74); font-size: 14px; }

.apartment-gallery { background: var(--white); }
.apartment-gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.apartment-card { position: relative; min-height: 380px; overflow: hidden; background: var(--brown-deep); color: white; }
.apartment-card--wide { grid-row: span 2; min-height: 778px; }
.apartment-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.apartment-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 12, 8, .03) 28%, rgba(40, 24, 16, .86) 100%); }
.apartment-card__body { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 1.5rem; }
.apartment-card__body p { margin: 0 0 .3rem; color: var(--gold-light); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.apartment-card__body h3 { font-family: var(--font-display); font-size: 34px; font-weight: 500; line-height: 1; }
.apartment-card__body button { display: inline-flex; align-items: center; gap: .35rem; margin-top: .8rem; padding: 0; border: 0; background: transparent; color: #fff; font-size: 13px; font-weight: 800; }
.apartment-card__body button svg { width: 16px; height: 16px; color: var(--gold); }

.commitments { background: var(--white); }
.commitments__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.commitments article { position: relative; padding: 2.2rem 1.65rem 1.8rem; overflow: hidden; border-top: 4px solid var(--gold); background: var(--ivory); }
.commitments .number { position: absolute; top: .5rem; right: .9rem; color: rgba(111,61,36,.11); font-family: var(--font-display); font-size: 80px; line-height: 1; }
.commitments article > svg { width: 34px; height: 34px; color: var(--brown); stroke-width: 1.7; }
.commitments h3 { position: relative; margin: 1.3rem 0 .6rem; color: var(--brown); font-family: var(--font-display); font-size: 29px; font-weight: 500; }
.commitments p { position: relative; margin: 0; color: var(--muted); font-size: 15px; }

.booking { position: relative; overflow: hidden; background: var(--brown); color: white; }
.booking__pattern { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(30deg, transparent 24%, rgba(226,170,57,.25) 25%, rgba(226,170,57,.25) 27%, transparent 28%, transparent 74%, rgba(226,170,57,.25) 75%, rgba(226,170,57,.25) 77%, transparent 78%), linear-gradient(150deg, transparent 24%, rgba(226,170,57,.25) 25%, rgba(226,170,57,.25) 27%, transparent 28%, transparent 74%, rgba(226,170,57,.25) 75%, rgba(226,170,57,.25) 77%, transparent 78%); background-size: 62px 106px; background-position: 0 0, 31px 53px; }
.booking__inner { position: relative; display: grid; grid-template-columns: minmax(0, .75fr) minmax(420px, 1fr); gap: 5rem; align-items: center; }
.booking__intro > p:not(.eyebrow) { max-width: 470px; margin: 1.25rem 0 1.8rem; color: rgba(255,255,255,.85); font-size: 17px; }
.booking__phone { display: inline-flex; align-items: center; gap: .65rem; color: var(--gold-light); font-size: 23px; font-weight: 900; }
.booking__phone svg { width: 25px; height: 25px; }
.booking-form { padding: 1.6rem; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.booking-form__choice { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.25rem; }
.booking-form__choice label { position: relative; }
.booking-form__choice input { position: absolute; opacity: 0; }
.booking-form__choice span { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .6rem; border: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 850; }
.booking-form__choice input:checked + span { border-color: var(--brown); background: var(--brown); color: #fff; }
.booking-form__choice svg { width: 17px; height: 17px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.booking-form label { display: grid; gap: .38rem; margin-bottom: .95rem; color: var(--brown-deep); font-size: 13px; font-weight: 900; }
.booking-form input, .booking-form textarea { width: 100%; padding: .72rem .76rem; border: 1px solid var(--line); border-radius: 0; outline: none; color: var(--ink); background: white; font-size: 15px; font-weight: 500; }
.booking-form textarea { resize: vertical; min-height: 98px; }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--brown); box-shadow: 0 0 0 3px rgba(226,170,57,.27); }

.site-footer { background: var(--brown-deep); color: rgba(255,255,255,.82); }
.footer__top { display: grid; grid-template-columns: minmax(230px, .8fr) minmax(280px, 1.2fr) auto; align-items: center; gap: 3rem; padding: 3.2rem 0; }
.brand--footer .brand__text { color: var(--gold-light); }
.brand--footer .brand__text small { color: white; }
.footer__top > p { max-width: 470px; margin: 0; font-size: 15px; }
.footer__whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 46px; padding: .7rem 1rem; color: var(--brown-deep); background: var(--gold); font-size: 14px; font-weight: 900; white-space: nowrap; }
.footer__whatsapp svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.15); font-size: 13px; }
.whatsapp-float { position: fixed; z-index: 25; right: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: .55rem; min-height: 51px; padding: .6rem .95rem; border: 0; border-radius: 99px; background: var(--whatsapp); box-shadow: 0 9px 24px rgba(0,0,0,.22); color: #fff; font-size: 14px; font-weight: 900; }
.whatsapp-float svg { width: 22px; height: 22px; }

.reservation-dialog { width: min(440px, calc(100% - 32px)); padding: 2rem; border: 0; background: var(--white); color: var(--ink); box-shadow: 0 22px 70px rgba(0,0,0,.32); }
.reservation-dialog::backdrop { background: rgba(28,18,13,.66); backdrop-filter: blur(3px); }
.reservation-dialog h2 { color: var(--brown); font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 1.05; }
.reservation-dialog > p:not(.eyebrow) { color: var(--muted); margin: 1rem 0 1.6rem; }
.dialog-close { position: absolute; top: .75rem; right: .75rem; display: grid; place-items: center; width: 38px; height: 38px; border: 0; color: var(--brown); background: transparent; }
.dialog-close svg { width: 23px; height: 23px; }

@media (max-width: 980px) {
  .header__inner { gap: 1rem; }
  .main-nav { gap: 1rem; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-card__image { aspect-ratio: 16 / 8; background-size: cover; }
  .stay-section__inner, .booking__inner { gap: 3rem; }
  .stay-section__inner { grid-template-columns: 1fr; }
  .stay-options { max-width: 560px; }
  .booking__inner { grid-template-columns: 1fr; }
  .booking__intro { max-width: 620px; }
  .footer__top { grid-template-columns: 1fr 1.2fr; }
  .footer__whatsapp { justify-self: start; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .page-width { width: min(100% - 32px, 1180px); }
  .announcement { font-size: 12px; }
  .announcement__inner { min-height: 36px; justify-content: center; }
  .announcement p { display: none; }
  .site-header { top: 0; }
  .header__inner { min-height: 74px; justify-content: space-between; }
  .brand { gap: .42rem; }
  .brand__logo { width: 50px; height: 50px; }
  .brand__text strong { font-size: 21px; }
  .brand__text small { font-size: 8px; letter-spacing: .14em; }
  .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: var(--brown); }
  .menu-toggle svg { width: 21px; height: 21px; }
  .main-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .4rem 1rem 1rem; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 12px 20px rgba(50,30,16,.08); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 1rem .35rem; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav a:last-child { border: 0; }
  .header-cta { display: none; }
  .hero { min-height: 610px; }
  .hero__image { background-position: 65% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(28, 18, 13, .89), rgba(28,18,13,.46)); }
  .hero__inner { min-height: 610px; align-items: flex-end; padding: 3rem 0 3.25rem; }
  .hero h1 { font-size: clamp(45px, 12vw, 60px); }
  .hero__lead { margin: 1.2rem 0 1.7rem; font-size: 16px; }
  .hero__stamp { display: none; }
  .trust-strip__inner { grid-template-columns: 1fr; padding: .3rem 0; }
  .trust-strip p, .trust-strip p:first-child, .trust-strip p:last-child { min-height: 62px; padding: .7rem 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .trust-strip p:last-child { border: 0; }
  .trust-strip svg { width: 25px; height: 25px; }
  .trust-strip strong { font-size: 14px; }
  .section-spacing { padding: 66px 0; }
  .section-heading { display: block; margin-bottom: 2rem; }
  .section-heading h2, .stay-section h2, .booking h2 { font-size: clamp(38px, 10vw, 48px); }
  .section-heading > p { margin-top: 1rem; font-size: 16px; }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .vehicle-card__image { aspect-ratio: 4 / 3; }
  .vehicle-card__body { padding: 1rem; }
  .vehicle-card h3 { font-size: 23px; line-height: 1.05; }
  .card-kicker { min-height: 30px; margin-bottom: .2rem; font-size: 10px; }
  .vehicle-card ul { min-height: 70px; margin: .8rem 0 1rem; font-size: 12px; }
  .vehicle-card .button { min-height: 43px; padding: .6rem .65rem; font-size: 12px; }
  .vehicle-card .button span { max-width: 102px; text-align: left; }
  .catalog-note { margin-top: 1.4rem; font-size: 14px; }
  .stay-section { min-height: 760px; }
  .stay-section__image { background-position: 63% center; }
  .stay-section::after { background: linear-gradient(180deg, rgba(43,25,17,.92) 0%, rgba(43,25,17,.86) 55%, rgba(43,25,17,.64) 100%); }
  .stay-section__inner { min-height: 760px; gap: 2.4rem; padding: 66px 0; align-content: space-between; }
  .stay-section__copy > p:not(.eyebrow) { font-size: 16px; }
  .stay-options article { padding: .9rem; }
  .stay-options h3 { font-size: 20px; }
  .stay-options p { font-size: 13px; }
  .apartment-gallery__grid { grid-template-columns: 1fr; gap: 14px; }
  .apartment-card, .apartment-card--wide { min-height: 310px; grid-row: auto; }
  .apartment-card__body { padding: 1.15rem; }
  .apartment-card__body h3 { font-size: 30px; }
  .commitments__grid { grid-template-columns: 1fr; gap: .85rem; }
  .commitments article { padding: 1.6rem 1.25rem; }
  .commitments h3 { margin-top: .9rem; font-size: 26px; }
  .booking__inner { gap: 2rem; }
  .booking__intro > p:not(.eyebrow) { margin-bottom: 1.1rem; font-size: 16px; }
  .booking__phone { font-size: 20px; }
  .booking-form { padding: 1rem; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .booking-form label { margin-bottom: .78rem; }
  .footer__top { grid-template-columns: 1fr; gap: 1.35rem; padding: 2.25rem 0; }
  .footer__bottom { flex-direction: column; gap: .2rem; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 48px; padding: .6rem .75rem; }
  .whatsapp-float span { display: none; }
}

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