/* Honky Tonk Punta Cana — design tokens & shared styles */

@font-face { font-family: "Gotham"; src: url("/assets/fonts/Gotham-Bold.otf") format("opentype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Josefin Slab"; src: url("/assets/fonts/JosefinSlab-Light.ttf") format("truetype"); font-weight: 300; font-display: swap; }

:root {
  --c-primary: #005069;
  --c-primary-hover: #00394c;
  --c-sand: #eee7cc;
  --c-text: #2e2a38;
  --c-white: #ffffff;
  --veil-top: rgba(20,18,16,0.55);
  --veil-mid: rgba(20,18,16,0.38);
  --card-veil-strong: rgba(20,18,16,0.85);
  --border-subtle: rgba(0,80,105,0.22);
  --border-subtle-2: rgba(0,80,105,0.25);
  --border-faint: rgba(0,80,105,0.16);
  --menu-num: rgba(0,80,105,0.5);
  --font-head: 'Bebas Neue', Impact, sans-serif;
  --font-label: 'Gotham', 'Helvetica Neue', sans-serif;
  --font-body: 'Josefin Slab', Georgia, serif;
  --max-w: 1360px;
  --max-w-text: 1160px;
  --gutter: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--c-text);
  overflow-x: hidden;
  font-size: 17px;
}
img { max-width: 100%; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-hover); }
::selection { background: var(--c-sand); color: var(--c-text); }
h1, h2, h3, p, ul { margin: 0; }

.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-text { max-width: var(--max-w-text); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 10.5px;
  color: var(--c-primary);
}

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  padding: 18px clamp(28px, 6vw, 44px);
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.btn-solid { background: var(--c-primary); color: var(--c-sand); }
.btn-solid:hover { background: var(--c-primary-hover); color: #ffffff; }
.btn-sand { background: var(--c-sand); color: var(--c-text); }
.btn-sand:hover { background: #ffffff; color: var(--c-text); }
.btn-outline { background: none; border: 1px solid var(--c-primary); color: var(--c-primary); letter-spacing: 0.17em; padding: 16px 38px; }
.btn-outline:hover { background: var(--c-primary); color: var(--c-sand); }
.link-underline {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--c-primary);
  border-bottom: 1px solid rgba(0,80,105,0.4);
  padding-bottom: 4px;
}
.link-underline:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-solid { background: var(--c-sand); box-shadow: 0 1px 0 rgba(0,80,105,0.18); }

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 26px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: padding 0.35s ease;
}
.site-header.is-solid .site-header__inner { padding-top: 14px; padding-bottom: 14px; }

.header-book {
  position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%);
  border: 1px solid var(--c-sand); color: var(--c-sand);
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 11.5px; padding: 12px 24px; white-space: nowrap;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.25s ease;
}
.site-header.is-solid .header-book { border-color: var(--c-primary); color: var(--c-primary); }
.header-book:hover { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-sand); }

.header-logo {
  display: block; margin: 0 auto; position: relative;
  height: 73px; transition: height 0.35s ease;
}
.site-header.is-solid .header-logo { height: 40px; }
.header-logo img { height: 100%; width: auto; display: block; }
.header-logo .logo-sand { opacity: 1; transition: opacity 0.35s ease; }
.header-logo .logo-navy { position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s ease; }
.site-header.is-solid .header-logo .logo-sand { opacity: 0; }
.site-header.is-solid .header-logo .logo-navy { opacity: 1; }

.header-right {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 20px;
}
.menu-toggle {
  background: none; border: 0; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 12px;
}
.menu-toggle__label {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 11.5px; color: var(--c-sand);
  transition: color 0.35s ease;
}
.site-header.is-solid .menu-toggle__label { color: var(--c-primary); }
.menu-toggle__icon { position: relative; width: 30px; height: 20px; display: block; }
.menu-toggle__icon span {
  position: absolute; left: 0; width: 30px; height: 2px; border-radius: 2px;
  background: var(--c-sand);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), background 0.35s ease;
}
.site-header.is-solid .menu-toggle__icon span { background: var(--c-primary); }
.menu-toggle__icon span:nth-child(1) { top: 7px; }
.menu-toggle__icon span:nth-child(2) { top: 13px; }
body.menu-open .menu-toggle__icon span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
body.menu-open .menu-toggle__icon span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
body.menu-open .site-header { background: var(--c-sand); box-shadow: 0 1px 0 rgba(0,80,105,0.18); }
body.menu-open .site-header .header-book { border-color: var(--c-primary); color: var(--c-primary); }
body.menu-open .site-header .menu-toggle__label { color: var(--c-primary); }
body.menu-open .site-header .menu-toggle__icon span { background: var(--c-primary); }
body.menu-open .site-header .header-logo .logo-sand { opacity: 0; }
body.menu-open .site-header .header-logo .logo-navy { opacity: 1; }

