/* Inn at Pelican Bay — 7-star site styles */
:root {
  --ink: #0e1216;
  --ink-soft: #161c22;
  --ivory: #f8f5ef;
  --ivory-deep: #efe9dd;
  --gold: #c9a227;
  --gold-soft: #d8bc6a;
  --gold-pale: rgba(201, 162, 39, 0.14);
  --text: #2a2f35;
  --text-soft: #6b7280;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --shadow-lg: 0 30px 80px rgba(10, 14, 18, 0.22);
  --shadow-md: 0 14px 44px rgba(10, 14, 18, 0.14);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--ivory); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- type ---------- */
.eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.display { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--ink); }
.display em { font-style: italic; color: var(--gold); }
h2.display { font-size: clamp(34px, 4.6vw, 56px); }
.lede { font-size: 17px; color: var(--text-soft); max-width: 640px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; padding: 17px 34px; border: 1px solid transparent; cursor: pointer; transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.btn-gold { background: linear-gradient(135deg, #d8bc6a, #c9a227 55%, #a8861d); color: #14110a; box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201, 162, 39, 0.5); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: var(--white); background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-dark:hover { background: var(--ink); color: var(--ivory); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 22px 4vw; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(12, 15, 19, 0.92); backdrop-filter: blur(14px); padding: 12px 4vw; box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35); }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.nav-brand .nb-name { font-family: var(--serif); font-size: 21px; color: var(--white); letter-spacing: 0.04em; }
.nav-brand .nb-sub { font-size: 9.5px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-soft); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: rgba(255, 255, 255, 0.85); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta { margin-left: 10px; padding: 13px 26px !important; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 26px; height: 2px; background: var(--white); transition: 0.3s; }
@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 0; background: rgba(12, 15, 19, 0.97); flex-direction: column; justify-content: center; gap: 28px; transform: translateX(100%); transition: transform 0.4s; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 16px; }
  .nav-burger { display: flex; z-index: 110; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 13, 17, 0.55) 0%, rgba(10, 13, 17, 0.25) 45%, rgba(10, 13, 17, 0.72) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 120px 24px 140px; max-width: 880px; }
.hero-inner .eyebrow { color: var(--gold-soft); }
.hero-title { font-family: var(--serif); font-size: clamp(46px, 7.5vw, 96px); color: var(--white); font-weight: 500; line-height: 1.04; margin: 22px 0 18px; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45); }
.hero-title em { font-style: italic; color: var(--gold-soft); }
.hero-sub { color: rgba(255, 255, 255, 0.88); font-size: 17px; max-width: 560px; margin: 0 auto 38px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-badges { position: absolute; bottom: 110px; left: 0; right: 0; display: flex; justify-content: center; gap: 38px; z-index: 2; color: rgba(255, 255, 255, 0.85); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; flex-wrap: wrap; padding: 0 20px; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }
.hero-badges b { color: var(--gold-soft); font-weight: 600; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.7); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- booking bar ---------- */
.book-bar { position: relative; z-index: 5; max-width: 1060px; margin: -64px auto 0; background: var(--white); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: repeat(4, 1fr) auto; border-top: 3px solid var(--gold); }
.book-bar .bb-field { padding: 22px 26px; border-right: 1px solid #ece6da; display: flex; flex-direction: column; gap: 6px; }
.book-bar label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
.book-bar input, .book-bar select { border: none; outline: none; font-family: var(--sans); font-size: 15px; color: var(--ink); background: transparent; }
.book-bar .bb-go { display: flex; }
.book-bar .bb-go .btn { height: 100%; border-radius: 0; padding: 0 44px; }
@media (max-width: 900px) { .book-bar { grid-template-columns: 1fr 1fr; margin: -40px 18px 0; } .book-bar .bb-go { grid-column: 1 / -1; } .book-bar .bb-go .btn { width: 100%; justify-content: center; padding: 20px; } }

/* ---------- sections ---------- */
.section { padding: 110px 4vw; }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, 0.82); }
.section-dark .display { color: var(--white); }
.section-dark .lede { color: rgba(255, 255, 255, 0.62); }
.section-head { max-width: 1240px; margin: 0 auto 56px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.section-head .sh-left { max-width: 680px; }
.section-head .display { margin: 14px 0 16px; }
.wrap { max-width: 1240px; margin: 0 auto; }
.gold-rule { width: 64px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 18px 0; }

/* intro split */
.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; max-width: 1240px; margin: 0 auto; }
.intro-imgs { position: relative; }
.intro-imgs .ii-main { width: 88%; box-shadow: var(--shadow-lg); }
.intro-imgs .ii-float { position: absolute; right: 0; bottom: -60px; width: 52%; border: 6px solid var(--ivory); box-shadow: var(--shadow-md); }
.intro-stats { display: flex; gap: 40px; margin-top: 42px; flex-wrap: wrap; }
.intro-stats .st b { display: block; font-family: var(--serif); font-size: 38px; color: var(--gold); line-height: 1; }
.intro-stats .st span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); }
@media (max-width: 980px) { .intro-grid { grid-template-columns: 1fr; gap: 80px; } }

