/* ============================================================
   The Sun Club Khao Lak — by Katathani
   css/styles.css — Solar Editorial
   ============================================================ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --sun:      #fca604;
  --sun-lt:   #ffdc4b;
  --tide:     #12bec4;
  --tide-lt:  #77e1e5;
  --cream:    #fff7d5;
  --cream-dk: #fdf0b0;
  --white:    #ffffff;
  --dark:     #573e29;
  --mid:      #6B4F1A;
  --text:     #2C1A00;
  --ink:      #1c1008;
  --paper:    #fefcf5;

  --max-w:  1200px;
  --nav-h:  70px;
  --pad-x:  clamp(2rem, 6vw, 5rem);

  --r-sm:   6px;
  --r-md:   16px;
  --r-lg:   32px;
  --r-pill: 999px;

  --sh-1: 0 2px 10px rgba(28,16,8,.06);
  --sh-2: 0 6px 28px rgba(28,16,8,.10);
  --sh-3: 0 16px 52px rgba(28,16,8,.16);
  --sh-4: 0 28px 72px rgba(28,16,8,.22);
}

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans", sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ── Hero Background ─────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 80% at 62% 44%, rgba(252,166,4,.45) 0%, transparent 58%),
    radial-gradient(ellipse 75% 70% at 18% 74%, rgba(18,190,196,.32) 0%, transparent 55%),
    #1c1008;
}

/* ── Brand Band ───────────────────────────────────────────── */
.brand-band {
  background: var(--tide);
  overflow: hidden;
  padding: 20px var(--pad-x);
}
.brand-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}
.brand-point {
  text-align: center;
}
.brand-big {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  color: var(--white);
  display: block;
}
.brand-sm {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
  display: block;
}

/* ── Concept Grid (Our Story) ─────────────────────────────── */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.concept-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 12px;
}
.concept-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.concept-photo--tall {
  grid-row: 1 / 3;
}
.photo-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: "Ubuntu", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,247,213,.72);
  background: rgba(28,16,8,.45);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Photo background placeholders ───────────────────────── */
/* Soft watercolor washes — replace background with url('/assets/img/…') when ready */
.photo-bg { width: 100%; height: 100%; display: block; }

.photo-bg--beach {
  background: url('/assets/img/hero/hero-beach-4.jpg') center/cover no-repeat;
}
.photo-bg--pool {
  background:
    radial-gradient(ellipse 80% 70% at 60% 65%, rgba(252,166,4,.38) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 22% 28%, rgba(255,220,75,.32) 0%, transparent 50%),
    #fdf6e4;
}
.photo-bg--lobby {
  background:
    radial-gradient(ellipse 70% 80% at 40% 55%, rgba(255,220,75,.38) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 75% 28%, rgba(252,166,4,.28) 0%, transparent 50%),
    #fef8ea;
}
.photo-bg--sun-wing {
  background: url('/assets/img/hero/hero-beach-5.jpg') center/cover no-repeat;
}
.photo-bg--tide-wing {
  background: url('/assets/img/hero/hero-beach-6.jpg') center/cover no-repeat;
}
.photo-bg--dune-wing {
  background: url('/assets/img/hero/hero-beach-2.jpg') center/cover no-repeat;
}
.photo-bg--surf {
  background: url('/assets/img/move/move-1.jpg') center/cover no-repeat;
}
.photo-bg--spa {
  background: url('/assets/img/move/move-2.jpg') center/cover no-repeat;
}
.photo-bg--kids {
  background: url('/assets/img/move/move-3.jpg') center/cover no-repeat;
}
.photo-bg--diving {
  background: url('/assets/img/move/move-4.jpg') center/cover no-repeat;
}
.photo-bg--yoga {
  background: url('/assets/img/move/move-5.jpg') center/cover no-repeat;
}
.photo-bg--cooking {
  background: url('/assets/img/move/move-6.jpg') center/cover no-repeat;
}
.photo-bg--dining-1 {
  background: url('/assets/img/dining/dining-1.jpg') center/cover no-repeat;
}
.photo-bg--dining-2 {
  background: url('/assets/img/dining/dining-2.jpg') center/cover no-repeat;
}
.photo-bg--dining-3 {
  background: url('/assets/img/dining/dining-3.jpg') center/cover no-repeat;
}
.photo-bg--dining-4 {
  background: url('/assets/img/dining/dining-4.jpg') center/cover no-repeat;
}
.photo-bg--map {
  background: url('/assets/img/hero/hero-beach-8.jpg') center/cover no-repeat;
}
.photo-bg--events {
  background: url('/assets/img/dining/dining-1.jpg') center/cover no-repeat;
}