@media (max-width: 780px) {
  .header-book, .menu-toggle__label { display: none; }
  .site-header__inner { padding-left: 20px; padding-right: 20px; }
  .header-logo { height: 46px; }
  .site-header.is-solid .header-logo, body.menu-open .site-header .header-logo { height: 30px; }
}

/* ---------- Mobile menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 60; background: var(--c-sand);
  overflow-y: auto; display: none;
}
body.menu-open .menu-overlay { display: block; }
.menu-overlay__grid {
  min-height: 100%; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
}
.menu-overlay__panel {
  padding: clamp(100px, 13vw, 150px) clamp(20px, 4vw, 64px) clamp(28px, 3vw, 42px);
  display: flex; flex-direction: column;
}
.menu-nav { display: grid; border-top: 1px solid var(--border-subtle); }
.menu-nav__link {
  display: flex; align-items: baseline; gap: 20px; padding: 20px 4px;
  border-bottom: 1px solid var(--border-subtle); color: var(--c-primary);
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.menu-nav__link:hover { padding-left: 16px; color: var(--c-primary-hover); }
.menu-nav__num {
  font-family: var(--font-label); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; color: var(--menu-num);
}
.menu-nav__label {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: clamp(24px, 7vw, 40px); line-height: 1.15;
}
.menu-overlay .btn-solid { margin-top: clamp(28px, 3.4vw, 46px); font-size: 15px; padding: 19px clamp(28px, 6vw, 44px); align-self: flex-start; }
.menu-contact { margin-top: auto; padding-top: clamp(34px, 4vw, 56px); display: grid; gap: 10px; }
.menu-contact__label {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 9.5px; color: rgba(0,80,105,0.6);
}
.menu-contact__row { display: flex; flex-wrap: wrap; gap: 6px 26px; font-size: 15px; line-height: 1.5; }
.menu-contact__addr {
  font-size: 15px; line-height: 1.5; color: rgba(46,42,56,0.75); white-space: nowrap;
}
.menu-contact__addr:hover { color: var(--c-primary); }
@media (max-width: 780px) { .menu-contact__addr { font-size: 11.5px; } }
@media (max-width: 380px) { .menu-contact__addr { white-space: normal; } }

.menu-overlay__media { position: relative; min-height: 380px; overflow: hidden; background: var(--c-primary); }
@media (max-width: 780px) { .menu-overlay__media { min-height: 48vh; } }
.menu-overlay__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.6s ease;
}
.menu-overlay__media img.is-active { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 720px; height: 82vh; max-height: 900px;
  display: grid; place-items: center;
  padding: clamp(90px, 14.3vw, 200px) var(--gutter) clamp(48px, 7.1vw, 100px);
}
.hero img.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--veil-top), var(--veil-mid) 50%, var(--veil-top)); }
.hero__content { position: relative; text-align: center; max-width: 900px; }
.hero__kicker {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.34em; font-size: 11px; color: var(--c-sand); margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: clamp(42px, 7.1vw, 92px); line-height: 1.02;
  margin: 0 0 30px; color: #ffffff; text-shadow: 0 2px 24px rgba(46,42,56,0.35);
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(19px, 2vw, 25px); line-height: 1.5; margin: 0 auto clamp(26px, 2.9vw, 40px);
  color: #ffffff; max-width: 30ch; text-wrap: pretty;
}

.subhero {
  position: relative; min-height: 720px; height: 82vh; max-height: 900px;
  display: grid; place-items: center;
  padding: clamp(90px, 14.3vw, 200px) var(--gutter) clamp(48px, 7.1vw, 100px);
}
.subhero img.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero__content { position: relative; text-align: center; }
.subhero__title {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.05; margin: 0 0 20px; color: #ffffff;
  text-wrap: balance;
}
.subhero__kicker {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.26em; font-size: 11px; color: var(--c-sand); line-height: 1.9;
}
.subhero .btn { margin-top: 34px; }

/* ---------- Best price banner ---------- */
.banner {
  background: var(--c-primary);
  padding: clamp(10px, 1.6vw, 22px) var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 36px;
}
.banner__tag {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 11.5px; color: var(--c-sand); white-space: nowrap;
}
.banner__divider { width: 1px; height: 22px; background: rgba(238,231,204,0.35); }
.banner__text { margin: 0; color: var(--c-sand); font-size: 18px; line-height: 1.5; text-align: center; }
.banner__link {
  color: #ffffff; font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 11.5px; border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 3px; white-space: nowrap;
}
.banner__link:hover { color: var(--c-sand); border-bottom-color: var(--c-sand); }

