:root {
  --forest: #173f35;
  --forest-deep: #0d2a23;
  --leaf: #28624f;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --sand: #d7bb89;
  --ink: #20302b;
  --muted: #6a7872;
  --line: rgba(26, 65, 53, .15);
  --whatsapp: #1f9d58;
  --shadow: 0 20px 60px rgba(20, 52, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 200; left: 12px; top: -60px; padding: 12px 16px; color: #fff; background: var(--forest); border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 80px;
  background: rgba(255, 253, 248, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}
.site-header.has-scrolled { box-shadow: 0 10px 40px rgba(14, 43, 35, .1); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 42px; }
.logo { display: inline-flex; align-items: center; width: 158px; min-width: 158px; }
.logo img { width: 100%; height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 34px; margin-left: auto; }
.main-nav a { position: relative; padding: 29px 0 27px; color: #3f504a; font-size: 14px; }
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 19px; width: 0; height: 1px; background: var(--forest); transition: width .2s ease, left .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { left: 0; width: 100%; }
.main-nav a[aria-current="page"] { color: var(--forest); font-weight: 700; }
.header-reserve { margin-left: 8px; }
.mobile-menu-button { display: none; width: 44px; height: 44px; margin-left: auto; place-items: center; border: 0; background: transparent; cursor: pointer; }
.mobile-menu-button span, .mobile-menu-button::before, .mobile-menu-button::after { content: ""; display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--forest); }
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-whatsapp { color: #fff; background: var(--whatsapp); box-shadow: 0 12px 30px rgba(31, 157, 88, .24); }
.button-whatsapp:hover { background: #17834a; }
.button-dark { color: #fff; background: var(--forest); }
.button-dark:hover { background: var(--forest-deep); }
.button-light { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.button-light:hover { background: rgba(255,255,255,.17); }
.icon { width: 19px; height: 19px; flex: 0 0 auto; }

.home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}
.home-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,31,24,.92) 0%, rgba(8,31,24,.57) 48%, rgba(8,31,24,.1) 78%), linear-gradient(0deg, rgba(8,28,22,.54), transparent 47%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 118px; }
.kicker { margin: 0 0 18px; color: #d8b77e; font-size: 11px; font-weight: 800; letter-spacing: .23em; text-transform: uppercase; }
.hero-content .kicker { color: #eed2a2; }
.home-hero h1 { max-width: 860px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 7vw, 94px); font-weight: 400; letter-spacing: -.05em; line-height: .98; text-wrap: balance; }
.home-hero h1 em { color: #e9d3ac; font-weight: 400; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.87); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.scroll-indicator { position: absolute; z-index: 3; left: 50%; bottom: 21px; display: grid; justify-items: center; gap: 7px; transform: translateX(-50%); color: rgba(255,255,255,.74); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.scroll-indicator::before { content: ""; width: 1px; height: 34px; background: linear-gradient(#fff, transparent); }

.section { padding: 108px 0; }
.section-cream { background: var(--cream); }
.section-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-heading h2, .split-copy h2, .sunset-banner h2, .page-intro h1, .detail-copy h2, .legal-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.section-heading > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--muted); line-height: 1.75; }
.section-heading::after { content: "◆"; display: block; margin: 22px auto 0; color: var(--sand); font-size: 10px; }

.cabin-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.cabin-card { overflow: hidden; background: #fff; border-radius: 4px 4px 28px 4px; box-shadow: 0 12px 38px rgba(20, 53, 43, .08); transition: transform .25s ease, box-shadow .25s ease; }
.cabin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cabin-card-image { position: relative; display: block; aspect-ratio: 1.34; overflow: hidden; background: #dfe6e1; }
.cabin-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.cabin-card:hover .cabin-card-image img { transform: scale(1.05); }
.rating { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 5px; padding: 8px 11px; color: #654b25; background: rgba(255,253,248,.94); border-radius: 999px; font-size: 12px; font-weight: 800; backdrop-filter: blur(8px); }
.star { color: #b7873d; }
.cabin-card-body { padding: 25px 24px 22px; }
.card-location { margin: 0 0 10px; color: #a17c45; font-size: 9px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.cabin-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; }
.cabin-card h3 a:hover { color: var(--leaf); }
.card-subtitle { margin: 8px 0 18px; color: var(--muted); font-size: 14px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 11px 17px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #64736d; font-size: 12px; }
.card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.card-meta svg { width: 16px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest); font-size: 13px; font-weight: 800; }
.text-link:hover { color: var(--leaf); }
.circle-whatsapp { display: grid; width: 43px; height: 43px; place-items: center; color: #fff; background: var(--whatsapp); border-radius: 50%; transition: transform .2s ease; }
.circle-whatsapp:hover { transform: scale(1.08); }
.center-action { display: flex; justify-content: center; margin-top: 44px; }

.feature-band { color: #fff; background: var(--forest); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature { display: flex; min-height: 130px; align-items: center; justify-content: center; gap: 15px; padding: 25px; border-right: 1px solid rgba(255,255,255,.13); }
.feature:last-child { border: 0; }
.feature svg { width: 27px; color: #d8b777; }
.feature span { display: grid; gap: 4px; color: rgba(255,255,255,.66); font-size: 12px; }
.feature strong { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }

.split { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 80px; }
.split-photo { position: relative; min-height: 590px; }
.split-photo img { width: calc(100% - 38px); height: 590px; object-fit: cover; border-radius: 4px 4px 82px 4px; }
.photo-badge { position: absolute; right: 0; bottom: 38px; display: grid; width: 180px; min-height: 145px; place-content: center; padding: 20px; color: #fff; background: var(--forest); box-shadow: 0 18px 50px rgba(19,50,41,.23); }
.photo-badge strong { font-family: Georgia, "Times New Roman", serif; font-size: 40px; font-weight: 400; }
.photo-badge span { max-width: 110px; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.5; }
.split-copy > p:not(.kicker) { margin: 22px 0 0; color: var(--muted); line-height: 1.75; }
.extras-list { margin: 28px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.extras-list li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }
.extras-list li > span { color: #a9824d; font-family: Georgia, "Times New Roman", serif; }
.extras-list div { display: grid; gap: 4px; }
.extras-list strong { font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 400; }
.extras-list small { color: var(--muted); font-size: 12px; }

.sunset-banner { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.sunset-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sunset-banner::after { content: ""; position: absolute; inset: 0; background: rgba(9, 34, 27, .66); }
.sunset-content { position: relative; z-index: 2; max-width: 800px; padding: 90px 0; }
.sunset-content .kicker { color: #e1c28d; }
.sunset-content .button { margin-top: 30px; }

.page-hero { position: relative; min-height: 405px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--forest-deep); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,29,22,.88), rgba(7,29,22,.23)); }
.page-hero-content { position: relative; z-index: 2; padding: 95px 0 58px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 18px; color: rgba(255,255,255,.72); font-size: 12px; }
.breadcrumbs a:hover { color: #fff; }
.page-hero h1 { max-width: 900px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6vw, 72px); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.page-hero p { max-width: 660px; margin: 16px 0 0; color: rgba(255,255,255,.83); font-size: 17px; line-height: 1.65; }
.page-intro { padding: 80px 0 52px; text-align: center; }
.page-intro h1 { max-width: 850px; margin-inline: auto; }
.page-intro > p { max-width: 720px; margin: 20px auto 0; color: var(--muted); line-height: 1.75; }

.detail-header { padding: 58px 0 34px; }
.detail-title-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--leaf); font-size: 13px; font-weight: 700; }
.detail-header h1 { max-width: 860px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 6vw, 68px); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; }
.detail-header h1 span { display: block; margin-top: 10px; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: 400; letter-spacing: 0; }
.detail-rating { display: flex; align-items: center; gap: 8px; min-width: max-content; padding-bottom: 8px; color: #624b2a; font-size: 14px; font-weight: 800; }

.mosaic { display: grid; grid-template-columns: 1.4fr .75fr .75fr; grid-template-rows: repeat(2, 220px); gap: 9px; overflow: hidden; border-radius: 5px 5px 35px 5px; }
.mosaic .gallery-item:first-child { grid-row: span 2; }
.gallery-item { position: relative; width: 100%; min-height: 100%; padding: 0; overflow: hidden; border: 0; background: #dce4df; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-more { position: absolute; right: 16px; bottom: 16px; padding: 10px 14px; color: var(--forest-deep); background: rgba(255,255,255,.93); border-radius: 999px; font-size: 12px; font-weight: 800; box-shadow: 0 10px 30px rgba(0,0,0,.16); }

.detail-section { padding: 66px 0 100px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 75px; align-items: start; }
.stats { display: flex; flex-wrap: wrap; gap: 24px; padding: 0 0 30px; border-bottom: 1px solid var(--line); }
.stat { display: flex; align-items: center; gap: 9px; color: #56665f; font-size: 14px; }
.stat svg { width: 21px; color: var(--leaf); }
.detail-block { padding: 38px 0; border-bottom: 1px solid var(--line); }
.detail-copy h2 { font-size: clamp(31px, 4vw, 44px); }
.detail-copy h3 { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 400; }
.detail-copy p { margin: 18px 0 0; color: var(--muted); line-height: 1.82; }
.highlight-list, .amenities-list, .rules-list { padding: 0; list-style: none; }
.highlight-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 25px; margin: 24px 0 0; }
.highlight-list li, .amenities-list li { position: relative; padding-left: 25px; color: #4f6059; line-height: 1.55; }
.highlight-list li::before, .amenities-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--leaf); font-weight: 900; }
.amenities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; margin: 24px 0 0; }
.rules-list { display: grid; gap: 11px; margin: 22px 0 0; }
.rules-list li { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 11px; color: var(--muted); border-bottom: 1px dashed var(--line); font-size: 14px; }
.rules-list strong { color: var(--ink); text-align: right; }
.booking-card { position: sticky; top: 110px; padding: 30px; background: var(--cream); border: 1px solid rgba(40,86,71,.13); border-radius: 5px 5px 32px 5px; box-shadow: var(--shadow); }
.booking-card .kicker { margin-bottom: 12px; }
.booking-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; line-height: 1.15; }
.booking-card p { margin: 15px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.booking-card .button { width: 100%; }
.booking-note { display: flex; align-items: center; gap: 8px; margin-top: 15px; color: #6d7b75; font-size: 11px; }
.booking-note svg { width: 16px; color: var(--whatsapp); }

.full-gallery { padding: 100px 0; background: var(--cream); }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.photo-grid .gallery-item { aspect-ratio: 1.18; border-radius: 3px; }
.photo-grid .gallery-item:nth-child(7n + 1), .photo-grid .gallery-item:nth-child(7n + 6) { grid-column: span 2; aspect-ratio: 2.42; }
.related { padding: 100px 0; }

.gallery-section { padding: 62px 0; border-top: 1px solid var(--line); }
.gallery-section:first-of-type { border-top: 0; }
.gallery-section-header { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 24px; }
.gallery-section h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 38px; font-weight: 400; }
.compact-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 10px; }
.compact-photo-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

.legal-page { padding: 78px 0 110px; }
.legal-wrap { max-width: 850px; }
.legal-date { margin: 15px 0 45px; color: var(--muted); }
.legal-page h2 { margin: 38px 0 12px; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; }
.legal-page p, .legal-page li { color: #586760; line-height: 1.8; }
.legal-page ul { padding-left: 22px; }

.site-footer { color: rgba(255,255,255,.7); background: var(--forest-deep); }
.footer-slogan { display: flex; min-height: 78px; align-items: center; justify-content: center; gap: 20px; padding: 20px; color: #d6bb89; border-bottom: 1px solid rgba(255,255,255,.1); font-family: Georgia, "Times New Roman", serif; font-size: 13px; letter-spacing: .2em; text-align: center; }
.footer-slogan::before, .footer-slogan::after { content: ""; width: min(110px, 12vw); height: 1px; background: #806f50; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .85fr; gap: 70px; padding: 62px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid .logo img { filter: brightness(0) invert(1); opacity: .92; }
.footer-grid h3 { margin: 0 0 10px; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 400; }
.footer-grid p { max-width: 380px; margin: 5px 0; font-size: 13px; line-height: 1.7; }
.footer-grid a:not(.logo) { font-size: 13px; }
.footer-grid a:not(.logo):hover { color: #fff; }
.copyright { padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; text-align: center; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; width: 59px; height: 59px; place-items: center; color: #fff; background: var(--whatsapp); border-radius: 50%; box-shadow: 0 14px 38px rgba(0,0,0,.25); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 29px; }

.lightbox { position: fixed; z-index: 500; inset: 0; display: none; align-items: center; justify-content: center; padding: 55px 80px 70px; color: #fff; background: rgba(5,17,14,.96); }
.lightbox.is-open { display: flex; }
.lightbox-figure { position: relative; display: grid; max-width: min(1200px, 100%); max-height: 100%; justify-items: center; margin: 0; }
.lightbox-image { max-width: 100%; max-height: calc(100vh - 145px); object-fit: contain; border-radius: 3px; }
.lightbox figcaption { display: flex; width: 100%; justify-content: space-between; gap: 30px; margin-top: 16px; color: rgba(255,255,255,.72); font-size: 12px; }
.lightbox-control { position: absolute; display: grid; width: 48px; height: 48px; place-items: center; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; }
.lightbox-close { top: 20px; right: 22px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-control:hover { background: rgba(255,255,255,.2); }

.error-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 20px; text-align: center; }
.error-page h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 78px; font-weight: 400; }
.error-page p { color: var(--muted); }

@media (max-width: 1020px) {
  .main-nav, .header-reserve { display: none; }
  .mobile-menu-button { display: grid; }
  .mobile-menu { position: fixed; z-index: 99; top: 80px; left: 0; right: 0; display: grid; max-height: 0; overflow: hidden; background: var(--paper); box-shadow: 0 25px 50px rgba(12,40,31,.14); transition: max-height .3s ease; }
  .mobile-menu.is-open { max-height: 380px; }
  .mobile-menu-inner { display: grid; padding: 14px 20px 24px; }
  .mobile-menu a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .mobile-menu .button { margin-top: 15px; border-bottom: 0; }
  .cabin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; gap: 55px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .detail-layout { grid-template-columns: 1fr; gap: 45px; }
  .booking-card { position: static; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid .gallery-item:nth-child(7n + 1), .photo-grid .gallery-item:nth-child(7n + 6) { grid-column: auto; aspect-ratio: 1.18; }
  .compact-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr .9fr; gap: 35px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 70px; }
  .logo { width: 136px; min-width: 136px; }
  .logo img { height: 52px; }
  .mobile-menu { top: 70px; }
  .home-hero { min-height: 750px; }
  .home-hero::after { background: linear-gradient(0deg, rgba(8,31,24,.94), rgba(8,31,24,.28)); }
  .hero-content { align-self: end; padding: 135px 0 94px; }
  .home-hero h1 { font-size: clamp(46px, 14vw, 65px); }
  .hero-lead { font-size: 16px; line-height: 1.62; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .cabin-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 92px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .feature:last-child { border-bottom: 0; }
  .split-photo, .split-photo img { min-height: 420px; height: 420px; }
  .split-photo img { width: calc(100% - 22px); border-radius: 4px 4px 52px 4px; }
  .photo-badge { width: 150px; min-height: 120px; bottom: 22px; }
  .photo-badge strong { font-size: 33px; }
  .sunset-banner { min-height: 510px; }
  .page-hero { min-height: 360px; }
  .page-hero-content { padding-bottom: 44px; }
  .page-intro { padding: 64px 0 35px; }
  .detail-header { padding-top: 42px; }
  .detail-title-row { display: block; }
  .detail-rating { margin-top: 18px; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 120px; border-radius: 4px 4px 24px 4px; }
  .mosaic .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
  .mosaic .gallery-item:nth-child(n+4) { display: none; }
  .mosaic .gallery-more { display: block; }
  .detail-section { padding: 45px 0 75px; }
  .detail-layout { gap: 35px; }
  .highlight-list, .amenities-list { grid-template-columns: 1fr; }
  .rules-list li { display: grid; gap: 4px; }
  .rules-list strong { text-align: left; }
  .full-gallery, .related { padding: 75px 0; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .compact-photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .compact-photo-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-section-header { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; padding: 50px 0; }
  .footer-slogan { font-size: 10px; letter-spacing: .14em; }
  .lightbox { padding: 60px 15px 85px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 18px; transform: none; }
  .lightbox-prev { left: calc(50% - 60px); }
  .lightbox-next { right: calc(50% - 60px); }
  .whatsapp-float { width: 55px; height: 55px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