/* ── Typography ───────────────────────────────────────────── */
.label {
  font-family: "Ubuntu", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sun);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.label--light { color: var(--tide-lt); }
.label--dark  { color: rgba(87,62,41,.4); }

.title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.title--light { color: var(--white); }

.desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
}

.pull {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--tide);
  border-left: 2.5px solid var(--tide);
  padding: 14px 18px;
  margin: 28px 0;
  line-height: 1.6;
  background: linear-gradient(90deg, rgba(18,190,196,.06) 0%, transparent 100%);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: var(--r-sm);
  transition: all .25s ease;
}
.btn:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; }

.btn-primary {
  background: var(--sun);
  color: var(--ink);
  padding: 15px 32px;
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: var(--sh-2); }

.btn-ghost {
  color: rgba(255,247,213,.8);
  border: 1px solid rgba(255,247,213,.25);
  padding: 14px 28px;
}
.btn-ghost:hover { border-color: rgba(255,247,213,.6); transform: translateY(-1px); }

.btn-ghost-light {
  color: rgba(255,247,213,.55);
  border: 1px solid rgba(255,247,213,.18);
  padding: 12px 24px;
}
.btn-ghost-light:hover {
  color: rgba(255,247,213,.9);
  border-color: rgba(255,247,213,.4);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--dark);
  border: 1.5px solid rgba(87,62,41,.25);
  padding: 13px 28px;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  transform: translateY(-1px);
}

.btn-text {
  color: var(--sun);
  font-size: 11px;
  letter-spacing: .1em;
  gap: 6px;
}
.btn-text:hover { opacity: .7; }

.btn-nav-book {
  background: var(--sun);
  color: var(--ink);
  padding: 9px 22px;
  font-size: 11px;
  border-radius: var(--r-sm);
}
.btn-nav-book:hover { opacity: .9; transform: translateY(-1px); box-shadow: var(--sh-1); }

.btn-book-bar {
  background: var(--sun);
  color: var(--ink);
  padding: 0 36px;
  height: 72px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}
.btn-book-bar:hover { opacity: .9; }

/* ── Section scaffold ─────────────────────────────────────── */
.section {
  padding: clamp(5rem, 9vw, 8rem) var(--pad-x);
  background: var(--paper);
}
.section--white    { background: var(--white); }
.section--cream    { background: var(--cream); }
.section--cream-dk { background: var(--cream-dk); }
.section--dark     { background: var(--dark); }
.section--ink      { background: var(--ink); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  padding: 0 var(--pad-x);
  z-index: 100;
  transition: background .5s ease, box-shadow .5s ease;
}
.nav.is-scrolled {
  background: rgba(28,16,8,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,247,213,.05);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; }

.logo-name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--sun);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(255,247,213,.28);
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: "Ubuntu", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,247,213,.42);
  transition: color .25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--sun);
  transition: width .3s ease;
}
.nav-links a:hover { color: rgba(255,247,213,.9); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--sun-lt); }
.nav-links a[aria-current="page"]::after { width: 100%; background: var(--sun-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,247,213,.6);
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }

.hero-slide--1 {
  background-image: url('/assets/img/hero/hero-beach.jpg');
  background-color: #0a6a70;
}
.hero-slide--2 {
  background-image: url('/assets/img/hero/hero-beach-2.jpg');
  background-color: #0a6a70;
}
.hero-slide--3 {
  background-image: url('/assets/img/hero/hero-beach-3.jpg');
  background-color: #0a6a70;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(28,16,8,.92) 0%,
      rgba(28,16,8,.55) 35%,
      rgba(28,16,8,.08) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) clamp(4rem, 7vw, 6rem);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Ubuntu", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--tide-lt);
  background: rgba(18,190,196,.1);
  border: 1px solid rgba(119,225,229,.18);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 26px;
  width: fit-content;
}

