:root {
  --warm: #f6f3ed;
  --white: #ffffff;
  --ink: #18272a;
  --muted: #5f6b6d;
  --teal: #146f75;
  --teal-dark: #0d565b;
  --teal-soft: #e5f2f1;
  --sand: #d8c3a3;
  --palm: #778774;
  --coral: #d47c62;
  --border: #dde3e1;
  --footer: #18272a;
  --shadow: 0 14px 36px rgba(10, 26, 28, .09);
  --shadow-lg: 0 16px 40px rgba(10, 26, 28, .13);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-warm { background: var(--warm); }
.section-white { background: var(--white); }
.section-dark { background: var(--teal-dark); color: var(--white); }

.site-header { background: var(--warm); position: relative; z-index: 50; }
.header-inner { height: 96px; width: min(var(--container), calc(100% - 48px)); margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-main { font-size: 22px; font-weight: 800; line-height: 30px; }
.brand-sub { font-size: 10px; font-weight: 600; line-height: 14px; letter-spacing: 2.2px; color: var(--muted); }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.desktop-nav > a:not(.button) { position: relative; }
.desktop-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--teal); transition: right .2s ease; }
.desktop-nav > a:not(.button):hover::after { right: 0; }
.language-wrap { position: relative; }
.language-trigger { border: 1px solid var(--border); background: var(--white); border-radius: 12px; height: 36px; padding: 0 14px; display: flex; gap: 8px; align-items: center; cursor: pointer; font-weight: 600; direction: ltr; }
.globe { color: var(--teal); font-size: 17px; }
.language-menu { position: absolute; top: calc(100% + 10px); inset-inline-end: 0; width: 432px; max-height: min(472px, calc(100vh - 118px)); overflow: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(8, minmax(44px, auto)); grid-auto-flow: column; gap: 4px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 8px; box-shadow: var(--shadow); direction: ltr; }
.language-menu[hidden] { display: none; }
.language-menu button, .mobile-language-list button { width: 100%; min-height: 44px; border: 0; background: transparent; text-align: left; padding: 10px 12px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; gap: 10px; }
.language-menu button:hover, .mobile-language-list button:hover { background: var(--teal-soft); }
.language-menu button.active-language, .mobile-language-list button.active-language { background: var(--teal-soft); color: var(--teal-dark); font-weight: 700; }
.language-menu button:focus-visible, .mobile-language-list button:focus-visible, .language-trigger:focus-visible, .mobile-language-trigger:focus-visible, .language-sheet-close:focus-visible { outline: 3px solid rgba(20,111,117,.35); outline-offset: 2px; }
.language-flag, .current-language-flag { width: 24px; height: 16px; flex: 0 0 24px; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px rgba(10, 26, 28, .12); }
.current-language-flag { width: 25px; height: 17px; flex-basis: 25px; }
.language-name { unicode-bidi: plaintext; }
.current-language { unicode-bidi: plaintext; }
.button { min-height: 44px; border-radius: 14px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; font-weight: 600; font-size: 15px; cursor: pointer; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--teal); color: white; }
.button-primary:hover { background: #0f6268; box-shadow: 0 8px 22px rgba(20,111,117,.22); }
.button-secondary { background: var(--white); border-color: var(--border); }
.button-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); color: var(--white); }
.button-small { min-height: 36px; }
.mobile-header-actions { display: none; }
.mobile-menu { display: none; }
.language-sheet { width: min(100%, 560px); max-width: none; max-height: calc(100dvh - 24px); margin: auto 0 0; padding: 20px; border: 0; border-radius: 24px 24px 0 0; background: var(--warm); box-shadow: 0 -18px 50px rgba(10, 26, 28, .18); }
.language-sheet::backdrop { background: rgba(9,20,22,.45); backdrop-filter: blur(3px); }
.language-sheet-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.language-sheet-header h2 { font-size: 22px; line-height: 28px; }
.language-sheet-close { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 13px; background: var(--white); cursor: pointer; font-size: 28px; line-height: 1; }
.mobile-language-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; max-height: calc(100dvh - 140px); overflow: auto; padding: 2px; direction: ltr; }
.mobile-language-list button { min-height: 62px; padding: 10px; align-items: center; background: var(--white); border: 1px solid var(--border); }
.mobile-language-list .language-flag { width: 24px; height: 16px; flex-basis: 24px; }