/* ---------- rooms ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1240px; margin: 0 auto; }
.room-card { background: var(--white); box-shadow: var(--shadow-md); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s; }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-card .rc-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.room-card .rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.room-card:hover .rc-img img { transform: scale(1.07); }
.room-card .rc-view { position: absolute; top: 16px; left: 16px; background: rgba(12, 15, 19, 0.82); color: var(--gold-soft); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; padding: 8px 14px; backdrop-filter: blur(6px); }
.room-card .rc-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.room-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.room-card .rc-specs { display: flex; gap: 16px; font-size: 11.5px; color: var(--text-soft); letter-spacing: 0.06em; margin-bottom: 14px; flex-wrap: wrap; }
.room-card .rc-specs span { display: flex; align-items: center; gap: 6px; }
.room-card p.rc-desc { font-size: 14px; color: var(--text-soft); flex: 1; }
.room-card .rc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 20px; border-top: 1px solid #ece6da; }
.room-card .rc-rate b { font-family: var(--serif); font-size: 28px; color: var(--ink); }
.room-card .rc-rate span { font-size: 11px; color: var(--text-soft); letter-spacing: 0.1em; }
.room-card .rc-book { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: 0.3s; }
.room-card .rc-book:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- amenities ---------- */
.amen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2px; max-width: 1240px; margin: 0 auto; }
.amen-tile { position: relative; aspect-ratio: 1; overflow: hidden; cursor: default; }
.amen-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.amen-tile:hover img { transform: scale(1.08); }
.amen-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10, 13, 17, 0.82)); }
.amen-tile .at-label { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; }
.amen-tile .at-label b { display: block; font-family: var(--serif); font-size: 22px; color: var(--white); font-weight: 500; }
.amen-tile .at-label span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }
.amen-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px 34px; max-width: 1240px; margin: 56px auto 0; }
.amen-list .al-item { display: flex; gap: 12px; align-items: baseline; font-size: 14px; color: rgba(255, 255, 255, 0.78); }
.amen-list .al-item::before { content: '◆'; color: var(--gold); font-size: 9px; }