.hero-heading {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 8vw, 80px);
  color: var(--white);
  line-height: .88;
  letter-spacing: -.035em;
  margin-bottom: 26px;
}
.hero-heading em {
  color: var(--sun-lt);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,247,213,.52);
  line-height: 1.9;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.hero-stat {
  background: rgba(28,16,8,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,247,213,.07);
  border-left: 2px solid var(--sun);
  padding: 14px 22px;
  min-width: 156px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.stat-num {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--sun-lt);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,247,213,.32);
  margin-top: 5px;
  display: block;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,247,213,.32);
  background: transparent;
  cursor: pointer; padding: 0;
  transition: background .35s, border-color .35s, transform .35s;
}
.hero-dot:hover { border-color: rgba(255,247,213,.65); }
.hero-dot.is-active { background: var(--sun); border-color: var(--sun); transform: scale(1.4); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "Ubuntu", sans-serif;
  font-size: 8px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,247,213,.25);
  writing-mode: vertical-rl;
  rotate: 180deg;
  user-select: none;
}
.hero-scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to top, transparent, rgba(255,247,213,.2));
}

/* ── Booking Bar ──────────────────────────────────────────── */
.booking-bar {
  background: var(--white);
  border-bottom: 2px solid var(--sun);
  box-shadow: 0 4px 32px rgba(28,16,8,.06);
  position: relative;
  z-index: 1;
}
.booking-inner { max-width: var(--max-w); margin: 0 auto; }

.booking-form { display: flex; align-items: stretch; }
.booking-field {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  border-right: 1px solid rgba(87,62,41,.08);
  flex: 1; min-width: 0;
}
.booking-label {
  font-family: "Ubuntu", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 4px;
}
.booking-value {
  font-family: "Ubuntu", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border: none; background: transparent; padding: 0;
  width: 100%; cursor: pointer;
}
.booking-value:focus { outline: none; color: var(--sun); }

/* ── Keyword Band ──────────────────────────────────────────── */
.marquee-band {
  background: #fca604;
  padding: 20px 40px;
  border-top: 1px solid lab(72.85% 1.43 62.54 / 0.14);
  border-bottom: 1px solid rgba(212,175,55,.14);
}
.marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 6px 28px;
}
.mq-word {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .55em;
  color: rgba(255,247,213,.52);
  text-transform: uppercase;
  white-space: nowrap;
}
.mq-dot {
  color: rgba(212,175,55,.45);
  font-size: 7px;
}

/* ── Split Section (Concept) ──────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 680px;
}

.split-media {
  position: relative;
  overflow: hidden;
  background: var(--cream-dk);
}
.split-media .photo-bg {
  position: absolute; inset: 0;
  transition: transform .7s ease;
}
.split-media:hover .photo-bg { transform: scale(1.04); }
.split-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,16,8,.55) 0%, transparent 55%);
}
.split-media-tag {
  position: absolute;
  bottom: 22px; left: 26px;
  font-family: "Ubuntu", sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,247,213,.65);
}

.split-body {
  background: var(--paper);
  padding: clamp(4rem, 7vw, 7rem) clamp(3rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Stats Band ───────────────────────────────────────────── */
.stats-section {
  background: var(--dark);
  padding: clamp(3.5rem, 6vw, 5rem) var(--pad-x);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-block {
  padding: 1rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,247,213,.1);
}
.stat-block:last-child { border-right: none; }
.stat-block-num {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--sun-lt);
  letter-spacing: -.04em;
  display: block;
}
.stat-block-num sup {
  font-size: .42em;
  vertical-align: super;
  letter-spacing: 0;
}
.stat-block-label {
  font-family: "Ubuntu", sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,247,213,.3);
  margin-top: 10px;
  display: block;
}

/* ── Mascots ──────────────────────────────────────────────── */
.mascot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 3rem;
}
.mascot-card {
  background: var(--white);
  padding: 36px 20px 28px;
  text-align: center;
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.mascot-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.mascot-card:nth-child(1)::before { background: linear-gradient(90deg, var(--sun), var(--sun-lt)); }
.mascot-card:nth-child(2)::before { background: linear-gradient(90deg, var(--tide), var(--tide-lt)); }
.mascot-card:nth-child(3)::before { background: linear-gradient(90deg, var(--tide-lt), var(--tide)); }
.mascot-card:nth-child(4)::before { background: linear-gradient(90deg, var(--sun-lt), var(--sun)); }
.mascot-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }

.mascot-shape {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.mascot-name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 5px;
}
.mascot-role {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 12px;
}
.mascot-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Accommodation Wings ──────────────────────────────────── */
.wings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap; gap: 12px;
}
.wings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wing-card {
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: transform .4s ease, box-shadow .4s ease;
}
.wing-card:hover { transform: translateY(-8px); box-shadow: var(--sh-3); }
.wing-card:hover .photo-bg { transform: scale(1.06); }