/* ---------- Section heading ---------- */
.section-title {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--c-text); text-wrap: balance;
}

/* ---------- Icon features (home) ---------- */
.features { background: var(--c-sand); padding: clamp(38px, 6.0vw, 84px) var(--gutter) clamp(44px, 6.4vw, 90px); }
.features__title { font-size: clamp(25px, 2.7vw, 37px); text-align: center; margin: 0 0 clamp(34px, 4.6vw, 64px); }
.features__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 48px 26px;
}
.feature { text-align: center; display: flex; flex-direction: column; align-items: center; }
.feature img { width: 42px; height: 42px; object-fit: contain; margin-bottom: 20px; }
.feature__label {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.13em; font-size: 11.5px; line-height: 1.6; color: var(--c-primary);
  min-height: 3.2em; display: flex; align-items: flex-start; justify-content: center;
}
.feature p { margin: 6px 0 0; font-size: 17px; line-height: 1.55; max-width: 25ch; text-wrap: pretty; }

/* ---------- Split band (image + text) ---------- */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 0; align-items: stretch;
}
@media (max-width: 780px) { .split { gap: 28px; } }
.split img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__copy { padding: clamp(30px, 4vw, 70px) 0; display: flex; flex-direction: column; justify-content: center; }
.split__copy--pad-right { padding-right: clamp(0px, 3vw, 62px); }
.split__copy--pad-left { padding-left: clamp(0px, 3vw, 62px); }
.split__copy .eyebrow { margin-bottom: 22px; }
.split__copy h2 { font-size: clamp(31px, 3.7vw, 50px); line-height: 1.14; margin: 0 0 28px; }
.split__copy p { font-size: clamp(16.5px, 1.5vw, 18.5px); line-height: 1.7; max-width: 46ch; text-wrap: pretty; }

.neighbourhood { padding: clamp(53px, 8.4vw, 118px) var(--gutter); }
.neighbourhood img { min-height: clamp(240px, 52vw, 440px); }

.rooms-band { background: var(--c-sand); padding: clamp(49px, 7.7vw, 108px) 0 clamp(43px, 6.9vw, 96px); }
.rooms-band__top { max-width: var(--max-w); margin: 0 auto clamp(40px, 6.3vw, 88px); padding: 0 var(--gutter); }
.rooms-band img { min-height: clamp(260px, 56vw, 480px); }
.rooms-band__copy h2 { margin: 0 0 20px; }
.rooms-band__copy > p { margin: 0 0 clamp(20px, 2.1vw, 30px); }

.room-list { display: grid; border-top: 1px solid var(--border-subtle); margin-bottom: clamp(24px, 2.4vw, 34px); }
.room-list__item { padding: 16px 0; border-bottom: 1px solid var(--border-subtle); display: grid; gap: 4px; }
.room-list__item h3 {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 12px; color: var(--c-primary);
}
.room-list__item p { font-size: 17.5px; line-height: 1.5; text-wrap: pretty; }
.rooms-band__cta { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; }