.hero { padding: 54px 0 76px; }
.hero-grid { display: grid; grid-template-columns: 500px 1fr; gap: 64px; align-items: center; min-height: 600px; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-soft); border-radius: 999px; padding: 2px 13px; font-size: 13px; line-height: 18px; font-weight: 600; color: var(--teal); }
.dot { color: var(--coral); font-size: 9px; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(46px, 4.3vw, 62px); line-height: 1.065; letter-spacing: -.025em; font-weight: 800; }
.lead { width: 470px; max-width: 100%; color: var(--muted); font-size: 19px; line-height: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 14px; font-weight: 600; }
.pin-symbol { color: var(--coral); font-size: 18px; }
.trust-note { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 13px; }
.badge-icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 14px; background: var(--white); color: var(--teal); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.badge-icon.light { background: var(--white); color: var(--teal); }
.hero-visual { position: relative; height: 580px; }
.sand-orb { position: absolute; width: 210px; height: 210px; border-radius: 50%; background: rgba(216,195,163,.4); right: 0; top: -18px; }
.hero-image { position: absolute; left: 0; top: 16px; width: calc(100% - 40px); height: 548px; object-fit: cover; object-position: center 48%; border-radius: 28px; border: 8px solid white; box-shadow: var(--shadow-lg); }
.floating-location-card { position: absolute; left: 24px; bottom: 28px; width: 332px; height: 72px; display: flex; gap: 14px; align-items: center; padding: 0 16px; border-radius: 18px; background: var(--white); box-shadow: 0 10px 28px rgba(10,26,28,.13); }
.floating-location-card div { display: flex; flex-direction: column; gap: 2px; }
.floating-location-card strong { font-size: 14px; }
.floating-location-card small { color: var(--muted); font-size: 12px; }