.wing-image {
  height: 260px;
  overflow: hidden;
  background: var(--cream-dk);
  position: relative;
}
.wing-image .photo-bg { transition: transform .6s ease; }

.wing-num-overlay {
  position: absolute;
  bottom: 8px; right: 14px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 76px;
  color: rgba(255,255,255,.09);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none; user-select: none;
}

.wing-body {
  background: var(--white);
  padding: 26px;
  border-top: 2.5px solid transparent;
}
.wing-card--tide .wing-body { border-color: var(--tide); }
.wing-card--sun  .wing-body { border-color: var(--sun); }
.wing-card--sand .wing-body { border-color: var(--sun-lt); }

.wing-num {
  font-family: "Ubuntu", sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em;
  color: rgba(107,79,26,.28);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wing-name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.wing-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
}
.wing-tag {
  font-family: "Ubuntu", sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--tide);
}
.wing-coming {
  font-family: "Ubuntu", sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--sun);
}

/* ── Highlights ───────────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 280px 280px 240px;
  gap: 12px;
  margin-top: 3rem;
}

.highlight:nth-child(1) { grid-column: 1;     grid-row: 1 / 3; }
.highlight:nth-child(2) { grid-column: 2;     grid-row: 1; }
.highlight:nth-child(3) { grid-column: 3;     grid-row: 1; }
.highlight:nth-child(4) { grid-column: 2;     grid-row: 2; }
.highlight:nth-child(5) { grid-column: 3;     grid-row: 2; }
.highlight:nth-child(6) { grid-column: 1;     grid-row: 3; }
.highlight:nth-child(7) { grid-column: 2 / 4; grid-row: 3; }

.highlight {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--r-md);
  transition: transform .35s ease;
}
.highlight .photo-bg {
  position: absolute; inset: 0;
  transition: transform .5s ease;
}
.highlight:hover { transform: scale(1.015); }
.highlight:hover .photo-bg { transform: scale(1.07); }

.highlight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,16,8,.90) 0%, rgba(28,16,8,.25) 50%, transparent 100%);
  pointer-events: none;
}
.highlight--sun  .highlight-overlay {
  background: linear-gradient(to top,
    rgba(252,166,4,.55)  0%,
    rgba(28,16,8,.82)   18%,
    rgba(28,16,8,.22)   52%,
    transparent         100%);
}
.highlight--tide .highlight-overlay {
  background: linear-gradient(to top,
    rgba(18,190,196,.50) 0%,
    rgba(28,16,8,.82)   18%,
    rgba(28,16,8,.22)   52%,
    transparent         100%);
}
.highlight-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
}
.highlight-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.highlight:nth-child(1) .highlight-title { font-size: 26px; }
.highlight-desc {
  font-size: 13px;
  color: rgba(255,247,213,.62);
  line-height: 1.6;
  font-weight: 300;
}

/* Category label pill */
.hi-cat {
  display: inline-block;
  font-family: "Ubuntu", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
  line-height: 1;
}
.hi-cat--tide { background: var(--tide); color: #fff; }
.hi-cat--sun  { background: var(--sun);  color: var(--ink); }

/* Feature tag pills */
.hi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.hi-tag {
  font-family: "Ubuntu", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,247,213,.85);
  background: rgba(28,16,8,.42);
  border: 1px solid rgba(255,247,213,.14);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
.hi-tag--coming {
  background: rgba(252,166,4,.2);
  border-color: rgba(252,166,4,.45);
  color: var(--sun-lt);
}

.highlights-cta { margin-top: 2.5rem; text-align: right; }

/* ── Pattern Strip ────────────────────────────────────────── */
.pattern-strip { display: block; line-height: 0; overflow: hidden; }

/* ── Dining ───────────────────────────────────────────────── */
.dining-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap; gap: 12px;
}
.dining-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dining-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 175px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.dining-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.dining-card:hover .photo-bg { transform: scale(1.06); }