/* ---------- Fixed-height photo gallery (home / rooms) ---------- */
.fh-gallery { position: relative; overflow: hidden; }
.fh-gallery__track {
  display: flex; gap: 6px; height: 100%; width: max-content;
  transform: translateX(0px); transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fh-gallery__track img { height: 100%; width: auto; flex: 0 0 auto; display: block; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(44px, 8vw, 56px); height: clamp(44px, 8vw, 56px); border-radius: 50%;
  border: 1px solid rgba(0,80,105,0.35); background: rgba(255,255,255,0.92); color: var(--c-primary);
  cursor: pointer; display: grid; place-items: center; padding: 0; z-index: 2;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.gallery-arrow:hover { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-sand); }
.gallery-arrow--prev { left: clamp(10px, 2.5vw, 26px); }
.gallery-arrow--next { right: clamp(10px, 2.5vw, 26px); }
.gallery-dots { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.gallery-dots span { width: 30px; height: 3px; background: rgba(0,80,105,0.25); display: block; transition: background 0.3s ease; }
.gallery-dots span.is-active { background: var(--c-primary); }

.home-gallery { height: 56vh; min-height: clamp(260px, 58vw, 400px); max-height: 600px; }

/* ---------- Beach / full-bleed quote ---------- */
.beach-hero {
  position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center;
  padding: clamp(80px, 9vw, 130px) var(--gutter); overflow: hidden;
}
.beach-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.beach-hero__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,18,16,0.5), rgba(20,18,16,0.3) 50%, rgba(20,18,16,0.55)); }
.beach-hero__content { position: relative; text-align: center; max-width: 900px; }
.beach-hero__kicker {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 10.5px; color: var(--c-sand); margin-bottom: 22px;
}
.beach-hero__title { font-size: clamp(36px, 5vw, 68px); line-height: 1.04; margin: 0 0 24px; color: #ffffff; }
.beach-hero__lead {
  margin: 0 auto; font-family: var(--font-label); font-weight: 700;
  font-size: clamp(16.5px, 1.5vw, 20px); line-height: 1.55; color: var(--c-sand);
  max-width: 42ch; text-wrap: pretty;
}
.beach-copy { max-width: var(--max-w-text); margin: 0 auto; padding: clamp(40px, 6.3vw, 88px) var(--gutter) clamp(48px, 7.1vw, 100px); }
.beach-copy__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 22px 56px; }
.beach-copy p { font-size: clamp(16px, 1.4vw, 17.5px); line-height: 1.75; text-wrap: pretty; }
.beach-copy__link { display: flex; justify-content: center; margin-top: clamp(28px, 3.2vw, 44px); }

/* ---------- Experience cards grid (home) ---------- */
.experiences-band { background: var(--c-sand); padding: clamp(43px, 6.9vw, 96px) var(--gutter) clamp(50px, 7.4vw, 104px); }
.experiences-band__inner { max-width: 1300px; margin: 0 auto; }
.experiences-band__head { text-align: center; margin-bottom: clamp(32px, 4.3vw, 60px); }
.experiences-band__head h2 { font-size: clamp(30px, 3.5vw, 47px); margin: 0 0 16px; }
.experiences-band__head span {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 10.5px; color: var(--c-primary);
}
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); gap: 26px; }
.exp-card { display: block; position: relative; overflow: hidden; background: var(--c-primary); }
.exp-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 0.7s ease, opacity 0.4s ease; }
.exp-card:hover img { transform: scale(1.06); opacity: 0.85; }
.exp-card__label {
  position: absolute; inset: auto 0 0 0; background: linear-gradient(to top, rgba(0,80,105,0.9), rgba(0,80,105,0));
  padding: 46px 22px 20px; pointer-events: none;
}
.exp-card__label span {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.13em; font-size: 12px; line-height: 1.5; color: #ffffff;
}
.experiences-band__more { text-align: center; margin-top: clamp(30px, 3.7vw, 52px); }