/* ---------- specials ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; max-width: 1240px; margin: 0 auto; }
.spec-card { position: relative; background: var(--white); box-shadow: var(--shadow-md); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s, box-shadow 0.4s; }
.spec-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.spec-card .sc-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--ivory-deep); }
.spec-card .sc-img img { width: 100%; height: 100%; object-fit: cover; }
.spec-card .sc-badge { position: absolute; top: 18px; right: -34px; transform: rotate(40deg); background: var(--gold); color: #14110a; font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; padding: 7px 44px; }
.spec-card .sc-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.spec-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink); }
.spec-card .sc-sub { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; margin: 4px 0 12px; }
.spec-card p { font-size: 14px; color: var(--text-soft); }
.spec-card ul { list-style: none; margin: 16px 0 22px; }
.spec-card ul li { font-size: 13px; color: var(--text); padding: 5px 0 5px 22px; position: relative; }
.spec-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.spec-card .sc-cta { margin-top: auto; }
.spec-card .sc-code { font-size: 11.5px; color: var(--text-soft); margin-top: 12px; }
.spec-card .sc-code b { color: var(--ink); letter-spacing: 0.16em; }

/* ---------- gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 10px; max-width: 1240px; margin: 0 auto; }
.gal-item { overflow: hidden; cursor: zoom-in; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
@media (max-width: 800px) { .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8, 10, 13, 0.94); display: none; align-items: center; justify-content: center; padding: 5vh 5vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6); }
.lightbox .lb-close { position: absolute; top: 26px; right: 36px; color: var(--white); font-size: 34px; background: none; border: none; cursor: pointer; opacity: 0.8; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); color: var(--white); font-size: 22px; width: 52px; height: 52px; cursor: pointer; }
.lightbox .lb-prev { left: 26px; } .lightbox .lb-next { right: 26px; }

/* ---------- experience strip ---------- */
.exp-strip { position: relative; min-height: 540px; display: flex; align-items: center; overflow: hidden; }
.exp-strip > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exp-strip::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 13, 17, 0.82) 0%, rgba(10, 13, 17, 0.35) 60%, transparent); }
.exp-strip .es-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 90px 4vw; width: 100%; }
.exp-strip .es-inner .display { color: var(--white); max-width: 520px; }
.exp-strip .es-inner p { color: rgba(255, 255, 255, 0.8); max-width: 480px; margin: 18px 0 30px; }

/* ---------- location ---------- */
.loc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; max-width: 1240px; margin: 0 auto; align-items: center; }
.loc-grid iframe { width: 100%; height: 420px; border: 0; filter: grayscale(0.4); box-shadow: var(--shadow-md); }
.loc-list { margin-top: 28px; display: grid; gap: 14px; }
.loc-list .ll-item { display: flex; justify-content: space-between; border-bottom: 1px solid #e5ddcd; padding-bottom: 12px; font-size: 14px; }
.loc-list .ll-item b { color: var(--ink); font-weight: 600; }
.loc-list .ll-item span { color: var(--text-soft); }
@media (max-width: 980px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { background: #0a0d11; color: rgba(255, 255, 255, 0.6); padding: 80px 4vw 36px; }
.footer .f-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; }
.footer .f-brand img { height: 64px; margin-bottom: 18px; }
.footer h4 { color: var(--gold-soft); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer a { display: block; font-size: 13.5px; padding: 5px 0; color: rgba(255, 255, 255, 0.6); transition: 0.25s; }
.footer a:hover { color: var(--gold-soft); }
.footer .f-bottom { max-width: 1240px; margin: 56px auto 0; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255, 255, 255, 0.35); }
@media (max-width: 900px) { .footer .f-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- toast ---------- */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 120px); background: var(--ink); color: var(--white); padding: 16px 28px; font-size: 14px; box-shadow: var(--shadow-lg); z-index: 300; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); border-left: 3px solid var(--gold); }
.toast.show { transform: translate(-50%, 0); }