.dining-image {
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.dining-image .photo-bg { transition: transform .5s ease; height: 100%; }

.dining-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(87,62,41,.07);
}
.dining-type {
  font-family: "Ubuntu", sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 7px;
}
.dining-name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.dining-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ── Location ─────────────────────────────────────────────── */
.location-section { background: #fca604; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

.location-image {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.location-image .photo-bg {
  position: absolute; inset: 0;
  height: 100%;
}

.location-body {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loc-btn { margin-top: 36px; align-self: flex-start; }

.location-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 56px);
  color: #573e29;
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 32px;
}
.location-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-fact { font-size: 13px; color: #6B4F1A; font-weight: 300; }
.location-fact dt {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6B4F1A;
  margin-bottom: 3px;
  display: block;
}
.location-fact dd { margin: 0; }
.location-fact dd a { color: var(--tide-lt); }
.location-fact dd a:hover { text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #573e29;
  border-top: none;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding: 3rem var(--pad-x);
}
.footer-logo {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--sun);
  letter-spacing: .04em;
}
.footer-sub {
  font-size: 9px;
  color: #fdf0b0;
  letter-spacing: .16em;
  margin-top: 4px;
  text-transform: uppercase;
}
.footer-info { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-group { display: flex; flex-direction: column; gap: 3px; }
.footer-label {
  font-family: "Ubuntu", sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fdf0b0;
}
.footer-value {
  font-size: 12px; color: rgba(255,247,213,.4); font-weight: 300; line-height: 1.6;
}
.footer-value a { color: var(--sun-lt); }
.footer-value a:hover { text-decoration: underline; }

.footer-bottom { border-top: 1px solid rgba(255,247,213,.05); }
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 1.4rem var(--pad-x);
}
.footer-copy { font-size: 11px; color: rgba(255,247,213,.16); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,247,213,.16); }
.footer-legal a:hover { color: rgba(255,247,213,.5); }

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive — tablet ──────────────────────────────────── */
@media (max-width: 900px) {
  .split-section        { grid-template-columns: 1fr; min-height: auto; }
  .split-media          { height: 400px; }
  .stats-inner          { grid-template-columns: repeat(3, 1fr); }
  .wings-grid           { grid-template-columns: 1fr 1fr; gap: 16px; }
  .mascot-grid          { grid-template-columns: 1fr 1fr; }
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 220px 220px 220px;
  }
  .highlight:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .highlight:nth-child(2) { grid-column: 1;     grid-row: 2; }
  .highlight:nth-child(3) { grid-column: 2;     grid-row: 2; }
  .highlight:nth-child(4) { grid-column: 1;     grid-row: 3; }
  .highlight:nth-child(5) { grid-column: 2;     grid-row: 3; }
  .highlight:nth-child(6) { grid-column: 1;     grid-row: 4; }
  .highlight:nth-child(7) { grid-column: 2;     grid-row: 4; }
  .location-grid        { grid-template-columns: 1fr; }
  .location-image       { min-height: 320px; }

  .concept-grid         { grid-template-columns: 1fr; gap: 40px; }
  .concept-photos       { grid-template-rows: 240px 180px; }
}

/* ── Responsive — mobile ──────────────────────────────────── */
@media (max-width: 640px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-stats     { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .hero-scroll    { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(28,16,8,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem var(--pad-x) 2rem;
    gap: 18px;
    border-top: 1px solid rgba(255,247,213,.05);
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle        { display: flex; }

  .wings-grid      { grid-template-columns: 1fr; }
  .mascot-grid     { grid-template-columns: 1fr 1fr; gap: 12px; }
  .highlights-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .highlight:nth-child(1),
  .highlight:nth-child(2),
  .highlight:nth-child(3),
  .highlight:nth-child(4),
  .highlight:nth-child(5),
  .highlight:nth-child(6),
  .highlight:nth-child(7) { grid-column: auto; grid-row: auto; }
  .highlight { height: 220px; }

  .stats-inner     { grid-template-columns: 1fr; }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,247,213,.08);
    padding: 2.5rem var(--pad-x);
  }
  .stat-block:last-child { border-bottom: none; }

  .dining-card     { grid-template-columns: 1fr; height: auto; }
  .dining-image    { height: 180px; }

  .booking-form    { flex-direction: column; }
  .booking-field   { border-right: none; border-bottom: 1px solid rgba(87,62,41,.08); }
  .btn-book-bar    { height: 52px; width: 100%; }

  .footer-inner         { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner  { flex-direction: column; align-items: flex-start; }

  .concept-photos { grid-template-columns: 1fr; grid-template-rows: 200px 180px 180px; }
  .concept-photo--tall { grid-row: auto; }

  .brand-sep        { display: none; }
}

/* ── Accessibility: reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