.map-embed iframe { width: 100%; height: 480px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-sand); padding: clamp(34px, 5.4vw, 76px) var(--gutter) 34px; }
.site-footer__brand { text-align: center; margin-bottom: 56px; }
.site-footer__brand img { height: 50px; width: auto; display: block; margin: 0 auto 14px; }
.site-footer__rule { width: 54px; height: 1px; background: var(--c-primary); margin: 0 auto; }
.site-footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 44px; padding-bottom: 48px;
}
.site-footer__heading {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 11px; color: var(--c-primary); margin-bottom: 18px;
}
.site-footer p { font-size: 17.5px; line-height: 1.6; max-width: 26ch; }
.site-footer__links { display: grid; gap: 9px; font-size: 17.5px; }
.site-footer__links a { color: var(--c-text); }
.site-footer__links a:hover { color: var(--c-primary); }
.site-footer__bottom {
  border-top: 1px solid rgba(46,42,56,0.2); padding-top: 22px; display: flex; flex-wrap: wrap;
  gap: 14px 26px; align-items: center; justify-content: space-between; font-size: 15px; color: #6b6577;
}

/* ---------- Sub-page hero (Rooms / Experiences / Explore) ---------- */
.page-hero h1 { font-size: clamp(40px, 6.4vw, 80px); }
.page-hero .subhero__kicker { letter-spacing: 0.3em; }

/* ---------- Rooms page ---------- */
.rooms-intro { max-width: var(--max-w); margin: 0 auto; padding: clamp(40px, 6.3vw, 88px) var(--gutter) 84px; }
.rooms-intro__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr)); gap: 26px 48px; align-items: start;
}
.rooms-intro__title {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: clamp(26px, 3vw, 40px); line-height: 1.08; max-width: 20ch;
}
.rooms-intro .room-list { border-top-color: var(--border-subtle-2); }
.rooms-intro .room-list__item { border-bottom-color: var(--border-subtle-2); padding: 18px 0; gap: 5px; }
.rooms-intro .room-list__item h2 {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 12.5px; color: var(--c-primary);
}
.rooms-intro .room-list__item p { font-size: 17.5px; line-height: 1.55; }
.breakfast__label {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 11px; color: var(--c-primary); margin-bottom: 14px;
}
.breakfast p { font-size: 17.5px; line-height: 1.6; margin-bottom: 14px; }
.breakfast ul { list-style: none; padding: 0; display: grid; gap: 9px; margin-bottom: 26px; }
.breakfast li { display: flex; gap: 12px; font-size: 17px; line-height: 1.5; }
.breakfast li::before { content: ""; width: 16px; height: 1px; background: var(--c-primary); flex: none; margin-top: 12px; }

