@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #eef2f6;
  --muted: #9aa6b4;
  --night: #050b13;
  --navy: #071525;
  --navy-2: #0b2036;
  --navy-3: #102c49;
  --gold: #d7ad55;
  --gold-light: #f0cf8b;
  --line: rgba(215, 173, 85, .25);
  --panel: rgba(8, 20, 34, .88);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius: 22px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body { margin: 0; color: var(--ink); background: radial-gradient(circle at 20% 10%, rgba(17, 54, 91, .28), transparent 32rem), var(--night); font-family: var(--sans); line-height: 1.6; padding-bottom: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; background: var(--gold); color: #07101b; padding: 10px 16px; z-index: 200; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid rgba(215, 173, 85, .12); background: rgba(3, 10, 18, .87); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 470px; max-width: 58vw; }
.brand img { width: 100%; height: 104px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 29px; color: #c3cbd4; font-size: .9rem; }
.site-nav > a:not(.button) { transition: color .2s ease; }
.site-nav > a:not(.button):hover { color: var(--gold-light); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: transparent; padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: var(--gold); margin: 5px 0; border-radius: 4px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border: 1px solid var(--gold); border-radius: 10px; padding: 0 25px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #0a111a; font-weight: 700; letter-spacing: .02em; box-shadow: 0 12px 30px rgba(215, 173, 85, .17); transition: transform .2s ease, filter .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 16px 38px rgba(215, 173, 85, .24); }
.button-small { min-height: 42px; padding-inline: 20px; }
.button-ghost { color: var(--gold-light); background: rgba(4, 13, 23, .35); box-shadow: none; }
.button-wide { width: 100%; }
.button:disabled { opacity: .65; cursor: wait; transform: none; }

.hero { position: relative; min-height: 790px; display: grid; align-items: center; padding: 140px 0 160px; overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { transform: scale(1.015); }
.hero-media.hero-slider { overflow: hidden; background: #071525; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-shade { background: linear-gradient(90deg, rgba(3, 9, 16, .93) 0%, rgba(3, 9, 16, .74) 44%, rgba(3, 9, 16, .26) 74%, rgba(3, 9, 16, .54) 100%), linear-gradient(0deg, #050b13 0%, transparent 40%); }
.hero-content { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
.hero h1, .section h2, .site-footer h2 { font-family: var(--serif); }

.hero h1 { max-width: 720px; margin: 0; color: white; font-size: clamp(3.7rem, 7.5vw, 7rem); line-height: .86; font-weight: 600; letter-spacing: -.035em; text-wrap: balance; }
.hero h1 span { color: var(--gold-light); }
.hero-copy { max-width: 610px; margin: 30px 0 0; color: #d4dbe2; font-size: clamp(1rem, 1.7vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.representative-note { margin: 18px 0 0; color: rgba(238, 242, 246, .62); font-size: .76rem; }

.search-bar { position: absolute; z-index: 4; left: 50%; bottom: 32px; transform: translateX(-50%); width: min(1120px, calc(100% - 40px)); display: grid; grid-template-columns: 1fr 1fr .8fr auto; gap: 0; padding: 13px; border: 1px solid rgba(215, 173, 85, .55); border-radius: 16px; background: rgba(5, 17, 30, .93); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.search-bar label { display: grid; gap: 4px; padding: 4px 20px; border-right: 1px solid rgba(215, 173, 85, .15); }
.search-bar label span { color: var(--gold); font-size: .69rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.search-bar input, .search-bar select { width: 100%; border: 0; background: transparent; color: white; outline: 0; min-height: 30px; color-scheme: dark; }
.search-bar .button { min-width: 190px; }

.facts-strip { border-block: 1px solid var(--line); background: linear-gradient(90deg, rgba(7, 23, 40, .96), rgba(10, 32, 54, .86), rgba(7, 23, 40, .96)); }
.facts-grid { display: grid; grid-template-columns: repeat(8, 1fr); }
.facts-grid article { min-height: 125px; padding: 24px 10px; display: grid; place-content: center; text-align: center; border-right: 1px solid rgba(215, 173, 85, .18); }
.facts-grid article:last-child { border-right: 0; }
.facts-grid strong { color: var(--gold-light); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.facts-grid span { margin-top: 9px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: 105px 0; scroll-margin-top: 74px; }
.section-toned { border-block: 1px solid rgba(215, 173, 85, .12); background: linear-gradient(180deg, rgba(8, 26, 45, .54), rgba(5, 11, 19, .28)); }
.section-heading { max-width: 730px; margin: 0 auto 50px; text-align: center; }
.section-heading.compact { margin-bottom: 36px; }
.section-heading h2, .booking-intro h2, .location-section h2 { margin: 0; color: white; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.4rem); line-height: .95; font-weight: 600; }
.section-heading > p:last-child { margin: 20px auto 0; color: var(--muted); font-size: 1rem; }

.apartment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.apartment-card { overflow: hidden; border: 1px solid rgba(215, 173, 85, .18); border-radius: var(--radius); background: linear-gradient(180deg, rgba(16, 34, 52, .96), rgba(7, 17, 28, .98)); box-shadow: 0 20px 60px rgba(0, 0, 0, .2); transition: transform .25s ease, border-color .25s ease; }
.apartment-card:hover { transform: translateY(-7px); border-color: rgba(215, 173, 85, .5); }
.apartment-card.featured { border-color: rgba(215, 173, 85, .48); }
.card-image { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.apartment-card:hover .card-image img { transform: scale(1.035); }
.image-badge { position: absolute; right: 12px; bottom: 12px; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: rgba(4, 11, 19, .82); color: #e5eaf0; font-size: .66rem; }
.card-body { padding: 25px; }
.card-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.card-title-row h3 { margin: 0; color: white; font-family: var(--serif); font-size: 2.55rem; line-height: .9; }
.card-title-row p { margin: 7px 0 0; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.card-title-row strong { color: var(--gold-light); white-space: nowrap; font-family: var(--serif); font-size: 1.42rem; font-weight: 600; }
.card-title-row strong span { color: var(--muted); font-family: var(--sans); font-size: .67rem; font-weight: 400; }
.card-copy { min-height: 78px; margin: 20px 0; color: #bdc6d0; font-size: .9rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; padding: 0; margin: 0 0 24px; list-style: none; color: #d0d7de; font-size: .78rem; }
.feature-list li::before { content: '✓'; margin-right: 8px; color: var(--gold); font-weight: 700; }
.card-body .button { width: 100%; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.gallery-card { overflow: hidden; margin: 0; border: 1px solid rgba(215, 173, 85, .18); border-radius: 18px; background: rgba(7, 20, 35, .72); box-shadow: var(--shadow); }
.gallery-card img { width: 100%; height: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-card figcaption { padding: 13px 16px 15px; color: #d4dbe2; font-size: .83rem; }
.gallery-featured { grid-column: span 2; grid-row: span 2; }
.gallery-featured img { aspect-ratio: 16 / 9; }

.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.amenity-grid article { min-height: 200px; padding: 27px; border: 1px solid rgba(215, 173, 85, .16); border-radius: 18px; background: rgba(7, 20, 35, .68); }
.amenity-grid article > span { display: inline-grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(215, 173, 85, .38); border-radius: 14px; color: var(--gold-light); font-size: 1.45rem; }
.amenity-grid h3 { margin: 20px 0 8px; color: white; font-size: 1rem; }
.amenity-grid p { margin: 0; color: var(--muted); font-size: .84rem; }

.booking-section { position: relative; overflow: hidden; }
.booking-section::before { content: ''; position: absolute; width: 540px; height: 540px; right: -240px; top: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(21, 71, 115, .4), transparent 66%); pointer-events: none; }
.booking-layout { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 65px; align-items: start; }
.booking-intro { position: sticky; top: 120px; }
.booking-intro > p:not(.eyebrow) { max-width: 450px; color: var(--muted); }
.booking-promise { margin-top: 30px; padding: 20px; border-left: 3px solid var(--gold); background: rgba(8, 27, 47, .58); }
.booking-promise strong, .booking-promise span { display: block; }
.booking-promise strong { color: var(--gold-light); }
.booking-promise span { margin-top: 4px; color: var(--muted); font-size: .84rem; }
.booking-card { padding: clamp(24px, 4vw, 38px); border: 1px solid rgba(215, 173, 85, .33); border-radius: var(--radius); background: rgba(7, 19, 32, .93); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field span { color: var(--gold-light); font-size: .69rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(160, 180, 199, .23); border-radius: 10px; background: #07111d; color: white; padding: 13px 14px; outline: 0; color-scheme: dark; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(215, 173, 85, .12); }
.hidden-field { position: absolute; left: -9999px; }
.summary-card { margin: 24px 0; padding: 19px; border: 1px solid rgba(215, 173, 85, .21); border-radius: 14px; background: rgba(2, 9, 16, .72); }
.summary-card > div { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; color: var(--muted); font-size: .83rem; }
.summary-card strong { color: white; font-weight: 600; }
.summary-card .summary-total { margin-top: 8px; padding-top: 14px; border-top: 1px solid rgba(215, 173, 85, .22); color: white; font-size: 1rem; }
.summary-card .summary-total strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.65rem; }
.form-message { min-height: 0; margin: 0 0 12px; color: #ffb2a7; font-size: .84rem; }
.form-message.success { color: #9be1b3; }
.form-message a { color: var(--gold-light); text-decoration: underline; }
.fine-print { margin: 13px 0 0; color: #7f8b98; font-size: .7rem; text-align: center; }

.location-section { padding-top: 80px; border-top: 1px solid rgba(215, 173, 85, .14); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.location-grid > div:first-child > p:not(.eyebrow) { max-width: 520px; color: var(--muted); }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 25px; }
.travel-times { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.travel-times article { min-height: 82px; padding: 15px 16px; border: 1px solid rgba(215, 173, 85, .18); border-radius: 12px; background: rgba(8, 20, 34, .62); }
.travel-times strong, .travel-times span { display: block; }
.travel-times strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.45rem; }
.travel-times span { margin-top: 2px; color: #d5dce3; font-size: .78rem; }
.travel-note { margin-top: 12px !important; color: #778492 !important; font-size: .72rem; }

.ferry-section { border-top: 1px solid rgba(215, 173, 85, .14); background: radial-gradient(circle at 70% 20%, rgba(20, 61, 96, .22), transparent 40%), #050d17; }
.ferry-status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 850px; margin: 0 auto 28px; }
.ferry-status-grid article { padding: 22px; border: 1px solid rgba(215, 173, 85, .26); border-radius: 14px; background: rgba(4, 14, 25, .82); text-align: center; box-shadow: var(--shadow); }
.ferry-status-grid span, .ferry-status-grid strong, .ferry-status-grid small { display: block; }
.ferry-status-grid span { color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.ferry-status-grid strong { margin: 7px 0 4px; color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.25rem); }
.ferry-status-grid small { color: #8090a0; }
.ferry-schedule-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ferry-card { padding: clamp(22px, 3vw, 32px); border: 1px solid rgba(215, 173, 85, .2); border-radius: var(--radius); background: rgba(8, 20, 34, .86); box-shadow: var(--shadow); }
.ferry-card-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(215, 173, 85, .18); }
.ferry-card-heading .eyebrow { margin-bottom: 5px; }
.ferry-card-heading h3 { margin: 0; color: white; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; }
.ferry-card-heading > span { color: var(--gold-light); font-size: .72rem; white-space: nowrap; }
.time-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 20px; }
.time-grid time { display: grid; place-content: center; min-height: 48px; padding: 5px; border: 1px solid rgba(152, 176, 198, .16); border-radius: 9px; background: rgba(2, 9, 16, .62); color: #dce4eb; font-size: .76rem; text-align: center; }
.ferry-information { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 24px; padding: 24px; border: 1px solid rgba(215, 173, 85, .16); border-radius: 14px; background: rgba(8, 19, 31, .58); }
.ferry-information strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.35rem; }
.ferry-information p { max-width: 650px; margin: 5px 0 0; color: var(--muted); font-size: .82rem; }
.ferry-links { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.schedule-stamp { margin: 14px 0 0; color: #6f7c89; font-size: .69rem; text-align: center; }

.text-link { color: var(--gold-light); border-bottom: 1px solid var(--line); }
.map-card { position: relative; min-height: 330px; overflow: hidden; display: grid; place-content: center; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 62% 42%, rgba(215, 173, 85, .18), transparent 3%), radial-gradient(circle at 50% 50%, rgba(19, 65, 105, .6), transparent 52%), #07111d; box-shadow: var(--shadow); }
.map-card::before, .map-card::after { content: ''; position: absolute; border: 1px solid rgba(215, 173, 85, .18); border-radius: 50%; transform: rotate(-9deg); }
.map-card::before { width: 420px; height: 90px; left: 35px; top: 105px; }
.map-card::after { width: 365px; height: 56px; left: 62px; top: 120px; }
.map-pin { position: relative; z-index: 2; color: var(--gold); font-size: 2.5rem; text-shadow: 0 0 22px rgba(215, 173, 85, .5); }
.map-card strong, .map-card small { position: relative; z-index: 2; display: block; }
.map-card strong { color: white; font-family: var(--serif); font-size: 2.1rem; }
.map-card small { margin-top: 6px; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); background: #030912; padding: 55px 0 110px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .7fr; gap: 60px; }
.footer-grid img { width: 310px; max-width: 100%; }
.footer-grid p { max-width: 390px; margin: 18px 0 0; color: var(--muted); font-size: .86rem; }
.footer-grid h2 { margin: 0 0 14px; color: var(--gold-light); font-size: 1.4rem; }
.footer-grid a { display: block; margin: 8px 0; color: #aab4bf; font-size: .83rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(215, 173, 85, .12); color: #697582; font-size: .72rem; }

.floating-whatsapp { position: fixed; z-index: 95; right: 22px; bottom: 24px; display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; background: #23c763; color: white; font-weight: 700; box-shadow: 0 12px 34px rgba(0, 0, 0, .36); }
.floating-whatsapp span:first-child { font-size: 1.25rem; }
.mobile-action-bar { display: none; }
.toast { position: fixed; z-index: 150; left: 50%; bottom: 88px; transform: translate(-50%, 20px); max-width: calc(100% - 36px); padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; background: #101c29; color: white; font-size: .83rem; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.legal-page { min-height: 100vh; padding: 140px 0 100px; }
.legal-page article { max-width: 820px; }
.legal-page h1 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5rem); line-height: .9; }
.legal-page h2 { margin-top: 34px; color: var(--gold-light); font-size: 1.1rem; }
.legal-page p, .legal-page li { color: var(--muted); }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .facts-grid { grid-template-columns: repeat(4, 1fr); }
  .facts-grid article:nth-child(4) { border-right: 0; }
  .facts-grid article:nth-child(-n+4) { border-bottom: 1px solid rgba(215, 173, 85, .18); }
  .apartment-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .card-copy { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-featured { grid-column: 1 / -1; grid-row: auto; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}


.footer-app-tools { display: none; }
.footer-app-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-app-button { appearance: none; width: 100%; min-height: 58px; border: 1px solid rgba(215, 173, 85, .32); border-radius: 10px; background: rgba(255, 255, 255, .035); color: #d7dee5; font: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 12px; }
.footer-app-button span { color: var(--gold-light); font-size: 1.25rem; line-height: 1; }
.footer-app-button strong { font-size: .78rem; letter-spacing: .02em; }
.footer-app-button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

@media (max-width: 820px) {
  body { padding-bottom: 72px; }
  .site-header { position: sticky; }
  .brand { width: 330px; }
  .site-nav { position: absolute; top: 104px; left: 0; right: 0; display: none; align-items: stretch; padding: 22px 20px 26px; background: rgba(3, 10, 18, .98); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(0, 0, 0, .35); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 8px 4px; }
  .menu-toggle { display: block; }
  .hero { min-height: 780px; padding: 95px 0 215px; }
  .hero h1 { font-size: clamp(3.8rem, 14vw, 5.8rem); }
  .hero-shade { background: linear-gradient(90deg, rgba(3, 9, 16, .94), rgba(3, 9, 16, .58)), linear-gradient(0deg, #050b13 0%, transparent 50%); }
  .search-bar { bottom: 25px; grid-template-columns: 1fr 1fr; gap: 10px; padding: 13px; }
  .search-bar label { border: 1px solid rgba(215, 173, 85, .15); border-radius: 9px; padding: 9px 12px; }
  .search-bar .button { grid-column: 1 / -1; min-width: 0; }
  .section { padding: 80px 0; }
  .booking-layout, .location-grid { grid-template-columns: 1fr; gap: 38px; }
  .ferry-schedule-grid { grid-template-columns: 1fr; }
  .ferry-information { align-items: flex-start; flex-direction: column; }
  .booking-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .floating-whatsapp { bottom: 84px; right: 14px; width: 50px; height: 50px; padding: 0; justify-content: center; }
  .floating-whatsapp span:last-child { display: none; }
  .mobile-action-bar { position: fixed; z-index: 110; inset: auto 0 0; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 70px; padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid rgba(215, 173, 85, .38); background: rgba(5, 11, 19, .98); box-shadow: 0 -10px 28px rgba(0, 0, 0, .28); }
  .mobile-action-bar a { min-width: 0; display: grid; place-content: center; gap: 2px; text-align: center; border-right: 1px solid rgba(215, 173, 85, .14); color: #d2d8df; font-size: .65rem; }
  .mobile-action-bar a span { color: var(--gold-light); font-size: 1.2rem; line-height: 1; }
  .mobile-action-bar .book-action { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #07101a; font-weight: 800; }
  .mobile-action-bar .book-action span { color: #07101a; }
  .footer-app-tools { display: block; grid-column: 1 / -1; padding-top: 8px; }
  .footer-app-tools h2 { margin-bottom: 12px; }
  .footer-app-actions { max-width: 460px; }
  .site-footer { padding-bottom: 50px; }
}

@media (max-width: 590px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 82px; }
  .brand { width: 300px; max-width: 82vw; }
  .brand img { height: 74px; }
  .site-nav { top: 82px; }
  .hero { min-height: 800px; padding-top: 80px; }
  .hero-content { align-self: start; padding-top: 38px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 4.9rem); }
  .hero-copy { font-size: .95rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .search-bar { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .search-bar label { min-height: 61px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid article { min-height: 100px; }
  .facts-grid article:nth-child(2n) { border-right: 0; }
  .facts-grid article:nth-child(-n+6) { border-bottom: 1px solid rgba(215, 173, 85, .18); }
  .section-heading { text-align: left; margin-bottom: 35px; }
  .section-heading h2, .booking-intro h2, .location-section h2 { font-size: 3rem; }
  .section-heading > p:last-child { margin-left: 0; }
  .card-title-row { display: grid; }
  .feature-list { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-grid article { min-height: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .booking-card { padding: 20px; }
  .location-actions { align-items: stretch; display: grid; }
  .travel-times { grid-template-columns: 1fr; }
  .ferry-status-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .ferry-card-heading { align-items: flex-start; flex-direction: column; }
  .ferry-links { width: 100%; align-items: stretch; flex-direction: column; }
  .ferry-links .button { width: 100%; }
  .location-actions .button { width: 100%; }
  .map-card { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-app-tools { grid-column: auto; }
  .footer-app-actions { grid-template-columns: 1fr 1fr; width: 100%; }
  .footer-app-button { min-height: 56px; padding-inline: 8px; }
  .footer-bottom { display: grid; }
}

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

/* Hero image controls */
.hero-slide-controls {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 142px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(240, 207, 139, .25);
  border-radius: 999px;
  background: rgba(3, 10, 18, .58);
  backdrop-filter: blur(10px);
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: transparent;
  transition: width .2s ease, background .2s ease, border-color .2s ease;
}
.hero-dot.is-active {
  width: 25px;
  border-radius: 999px;
  border-color: var(--gold-light);
  background: var(--gold-light);
}

/* Mobile-first hero presentation: show the entire long building rather than cropping it */

.footer-app-tools { display: none; }
.footer-app-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-app-button { appearance: none; width: 100%; min-height: 58px; border: 1px solid rgba(215, 173, 85, .32); border-radius: 10px; background: rgba(255, 255, 255, .035); color: #d7dee5; font: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 12px; }
.footer-app-button span { color: var(--gold-light); font-size: 1.25rem; line-height: 1; }
.footer-app-button strong { font-size: .78rem; letter-spacing: .02em; }
.footer-app-button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    display: block;
    padding: 0;
    overflow: hidden;
    background: #050b13;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    transform: none;
    background: #071525;
  }
  .hero-slide {
    object-fit: cover;
    object-position: center center;
    background: #071525;
  }
  .hero-shade {
    top: 0;
    bottom: auto;
    height: auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(0deg, rgba(5, 11, 19, .34) 0%, rgba(5, 11, 19, .02) 35%, transparent 100%);
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    padding-top: 24px;
    padding-bottom: 24px;
    background: linear-gradient(180deg, #050b13 0%, #07111d 100%);
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 4.7rem);
    line-height: .9;
  }
  .hero-copy {
    max-width: 620px;
    margin-top: 20px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .representative-note {
    margin-top: 14px;
  }
  .hero-slide-controls {
    right: 50%;
    bottom: 12px;
    transform: translateX(50%);
    padding: 7px 9px;
  }
  .search-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 32px, 720px);
    margin: 0 auto 24px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 590px) {
  .hero-media,
  .hero-shade {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .hero-content {
    padding-top: 22px;
    padding-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }
  .hero-copy {
    margin-top: 16px;
    font-size: .94rem;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .search-bar {
    width: calc(100% - 28px);
    margin-bottom: 20px;
    grid-template-columns: 1fr;
  }
  .hero-slide-controls {
    bottom: 9px;
  }
  .hero-content .eyebrow {
    margin-bottom: 10px;
  }
  .representative-note {
    display: none;
  }
}

/* v3: real interior gallery, booking policies and occupancy helpers */
.interior-gallery-heading { margin: 58px 0 22px; }
.interior-gallery-heading h3 { margin: 0; color: #fff; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.25rem); line-height: .95; font-weight: 600; }
.interior-gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.interior-gallery-grid .gallery-card img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.field-help { display: block; margin-top: 4px; color: #7f8b98; font-size: .68rem; line-height: 1.4; }
.stay-policy-section { border-block: 1px solid rgba(215, 173, 85, .14); background: linear-gradient(180deg, rgba(8, 26, 45, .42), rgba(5, 11, 19, .2)); }
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.policy-grid article { padding: 26px; border: 1px solid rgba(215, 173, 85, .18); border-radius: 18px; background: rgba(7, 20, 35, .72); }
.policy-grid article > strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.policy-grid h3 { margin: 12px 0 7px; color: white; font-size: 1rem; }
.policy-grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.policy-note { margin: 20px 0 0; padding: 16px 18px; border-left: 3px solid var(--gold); background: rgba(8, 27, 47, .58); color: var(--muted); font-size: .86rem; }
.policy-note strong { color: var(--gold-light); }

@media (max-width: 1050px) {
  .interior-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 590px) {
  .interior-gallery-heading { margin-top: 42px; }
  .interior-gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .interior-gallery-grid .gallery-card:last-child { grid-column: 1 / -1; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-grid article { padding: 22px; }
}


.header-tools { display:flex; align-items:center; gap:12px; }
.lang-switcher { display:flex; align-items:center; gap:6px; margin-left:auto; }
.lang-btn { min-width:42px; height:38px; border:1px solid rgba(215,173,85,.28); border-radius:10px; background:rgba(5,17,30,.7); color:#d8e0e7; font-weight:700; }
.lang-btn.is-active, .lang-btn:hover { background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:#07101a; border-color:var(--gold); }
.hero-slide-controls { position:absolute; left:50%; transform:translateX(-50%); bottom:145px; z-index:5; display:flex; gap:8px; }
.hero-dot { width:10px; height:10px; border-radius:999px; border:1px solid rgba(255,255,255,.5); background:rgba(255,255,255,.25); }
.hero-dot.is-active { background:var(--gold-light); border-color:var(--gold-light); }
.interior-gallery-heading { text-align:center; margin:56px auto 24px; }
.interior-gallery-heading h3 { margin:0; color:white; font-family:var(--serif); font-size:clamp(2rem,4vw,3rem); font-weight:600; }
.interior-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.enquiry-section { border-top:1px solid rgba(215,173,85,.12); }
.policy-note { margin-top:18px; color:#d4dbe2; text-align:center; }
@media (max-width: 1050px) { .interior-gallery-grid { grid-template-columns: repeat(2,1fr);} }

.footer-app-tools { display: none; }
.footer-app-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-app-button { appearance: none; width: 100%; min-height: 58px; border: 1px solid rgba(215, 173, 85, .32); border-radius: 10px; background: rgba(255, 255, 255, .035); color: #d7dee5; font: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 12px; }
.footer-app-button span { color: var(--gold-light); font-size: 1.25rem; line-height: 1; }
.footer-app-button strong { font-size: .78rem; letter-spacing: .02em; }
.footer-app-button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

@media (max-width: 820px) { .lang-switcher { order:-1; } .header-tools { gap:8px; } .hero-slide-controls { bottom:185px; } }
@media (max-width: 590px) { .lang-btn { min-width:36px; height:34px; font-size:.78rem; } .lang-switcher { gap:4px; } .interior-gallery-grid { grid-template-columns:1fr; } .hero-slide-controls { bottom:240px; } }

/* v7 mobile footer cleanup: floating WhatsApp only; app actions visible in footer */
@media (max-width: 820px) {
  .mobile-action-bar { grid-template-columns: repeat(3, 1fr); }
  .footer-app-tools {
    display: block;
    grid-column: 1 / -1;
    margin-top: 4px;
    padding: 18px;
    border: 1px solid rgba(215, 173, 85, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
  }
  .footer-app-tools h2 { margin: 0 0 12px; }
  .footer-app-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
  .footer-app-button { min-height: 54px; border-radius: 12px; }
  .site-footer { padding-bottom: 48px; }
}

@media (max-width: 590px) {
  .footer-app-tools { grid-column: auto; padding: 15px; }
  .footer-app-actions { width: 100%; gap: 9px; }
  .footer-app-button { min-height: 52px; padding: 9px 7px; }
  .footer-app-button strong { font-size: .75rem; }
}

/* v8: app actions live inside the mobile drop-down menu */
.menu-app-tools { display: none; }
@media (max-width: 820px) {
  .menu-app-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(215, 173, 85, .22);
  }
  .menu-app-button {
    appearance: none;
    min-width: 0;
    min-height: 50px;
    border: 1px solid rgba(215, 173, 85, .42);
    border-radius: 11px;
    background: rgba(255, 255, 255, .045);
    color: #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
  }
  .menu-app-button span { color: var(--gold-light); font-size: 1.15rem; line-height: 1; }
  .menu-app-button strong { font-size: .78rem; line-height: 1.15; }
  .menu-app-button:active { transform: translateY(1px); }
  .menu-app-button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
  .footer-app-tools { display: none !important; }
}
@media (max-width: 390px) {
  .menu-app-tools { gap: 8px; }
  .menu-app-button { min-height: 48px; padding-inline: 6px; }
  .menu-app-button strong { font-size: .72rem; }
}