/* ---------- The Gulf Sovereign (signature experience) ---------- */
.voyage { background: linear-gradient(180deg, #0a0d11 0%, #10141a 60%, #0a0d11 100%); color: rgba(255,255,255,0.85); padding: 110px 4vw; position: relative; overflow: hidden; }
.voyage::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(201,162,39,0.13), transparent 65%); pointer-events: none; }
.voyage .v-head { text-align: center; max-width: 820px; margin: 0 auto 56px; position: relative; }
.voyage .v-head .display { color: #fff; font-size: clamp(38px, 5.6vw, 68px); margin: 16px 0 14px; }
.voyage .v-head .lede { color: rgba(255,255,255,0.65); margin: 0 auto; }
.voyage .v-imgs { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; max-width: 1240px; margin: 0 auto 56px; }
.voyage .v-imgs img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
@media (max-width: 760px) { .voyage .v-imgs { grid-template-columns: 1fr; } }
.voyage .v-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; max-width: 1240px; margin: 0 auto; align-items: start; }
@media (max-width: 920px) { .voyage .v-grid { grid-template-columns: 1fr; } }
.voyage .v-days { display: grid; gap: 0; }
.voyage .v-day { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.voyage .v-day b.d { font-family: var(--serif); font-size: 15px; letter-spacing: 0.14em; color: var(--gold); white-space: nowrap; min-width: 92px; padding-top: 2px; }
.voyage .v-day p { font-size: 14.5px; color: rgba(255,255,255,0.78); }
.voyage .v-day p b { color: #fff; font-weight: 600; }
.voyage .v-side { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,162,39,0.35); padding: 34px; }
.voyage .v-side h3 { font-family: var(--serif); font-size: 24px; color: var(--gold-soft); font-weight: 500; margin-bottom: 18px; }
.voyage .v-side ul { list-style: none; margin-bottom: 26px; }
.voyage .v-side li { font-size: 13.5px; padding: 7px 0 7px 24px; position: relative; color: rgba(255,255,255,0.82); }
.voyage .v-side li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }
.voyage .v-price { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; margin-top: 4px; }
.voyage .v-price .from { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.voyage .v-price .amt { font-family: var(--serif); font-size: 44px; color: #fff; line-height: 1.1; }
.voyage .v-price .amt small { font-size: 16px; color: rgba(255,255,255,0.55); font-family: var(--sans); }
.voyage .v-price .note { font-size: 11.5px; color: rgba(255,255,255,0.45); margin: 10px 0 20px; line-height: 1.7; }
.voyage .v-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold-soft); font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; padding: 8px 18px; margin-bottom: 8px; }

/* ---------- phones (iPhone-first pass) ---------- */
@media (max-width: 640px) {
  .section { padding: 68px 6vw; }
  .section-head { margin-bottom: 34px; }
  .lede { font-size: 15px; }
  .nav { padding: 14px 5vw; }
  .nav.scrolled { padding: 10px 5vw; }
  .nav-brand img { height: 40px; }
  .nav-brand .nb-name { font-size: 16px; }
  .nav-brand .nb-sub { font-size: 8px; letter-spacing: 0.3em; }
  .hero-inner { padding: 110px 22px 150px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas .btn { padding: 15px 24px; font-size: 11px; }
  .hero-badges { bottom: 84px; gap: 8px 20px; font-size: 9.5px; letter-spacing: 0.2em; }
  .hero-scroll { display: none; }
  .book-bar { margin: -30px 14px 0; }
  .book-bar .bb-field { padding: 15px 16px; }
  .book-bar input, .book-bar select { font-size: 16px; } /* ≥16px stops iOS focus-zoom */
  .intro-grid { gap: 64px; }
  .intro-imgs .ii-float { bottom: -40px; border-width: 4px; }
  .intro-stats { gap: 24px; margin-top: 32px; }
  .intro-stats .st b { font-size: 30px; }
  .room-card .rc-body { padding: 22px 20px 24px; }
  .room-card h3 { font-size: 23px; }
  .amen-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .amen-tile .at-label { left: 13px; right: 13px; bottom: 11px; }
  .amen-tile .at-label b { font-size: 15px; }
  .amen-tile .at-label span { font-size: 9px; letter-spacing: 0.14em; }
  .amen-list { margin-top: 40px; gap: 12px 20px; }
  .exp-strip { min-height: 430px; }
  .exp-strip .es-inner { padding: 64px 6vw; }
  .spec-card .sc-body { padding: 24px 20px; }
  .spec-card h3 { font-size: 23px; }
  .gal-grid { grid-auto-rows: 128px; gap: 6px; }
  .loc-grid { gap: 40px; }
  .loc-grid iframe { height: 300px; }
  .footer { padding: 56px 6vw 28px; }
  .footer .f-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer .f-bottom { margin-top: 38px; font-size: 11px; }
  .lightbox .lb-nav { width: 42px; height: 42px; }
  .lightbox .lb-prev { left: 10px; } .lightbox .lb-next { right: 10px; }
}