.quick-facts { padding-bottom: 44px; }
.facts-card { background: var(--white); border-radius: 22px; box-shadow: 0 8px 30px rgba(10,26,28,.09); min-height: 118px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 24px 28px; }
.fact { min-width: 0; display: flex; gap: 14px; align-items: center; padding: 0 18px; border-right: 1px solid var(--border); }
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; padding-right: 0; }
.fact-icon, .amenity > span { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); font-size: 12px; font-weight: 700; }
.fact div, .amenity div { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fact strong { font-size: 18px; line-height: 24px; }
.fact small { color: var(--muted); font-size: 12px; line-height: 18px; }

.rooms { padding: 96px 0 108px; }
.section-heading { max-width: 720px; margin-bottom: 36px; }
.section-heading.wide { max-width: 940px; }
.eyebrow { display: block; color: var(--teal); font-size: 12px; line-height: 16px; font-weight: 700; margin-bottom: 10px; }
.eyebrow-light { color: var(--sand); }
.section-heading h2, .location-copy h2, .faq-intro h2 { font-size: 46px; line-height: 1.2; letter-spacing: -.02em; }
.section-heading p { margin-top: 10px; color: var(--muted); font-size: 17px; line-height: 26px; }
.room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.room-card { border: 1px solid var(--border); border-radius: 24px; overflow: hidden; background: white; box-shadow: var(--shadow); }
.room-card > img { width: 100%; height: 350px; object-fit: cover; }
.room-card:first-child > img { object-position: center 55%; }
.room-card:last-child > img { object-position: center 48%; }
.room-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 20px; }
.room-body h3 { font-size: 27px; line-height: 36px; }
.room-body > p { color: var(--muted); font-size: 15px; line-height: 24px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chips span { background: var(--teal-soft); color: var(--teal); border-radius: 999px; padding: 2px 12px; font-size: 13px; line-height: 18px; font-weight: 600; }

.location { padding: 104px 0; }
.location-grid { display: grid; grid-template-columns: 650px 1fr; gap: 64px; align-items: center; min-height: 540px; }
.location-visual { position: relative; height: 520px; }
.location-visual > img { width: 620px; height: 470px; object-fit: cover; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; }
.mini-map { position: absolute; right: 20px; bottom: 0; width: 270px; height: 170px; background: white; color: var(--ink); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.road { position: absolute; height: 8px; background: var(--teal-soft); border-radius: 999px; transform-origin: center; }
.r1 { width: 215px; left: 20px; top: 34px; transform: rotate(-8deg); }
.r2 { width: 232px; left: 18px; top: 78px; transform: rotate(6deg); }
.r3 { width: 190px; left: 42px; top: 122px; transform: rotate(-5deg); }
.map-pin-dot { position: absolute; width: 36px; height: 36px; border-radius: 50%; background: var(--teal); border: 8px solid white; left: 118px; top: 63px; box-shadow: 0 3px 10px rgba(0,0,0,.12); }
.mini-map b { position: absolute; width: 120px; left: 77px; top: 138px; font-size: 13px; text-align: center; }
.location-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.location-copy h2 { font-size: 46px; line-height: 56px; }
.location-copy > p { color: #e0f0f0; font-size: 18px; line-height: 29px; }
.address-card { width: 460px; max-width: 100%; height: 78px; border-radius: 18px; background: #146369; padding: 0 18px; display: flex; align-items: center; gap: 14px; }
.address-card div { display: flex; flex-direction: column; gap: 2px; }
.address-card small { color: #d4e8e8; font-size: 13px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.amenities { padding: 104px 0; }
.amenities-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.amenity { grid-column: span 3; min-height: 112px; display: flex; gap: 14px; align-items: center; padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: white; }
.amenity:nth-child(n+5) { grid-column: span 4; }
.amenity strong { font-size: 16px; line-height: 22px; }
.amenity small { color: var(--muted); font-size: 12px; line-height: 18px; }

.gallery { padding: 104px 0 112px; }
.gallery-grid { display: grid; grid-template-columns: 2.12fr 1fr 1.02fr; grid-template-rows: 310px 316px; gap: 24px; height: 650px; }
.gallery-item { padding: 0; border: 0; background: transparent; border-radius: 22px; overflow: hidden; cursor: zoom-in; }
.gallery-main { grid-row: 1 / 3; border-radius: 26px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.02); }

.faq { padding: 104px 0; }
.faq-grid { display: grid; grid-template-columns: 390px 1fr; gap: 80px; align-items: start; }
.faq-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.faq-intro p { color: var(--muted); font-size: 16px; line-height: 25px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
details { border: 1px solid var(--border); border-radius: 18px; background: white; padding: 22px 24px; }
summary { list-style: none; cursor: pointer; font-size: 17px; line-height: 24px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--teal); font-size: 24px; font-weight: 500; }
details[open] summary::after { content: "−"; }
details p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 22px; }

.contact { padding: 104px 0; }
.contact-grid { display: grid; grid-template-columns: 520px 1fr; gap: 32px; align-items: stretch; }
.contact-card { min-height: 520px; border-radius: 28px; background: var(--teal-dark); color: white; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact-card h2 { font-size: 38px; line-height: 48px; }
.contact-card > p { color: #d6ebeb; font-size: 16px; line-height: 25px; margin-bottom: 4px; }
.contact-row { height: 66px; border-radius: 16px; background: #146369; padding: 0 16px; display: flex; align-items: center; gap: 14px; }
.contact-row > div { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 1px; }
.contact-row strong { font-size: 15px; }
.contact-row small { color: #cce3e3; font-size: 12px; }
.contact-row > b { font-size: 18px; }
.contact-form { min-height: 520px; border: 1px solid var(--border); border-radius: 28px; padding: 28px 30px; background: white; box-shadow: 0 12px 30px rgba(10,26,28,.08); display: flex; flex-direction: column; gap: 12px; }
.contact-form h3 { font-size: 28px; line-height: 36px; }
.contact-form > p { color: var(--muted); font-size: 14px; line-height: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: flex; flex-direction: column; gap: 3px; padding: 9px 14px; background: var(--warm); border: 1px solid var(--border); border-radius: 14px; color: var(--muted); }
.contact-form label > span { font-size: 10px; line-height: 14px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; outline: 0; padding: 0; resize: vertical; color: var(--ink); background: transparent; font-size: 14px; line-height: 20px; }
.contact-form textarea { min-height: 78px; }
.contact-form label:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(20,111,117,.08); }
.form-submit { align-self: flex-start; }
.form-status { min-height: 19px; font-size: 12px !important; }
.form-status.error { color: #b42318; }
.form-status.success { color: #237a57; }

.site-footer { background: var(--footer); color: white; padding: 70px 0 42px; }
.footer-top { display: grid; grid-template-columns: 360px 150px 360px; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand > strong { font-size: 22px; line-height: 30px; }
.footer-brand > span, .footer-brand > p { color: #b8c9c9; font-size: 14px; line-height: 22px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column b { color: var(--sand); font-size: 13px; line-height: 18px; }
.footer-column a, .footer-column span, .footer-column button { border: 0; padding: 0; background: transparent; color: white; font-size: 14px; line-height: 19px; font-weight: 500; cursor: pointer; text-align: left; }
.languages-column button { display: inline-flex; align-items: center; gap: 8px; }
.languages-column button .language-flag { width: 22px; height: 15px; flex-basis: 22px; }
.languages-column button.active-language { color: var(--sand); font-weight: 700; }
.footer-column span[aria-disabled="true"] { cursor: default; color: #aebdbd; }
.languages-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; align-content: start; direction: ltr; }
.languages-column b { grid-column: 1 / -1; }
.footer-bottom { margin-top: 34px; padding-top: 34px; border-top: 1px solid #384a4d; display: flex; justify-content: space-between; color: #99adad; font-size: 12px; line-height: 16px; }

.lightbox { border: 0; padding: 0; border-radius: 22px; overflow: visible; background: transparent; max-width: min(92vw, 1200px); max-height: 90vh; }
.lightbox::backdrop { background: rgba(9,20,22,.85); backdrop-filter: blur(5px); }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.lightbox-close { position: absolute; top: -45px; right: 0; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.12); color: white; font-size: 25px; cursor: pointer; }

@media (max-width: 1080px) {
  :root { --container: 920px; }
  .desktop-nav { gap: 16px; }
  .hero-grid { grid-template-columns: 42% 1fr; gap: 42px; }
  .hero-grid h1 { font-size: 50px; line-height: 1.06; }
  .hero-visual { height: 520px; }
  .hero-image { height: 490px; }
  .floating-location-card { bottom: 25px; }
  .facts-card { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .fact { border: 0; }
  .location-grid { grid-template-columns: 1.1fr .9fr; gap: 40px; }
  .location-visual > img { width: 100%; }
  .mini-map { right: 0; }
  .amenity { grid-column: span 6; }
  .amenity:nth-child(n+5) { grid-column: span 6; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; }
  .footer-top { grid-template-columns: 2fr 1fr 2fr; }
}

@media (max-width: 767px) {
  .container { width: calc(100% - 40px); }
  .header-inner { height: 76px; width: calc(100% - 40px); }
  .brand-main { font-size: 18px; line-height: 25px; }
  .brand-sub { font-size: 8px; line-height: 11px; letter-spacing: 1.76px; }
  .desktop-nav { display: none; }
  .mobile-header-actions { display: flex; gap: 10px; }
  .icon-button { width: 44px; height: 44px; border: 1px solid var(--border); background: white; border-radius: 13px; display: grid; place-items: center; font-size: 17px; cursor: pointer; }
  .menu-trigger { background: var(--teal); border-color: var(--teal); color: white; font-size: 22px; font-weight: 700; }
  .mobile-menu { position: fixed; inset: 76px 0 0 0; z-index: 45; background: rgba(246,243,237,.98); padding: 24px 20px 40px; overflow: auto; backdrop-filter: blur(10px); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
  .mobile-menu nav a { padding: 14px 16px; border-radius: 14px; background: white; border: 1px solid var(--border); font-size: 18px; font-weight: 700; }
  .language-sheet { width: 100%; padding: 18px 20px 22px; }
  .mobile-language-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .mobile-language-list button { min-height: 64px; }

  .hero { padding: 28px 0 48px; }
  .hero-grid { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; min-height: 0; }
  .hero-copy { display: contents; }
  .eyebrow-pill { order: 1; font-size: 12px; line-height: 17px; }
  h1 { order: 2; width: 100%; font-size: 41px; line-height: 45px; }
  .lead { order: 3; width: 100%; font-size: 16px; line-height: 25px; }
  .hero-actions { order: 4; width: 100%; display: grid; grid-template-columns: 1.27fr 1fr; gap: 10px; }
  .hero-actions .button { min-height: 54px; padding-inline: 12px; font-size: 14px; }
  .map-link { order: 5; font-size: 13px; }
  .trust-note { display: none; }
  .hero-visual { order: 6; width: 100%; height: auto; display: flex; flex-direction: column; gap: 14px; }
  .sand-orb { display: none; }
  .hero-image { position: static; width: 100%; height: 440px; border-width: 6px; border-radius: 24px; }
  .floating-location-card { position: static; width: calc(100% - 36px); height: 66px; border-radius: 17px; margin-top: 0; }
  .floating-location-card .badge-icon { width: 42px; height: 42px; flex-basis: 42px; border-radius: 13px; background: var(--teal-soft); }

  .quick-facts { padding-bottom: 48px; }
  .facts-card { box-shadow: none; border-radius: 0; padding: 0; background: transparent; grid-template-columns: 1fr 1fr; gap: 12px; }
  .fact { min-height: 134px; padding: 15px 14px !important; border: 1px solid var(--border) !important; border-radius: 17px; background: white; box-shadow: 0 6px 20px rgba(10,26,28,.07); flex-direction: column; align-items: flex-start; gap: 8px; }
  .fact-icon { width: 42px; height: 42px; flex-basis: 42px; border-radius: 13px; }
  .fact strong { font-size: 14px; line-height: 20px; }
  .fact small { font-size: 11px; line-height: 17px; }

  .rooms { padding: 68px 0 74px; }
  .section-heading { margin-bottom: 28px; }
  .eyebrow { font-size: 11px; line-height: 15px; }
  .section-heading h2, .location-copy h2, .faq-intro h2 { font-size: 34px; line-height: 42px; }
  .section-heading p { font-size: 15px; line-height: 23px; }
  .room-grid { grid-template-columns: 1fr; gap: 28px; }
  .room-card { border-radius: 22px; }
  .room-card > img { height: 250px; }
  .room-body { padding: 20px 20px 22px; gap: 16px; }
  .room-body h3 { font-size: 22px; line-height: 29px; }
  .room-body > p { font-size: 13px; line-height: 20px; }
  .chips { gap: 8px; }
  .chips span { font-size: 11px; line-height: 15px; padding: 2px 10px; }

  .location { padding: 68px 0 72px; }
  .location-grid { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
  .location-visual { order: 4; height: 300px; width: 100%; }
  .location-visual > img { width: 100%; height: 300px; border-radius: 22px; }
  .mini-map { display: none; }
  .location-copy { display: contents; }
  .location-copy .eyebrow { order: 1; }
  .location-copy h2 { order: 2; font-size: 34px; line-height: 42px; }
  .location-copy > p { order: 3; font-size: 15px; line-height: 23px; }
  .address-card { order: 5; width: 100%; height: 70px; border-radius: 17px; padding: 0 14px; }
  .location-actions { order: 6; width: 100%; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .location-actions .button { min-height: 54px; width: 100%; font-size: 14px; }

  .amenities { padding: 68px 0 72px; }
  .section-heading.wide h2 { font-size: 33px; line-height: 41px; }
  .section-heading.wide p { font-size: 14px; line-height: 22px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .amenity, .amenity:nth-child(n+5) { grid-column: span 1; min-height: 104px; padding: 13px; gap: 11px; border-radius: 17px; }
  .amenity > span { width: 42px; height: 42px; flex-basis: 42px; border-radius: 13px; font-size: 11px; }
  .amenity strong { font-size: 13px; line-height: 18px; }
  .amenity small { font-size: 10px; line-height: 15px; }
  .amenity-wide { grid-column: 1 / -1 !important; min-height: 88px; }

  .gallery { padding: 68px 0 74px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 137px 141px; gap: 16px 12px; height: 610px; }
  .gallery-main { grid-column: 1 / -1; grid-row: 1; border-radius: 22px; }
  .gallery-item { border-radius: 19px; }

  .faq { padding: 68px 0 72px; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-intro { gap: 16px; }
  .faq-intro h2 { font-size: 33px; line-height: 41px; }
  .faq-intro p { font-size: 14px; line-height: 22px; }
  .faq-intro .button { display: none; }
  details { border-radius: 17px; padding: 18px; }
  summary { font-size: 14px; line-height: 20px; }
  summary::after { font-size: 20px; }
  details p { font-size: 12px; line-height: 19px; }

  .contact { padding: 68px 0 74px; }
  .contact-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-card { min-height: 0; border-radius: 24px; padding: 24px 20px; gap: 14px; }
  .contact-card h2 { font-size: 29px; line-height: 37px; }
  .contact-card > p { font-size: 13px; line-height: 20px; }
  .contact-row { height: 62px; border-radius: 15px; padding: 0 12px; gap: 11px; }
  .contact-row .badge-icon { width: 42px; height: 42px; flex-basis: 42px; border-radius: 13px; }
  .contact-row strong { font-size: 13px; line-height: 18px; }
  .contact-row small { font-size: 10px; line-height: 14px; }
  .contact-form { min-height: 0; border-radius: 22px; padding: 20px 18px; gap: 10px; }
  .contact-form h3 { font-size: 25px; line-height: 32px; }
  .contact-form > p { font-size: 12px; line-height: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .contact-form label { min-height: 58px; border-radius: 13px; padding: 8px 12px; }
  .contact-form textarea { min-height: 76px; }
  .form-submit { width: 100%; min-height: 50px; font-size: 14px; }

  .site-footer { padding: 54px 0 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > strong { font-size: 19px; line-height: 26px; }
  .footer-brand > span, .footer-brand > p { font-size: 13px; line-height: 20px; }
  .footer-column b { font-size: 11px; line-height: 15px; }
  .footer-column a, .footer-column span, .footer-column button { font-size: 13px; line-height: 18px; }
  .languages-column { grid-column: 1 / -1; max-height: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
  .languages-column b { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; font-size: 10px; line-height: 14px; padding-top: 24px; margin-top: 26px; }
}

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