.rooms-gallery-section { position: relative; background: #ffffff; padding: 0 0 clamp(40px, 5.6vw, 78px); }
.rooms-gallery { height: 62vh; min-height: clamp(280px, 62vw, 440px); max-height: 680px; background: #ffffff; }
.rooms-gallery-section .gallery-dots { margin-top: 28px; }
.rooms-gallery-section .gallery-dots span { width: 34px; }

/* ---------- Experiences page ---------- */
.interested-band { background: var(--c-sand); }
.interested-band__inner { max-width: var(--max-w); margin: 0 auto; padding: clamp(35px, 5.6vw, 78px) var(--gutter) 0; }
.interested-band__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 0; align-items: stretch; }
.interested-band__panel { background: var(--c-primary); color: var(--c-sand); padding: clamp(34px, 4vw, 54px); }
.interested-band__panel h2 { font-size: clamp(31px, 3.5vw, 47px); line-height: 1.1; margin: 0 0 18px; color: #ffffff; }
.interested-band__panel p { margin: 0 0 32px; font-size: 17.5px; line-height: 1.7; max-width: 40ch; text-wrap: pretty; }
.interested-band__contact { display: grid; gap: 14px; }
.interested-band__contact a {
  display: flex; align-items: baseline; gap: 16px; color: #ffffff;
  border-top: 1px solid rgba(238,231,204,0.3); padding-top: 14px;
}
.interested-band__contact a:hover { color: var(--c-sand); }
.interested-band__contact .k {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 10px; color: rgba(238,231,204,0.65); flex: none; width: 52px;
}
.interested-band__contact .v { font-size: 19px; }
.interested-band__toc { padding: clamp(34px, 4vw, 54px) 0 clamp(34px, 4vw, 54px) clamp(28px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.interested-band__toc-label {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 10.5px; color: var(--c-primary); margin-bottom: 22px;
}
.toc-link {
  display: flex; align-items: baseline; gap: 18px; padding: 15px 4px;
  border-bottom: 1px solid var(--border-subtle); color: var(--c-text);
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.toc-link:first-child { border-top: 1px solid var(--border-subtle); }
.toc-link:hover { padding-left: 14px; color: var(--c-primary); }
.toc-link__num { font-family: var(--font-label); font-weight: 700; font-size: 10px; letter-spacing: 0.2em; color: var(--menu-num); flex: none; }
.toc-link__label {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: clamp(14px, 1.4vw, 18px); line-height: 1.35;
}

.exp-section { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.exp-section__row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 0; align-items: stretch; padding: clamp(44px, 6vw, 84px) 0; border-bottom: 1px solid var(--border-faint);
}
@media (max-width: 780px) { .exp-section__row { gap: 28px; } }
.exp-section__text { display: flex; flex-direction: column; justify-content: center; order: 0; }
.exp-section__text--right { padding-right: clamp(0px, 3.5vw, 60px); }
.exp-section__text--left { padding-left: clamp(0px, 3.5vw, 60px); }
.exp-section__text h2 { font-size: clamp(30px, 3.5vw, 47px); line-height: 1.12; margin: 0 0 26px; }
.exp-section__text p { margin: 0 0 18px; font-size: 17.5px; line-height: 1.7; max-width: 52ch; text-wrap: pretty; }
.exp-section__text .btn-solid { align-self: flex-start; margin-top: 14px; font-size: 12.5px; padding: 16px 32px; letter-spacing: 0.16em; }
.exp-section__media { order: 0; position: relative; overflow: hidden; min-height: clamp(250px, 54vw, 400px); background: var(--c-primary); }
.exp-section__media img.static { width: 100%; height: 100%; min-height: clamp(250px, 54vw, 400px); object-fit: cover; display: block; }
@media (max-width: 780px) { .exp-section__text { order: 2; } .exp-section__media { order: 1; } }

.slide-carousel { position: relative; overflow: hidden; min-height: clamp(250px, 54vw, 400px); height: 100%; }
.slide-carousel__track { display: flex; height: 100%; transform: translateX(0%); transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.slide-carousel__track img { flex: 0 0 100%; width: 100%; height: 100%; min-height: clamp(250px, 54vw, 400px); object-fit: cover; display: block; }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(0,80,105,0.35); background: rgba(255,255,255,0.92); color: var(--c-primary);
  cursor: pointer; display: grid; place-items: center; padding: 0; z-index: 2;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.slide-arrow:hover { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-sand); }
.slide-arrow--prev { left: 16px; }
.slide-arrow--next { right: 16px; }
.slide-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.slide-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(238,231,204,0.4); display: block; }
.slide-dots span.is-active { background: var(--c-sand); }

.seaklub { position: relative; background: var(--c-primary); }
.seaklub__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.7s ease; }
.seaklub__bg.is-base { opacity: 0.28; }
.seaklub__bg.is-active { opacity: 0.42; }
.seaklub__inner { position: relative; max-width: var(--max-w); margin: 0 auto; padding: clamp(43px, 6.9vw, 96px) var(--gutter) clamp(50px, 7.4vw, 104px); color: var(--c-sand); }
.seaklub__head { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 48px; align-items: end; margin-bottom: 58px; }
.seaklub__head-tag { font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.26em; font-size: 10.5px; opacity: 0.8; margin-bottom: 18px; }
.seaklub__head h2 { font-size: clamp(40px, 5.9vw, 80px); line-height: 1; margin: 0; color: #ffffff; }
.seaklub__head p { margin: 0; font-size: clamp(16.5px, 1.5vw, 18.5px); line-height: 1.7; max-width: 50ch; text-wrap: pretty; color: var(--c-sand); }
.seaklub__blocks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 1px;
  background: rgba(238,231,204,0.28); border: 1px solid rgba(238,231,204,0.28); margin-bottom: 52px;
}
.seaklub__block {
  background: rgba(0,80,105,0.86); padding: 34px 28px 38px; display: flex; flex-direction: column; gap: 14px;
  cursor: default; transition: background 0.3s ease;
}
.seaklub__block:hover { background: rgba(0,57,76,0.94); }
.seaklub__block span.n { font-family: var(--font-label); font-weight: 700; font-size: 11px; letter-spacing: 0.2em; color: rgba(238,231,204,0.55); }
.seaklub__block h3 { font-family: var(--font-head); font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em; font-size: 17.7px; color: #ffffff; }
.seaklub__block p { font-size: 16.5px; line-height: 1.6; color: var(--c-sand); text-wrap: pretty; }
.seaklub__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 26px 34px; }
.seaklub__foot span { font-size: 17px; color: rgba(238,231,204,0.85); }

/* ---------- Explore Punta Cana page ---------- */
.explore-intro { max-width: var(--max-w); margin: 0 auto; padding: clamp(45px, 7.1vw, 100px) var(--gutter) 0; }
.explore-intro__lead {
  margin: 0 auto 54px; max-width: 30ch; text-align: center; font-size: clamp(28px, 3.6vw, 52px); line-height: 1.08;
}
.explore-intro__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 20px 56px;
  max-width: 1120px; margin: 0 auto;
}
.explore-intro__grid p { font-size: clamp(16px, 1.4vw, 17.5px); line-height: 1.75; text-wrap: pretty; }

.full-bleed-photo { margin-top: clamp(40px, 6.3vw, 88px); position: relative; }
.full-bleed-photo img { width: 100%; height: 58vh; min-height: clamp(240px, 50vw, 420px); max-height: 640px; object-fit: cover; display: block; }
.full-bleed-photo--small img { height: 52vh; min-height: 380px; max-height: 560px; }

.numbered-band { background: var(--c-sand); }
.numbered-band--dark { background: var(--c-primary); color: var(--c-sand); margin-top: clamp(48px, 7.1vw, 100px); }
.numbered-band__inner { max-width: var(--max-w); margin: 0 auto; padding: clamp(41px, 6.6vw, 92px) var(--gutter) clamp(48px, 7.1vw, 100px); }
.numbered-band--dark .numbered-band__inner { padding: clamp(43px, 6.9vw, 96px) var(--gutter) clamp(50px, 7.4vw, 104px); }
.numbered-band__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px 64px; margin-bottom: 56px;
}
.numbered-band__tag { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.numbered-band__tag .n { font-family: var(--font-label); font-weight: 700; font-size: 10.5px; letter-spacing: 0.22em; color: rgba(0,80,105,0.55); }
.numbered-band--dark .numbered-band__tag .n { color: rgba(238,231,204,0.6); }
.numbered-band__tag .t { font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.24em; font-size: 10.5px; color: var(--c-primary); }
.numbered-band--dark .numbered-band__tag .t { color: var(--c-sand); }
.numbered-band h2 { font-size: clamp(32px, 4vw, 58px); line-height: 1; margin: 0; }
.numbered-band--dark h2 { color: #ffffff; }
.numbered-band__grid p { font-size: clamp(16px, 1.4vw, 17.5px); line-height: 1.75; margin: 0 0 20px; text-wrap: pretty; }
.numbered-band__grid p:last-child { margin-bottom: 0; }

.photo-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.photo-card { position: relative; overflow: hidden; }
.photo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.7s ease; }
.photo-card:hover img { transform: scale(1.05); }
.photo-card__label {
  position: absolute; inset: auto 0 0 0; background: linear-gradient(to top, var(--card-veil-strong), rgba(20,18,16,0));
  padding: 44px 20px 18px; pointer-events: none;
}
.photo-card__label span { font-family: var(--font-head); font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; font-size: 23px; color: #ffffff; }

.editorial-photos { display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; }
.editorial-photos img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.editorial-photos img:last-child { align-self: end; }
@media (max-width: 780px) { .editorial-photos { grid-template-columns: 1fr; } }

.cta-band { background: var(--c-primary); padding: clamp(33px, 5.3vw, 74px) var(--gutter) 80px; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 3.5vw, 47px); line-height: 1.12; margin: 0 0 24px; color: #ffffff; }
.cta-band .btn { font-size: 14px; padding: 19px 46px; }

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