/* ============================================================
   PRINCE'S GRANT SELF CATERING - MASTER STYLESHEET v2.0
   ============================================================ */

/* ── 1. VARIABLES & RESET ─────────────────────────────────── */
:root {
  --pink:        #E91E8C;
  --pink-dark:   #C4166F;
  --pink-light:  #FCE4F3;
  --teal:        #2A7D7B;
  --teal-light:  #E8F4F3;
  --charcoal:    #1C1C1C;
  --nav-bg:      #0D1B2A;   /* Deep navy -- strong contrast for white+pink logo */
  --dark:        #2D2D2D;
  --mid:         #6B6B6B;
  --light:       #A8A8A8;
  --sand:        #F8F5F0;
  --white:       #FFFFFF;
  --border:      #E8E4DF;
  --green-wa:    #25D366;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  all .25s ease;
  --max-width:   1280px;
  --font-d:      'Playfair Display', Georgia, serif;
  --font-b:      'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--charcoal); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── 2. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-d); line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-b); }
p { color: var(--dark); line-height: 1.75; }
.eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); font-family: var(--font-b); }
.lead { font-size: 1.05rem; line-height: 1.8; color: var(--mid); }

/* ── 3. NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.8);
  transition: var(--transition); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--pink); transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--pink) !important; color: var(--white) !important;
  padding: .5rem 1.4rem; border-radius: 50px; font-weight: 600 !important;
  font-size: .855rem !important;
}
.nav-cta:hover { background: var(--pink-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(233,30,140,.4); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: var(--transition); }
.nav-toggle:hover span { background: var(--white); }

/* Mobile nav drawer */
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--nav-bg); border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 1.5rem 2rem; z-index: 999; box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: .85rem 0; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a:focus { color: var(--pink); }
.nav-mobile a.wa-mobile {
  margin-top: .75rem; background: var(--green-wa); color: var(--white) !important;
  border-radius: var(--radius-sm); padding: .75rem 1rem; display: flex;
  align-items: center; gap: .5rem; font-weight: 700; border-bottom: none;
}

/* Notice bar */
.notice-bar {
  background: var(--pink); color: var(--white); text-align: center;
  padding: .5rem 1.25rem; font-size: .8rem; font-weight: 500; line-height: 1.5;
}
.notice-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* Contact strip below nav on home */
.contact-strip { background: var(--charcoal); color: rgba(255,255,255,.85); padding: .85rem 2rem; }
.contact-strip-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cs-item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; }
.cs-item a { color: inherit; font-weight: 600; }
.cs-item a:hover { color: var(--pink); }

/* ── 4. HERO SLIDER ───────────────────────────────────────── */
.hero-slider { position: relative; height: 100vh; min-height: 560px; overflow: hidden; margin-top: 38px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,.82) 0%, rgba(13,27,42,.45) 55%, transparent 100%);
}
.slide-content {
  position: absolute; inset: 0; display: flex; align-items: center;
  max-width: var(--max-width); margin: 0 auto; padding: 8rem 2rem 5rem;
  width: 100%;
}
.slide-inner { max-width: 620px; }
.slide-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); color: var(--white);
  padding: .35rem .9rem; border-radius: 50px; font-size: .78rem;
  font-weight: 500; margin-bottom: 1.25rem;
}
.slide-inner h1 { color: var(--white); margin-bottom: 1rem; }
.slide-inner h1 em { color: var(--pink); font-style: italic; }
.slide-inner p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 500px; margin-bottom: 2rem; line-height: 1.8; }
.slide-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; z-index: 10;
  transition: var(--transition); border: 1px solid rgba(255,255,255,.25);
}
.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }
.slider-prev:hover, .slider-next:hover { background: var(--pink); border-color: var(--pink); }
.slider-dots {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: var(--transition); border: none;
}
.slider-dot.active { background: var(--pink); transform: scale(1.3); }
.slider-stats {
  position: absolute; bottom: 2.25rem; right: 2rem; z-index: 10;
  display: flex; gap: 1.5rem;
}
.slider-stat-num { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.slider-stat-label { font-size: .68rem; color: rgba(255,255,255,.6); margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; }

/* Page header (non-home pages) */
.page-header { background: var(--nav-bg); padding: 8rem 1.5rem 4rem; text-align: center; margin-top: 38px; }
.page-header .eyebrow { color: var(--pink-light); }
.page-header h1 { color: var(--white); margin: .75rem 0 1rem; }
.page-header .lead { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span.sep { color: rgba(255,255,255,.3); }

/* ── 5. BUTTONS & TAGS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .72rem 1.7rem; border-radius: 50px;
  font-size: .875rem; font-weight: 600; transition: var(--transition);
  font-family: var(--font-b); cursor: pointer; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary { background: var(--pink); color: var(--white); border: none; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(233,30,140,.35); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: var(--white); border: none; }
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--green-wa); color: var(--white); padding: .72rem 1.7rem;
  border-radius: 50px; font-weight: 600; font-size: .875rem; transition: var(--transition);
  border: none; cursor: pointer; font-family: var(--font-b); white-space: nowrap;
}
.btn-wa:hover { background: #1ea855; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(37,211,102,.35); }
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-wa-full { width: 100%; justify-content: center; }
.tag { display: inline-block; padding: .22rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 600; }
.tag-pink { background: var(--pink-light); color: var(--pink); }
.tag-teal { background: var(--teal-light); color: var(--teal); }
.tag-sand { background: var(--sand); color: var(--mid); border: 1px solid var(--border); }

/* ── 6. LAYOUT & SECTIONS ─────────────────────────────────── */
.section { padding: 4.5rem 1.5rem; }
.section-sand { background: var(--sand); }
.section-white { background: var(--white); }
.section-dark { background: var(--charcoal); }
.section-teal { background: var(--teal); }
.container { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow { margin-bottom: .6rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header .lead { max-width: 560px; margin: 0 auto; }
.divider { width: 52px; height: 3px; background: var(--pink); border-radius: 2px; margin: .75rem auto; }
.divider-left { margin-left: 0; }

/* ── 7. FEATURE STRIP ─────────────────────────────────────── */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.fi { padding: 1.5rem 1.1rem; text-align: center; border-right: 1px solid var(--border); transition: var(--transition); }
.fi:last-child { border-right: none; }
.fi:hover { background: var(--sand); }
.fi-icon { width: 44px; height: 44px; background: var(--pink-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto .85rem; color: var(--pink); }
.fi-icon svg { width: 21px; height: 21px; }
.fi h4 { margin-bottom: .3rem; font-size: .9rem; }
.fi p { font-size: .8rem; color: var(--mid); line-height: 1.5; }

/* ── 8. ABOUT GRID ────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; grid-column: span 2; height: 260px; }
.about-img-main img, .about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm { border-radius: var(--radius-md); overflow: hidden; height: 160px; }
.about-badge { position: absolute; bottom: -1.25rem; right: -.75rem; background: var(--pink); color: var(--white); padding: 1.1rem 1.3rem; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-lg); }
.about-badge-num { font-family: var(--font-d); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: .7rem; margin-top: .2rem; opacity: .9; }
.about-text .eyebrow { margin-bottom: .6rem; }
.about-text h2 { margin-bottom: .85rem; }
.about-text p { margin-bottom: 1rem; color: var(--mid); font-size: .9rem; }
.about-list { margin: 1.1rem 0 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.about-list-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--dark); }
.about-list-item svg { width: 15px; height: 15px; color: var(--pink); flex-shrink: 0; margin-top: 3px; }

/* ── 9. ROOM CARDS ────────────────────────────────────────── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.room-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rc-badge { position: absolute; top: .85rem; left: .85rem; }
.rc-price { position: absolute; bottom: .85rem; right: .85rem; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); padding: .3rem .8rem; border-radius: 50px; font-weight: 700; font-size: .8rem; color: var(--charcoal); }
.rc-price span { color: var(--pink); }
.rc-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.rc-title { font-family: var(--font-d); font-size: 1.15rem; font-weight: 600; margin-bottom: .2rem; }
.rc-addr { font-size: .75rem; color: var(--light); display: flex; align-items: center; gap: .25rem; margin-bottom: .8rem; }
.rc-stats { display: flex; gap: .75rem; margin-bottom: .8rem; flex-wrap: wrap; }
.rc-stat { display: flex; align-items: center; gap: .28rem; font-size: .75rem; color: var(--mid); }
.rc-stat svg { width: 13px; height: 13px; color: var(--teal); }
.rc-feats { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .8rem; min-height: 22px; }
.rc-desc { font-size: .835rem; color: var(--mid); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.rc-foot { display: flex; gap: .5rem; margin-top: auto; }
.rc-foot .btn { flex: 1; justify-content: center; font-size: .8rem; padding: .55rem .8rem; }

/* Filter pills */
.pill-nav { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.pill-nav button { padding: .42rem 1.1rem; border-radius: 50px; font-size: .8rem; font-weight: 500; border: 1.5px solid var(--border); background: var(--white); color: var(--mid); transition: var(--transition); cursor: pointer; font-family: var(--font-b); }
.pill-nav button:hover, .pill-nav button.active { background: var(--pink); border-color: var(--pink); color: var(--white); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: .4rem; flex-wrap: wrap; margin-top: 2.25rem; }
.pagination button { min-width: 38px; height: 38px; padding: 0 .7rem; border-radius: 50px; font-size: .82rem; font-weight: 600; border: 1.5px solid var(--border); background: var(--white); color: var(--mid); transition: var(--transition); cursor: pointer; font-family: var(--font-b); }
.pagination button:hover:not(:disabled) { background: var(--pink); border-color: var(--pink); color: var(--white); }
.pagination button.active { background: var(--pink); border-color: var(--pink); color: var(--white); }
.pagination button:disabled { opacity: .4; cursor: not-allowed; }
.pagination .pg-arrow-btn { display: inline-flex; align-items: center; justify-content: center; }
.pagination .pg-arrow { width: 15px; height: 15px; }
.pagination .pg-dots { color: var(--light); font-size: .82rem; padding: 0 .2rem; }
.pg-count { text-align: center; font-size: .8rem; color: var(--light); margin-top: .85rem; }

/* ── 10. ROOM DETAIL ──────────────────────────────────────── */
.room-hero { height: 52vh; min-height: 380px; position: relative; overflow: hidden; }
.room-hero img { width: 100%; height: 100%; object-fit: cover; }
.room-hero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 60%); }
.room-hero-text { position: absolute; bottom: 1.75rem; left: 0; right: 0; padding: 0 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.room-body { max-width: var(--max-width); margin: 0 auto; padding: 2.5rem 1.5rem; display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.room-body > div { min-width: 0; }
.room-gallery { margin: 1.5rem 0; }
.rg-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #111; aspect-ratio: 16/9; }
.rg-main img { width: 100%; height: 100%; object-fit: contain; display: block; transition: opacity .13s ease; cursor: zoom-in; }
.rg-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: white; border: 1px solid rgba(255,255,255,.2);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; transition: background .2s; padding: 0; line-height: 1;
}
.rg-prev { left: .75rem; }
.rg-next { right: .75rem; }
.rg-arrow:hover { background: var(--pink); border-color: var(--pink); }
.rg-counter {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.55); color: white; font-size: .7rem; font-weight: 600;
  padding: .22rem .65rem; border-radius: 10px; font-family: var(--font-b);
  backdrop-filter: blur(4px); pointer-events: none;
}
.rg-thumbs {
  display: flex; gap: 6px; overflow-x: auto; padding: 8px 0 4px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent; margin-top: 8px;
}
.rg-thumb {
  flex: 0 0 80px; height: 58px; border-radius: 6px; overflow: hidden;
  cursor: pointer; opacity: .55; transition: opacity .18s, outline .18s;
  outline: 2px solid transparent; outline-offset: 1px;
}
.rg-thumb.active { opacity: 1; outline-color: var(--pink); }
.rg-thumb:hover { opacity: .85; }
.rg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
@media (max-width: 768px) {
  .rg-main { aspect-ratio: 4/3; }
  .rg-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
  .rg-thumb { flex: 0 0 62px; height: 46px; }
}
.room-section { margin-bottom: 2rem; }
.room-section h3 { font-size: .95rem; font-weight: 700; font-family: var(--font-b); margin-bottom: .85rem; padding-bottom: .4rem; border-bottom: 2px solid var(--border); color: var(--charcoal); text-transform: uppercase; letter-spacing: .04em; }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.amen-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--dark); padding: .42rem .6rem; background: var(--sand); border-radius: var(--radius-sm); }
.amen-item svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; }
.incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.ie-col h4 { font-size: .8rem; font-weight: 700; margin-bottom: .6rem; display: flex; align-items: center; gap: .4rem; font-family: var(--font-b); }
.ie-col ul { display: flex; flex-direction: column; gap: .38rem; }
.ie-col ul li { font-size: .8rem; display: flex; align-items: flex-start; gap: .38rem; color: var(--dark); }
.ie-col ul li svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: .45rem; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1rem; cursor: pointer; font-size: .855rem; font-weight: 600; background: var(--sand); transition: var(--transition); font-family: var(--font-b); gap: .5rem; }
.faq-q:hover { background: var(--border); }
.faq-a { padding: 0 1rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; font-size: .835rem; color: var(--mid); line-height: 1.7; }
.faq-a.open { max-height: 300px; padding: .85rem 1rem; }
.faq-icon { width: 17px; height: 17px; transition: transform .3s ease; flex-shrink: 0; }
.faq-icon.open { transform: rotate(45deg); }

/* Map embed */
.map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 260px; border: none; display: block; }

/* Sidebar */
.sidebar-card { background: var(--sand); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.1rem; border: 1px solid var(--border); }
.sidebar-card h4 { margin-bottom: .85rem; }
.price-block { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 1.1rem; }
.price-num { font-family: var(--font-d); font-size: 1.8rem; font-weight: 700; color: var(--charcoal); }
.price-unit { font-size: .8rem; color: var(--mid); }
.sidebar-rows { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.s-row { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; padding: .4rem 0; border-bottom: 1px solid var(--border); }
.s-row:last-child { border-bottom: none; }
.s-row-label { color: var(--mid); }
.s-row-val { font-weight: 600; color: var(--charcoal); }
.back-btn { display: inline-flex; align-items: center; gap: .4rem; color: var(--mid); font-size: .835rem; font-weight: 500; transition: var(--transition); margin-bottom: 1.5rem; }
.back-btn:hover { color: var(--pink); }
.back-btn svg { width: 16px; height: 16px; }

/* ── 11. ACTIVITIES BANNER ────────────────────────────────── */
.act-banner { background: linear-gradient(135deg, var(--teal) 0%, #1a5555 100%); padding: 3.5rem 1.5rem; }
.act-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.act-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.act-card { background: rgba(255,255,255,.1); border-radius: var(--radius-md); padding: 1rem .85rem; text-align: center; }
.act-card svg { width: 24px; height: 24px; margin-bottom: .35rem; }
.act-card span { display: block; font-size: .7rem; color: rgba(255,255,255,.8); }

/* ── 12. TESTIMONIALS ─────────────────────────────────────── */
.testi-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.testi-stars { display: flex; gap: 2px; margin-bottom: .85rem; color: #f6c90e; }
.testi-stars svg { width: 14px; height: 14px; }
.testi-text { font-family: var(--font-d); font-style: italic; font-size: .945rem; color: var(--dark); line-height: 1.7; margin-bottom: 1rem; }
.testi-author { font-size: .75rem; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: .07em; }

/* ── 13. LOCAL BUSINESS CARDS ─────────────────────────────── */
.local-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; }

.local-card {
  position: relative; height: 300px; overflow: hidden; cursor: pointer;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  -webkit-tap-highlight-color: transparent;
}
.local-card:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

.lc-img { position: absolute; inset: 0; }
.lc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }

.lc-base {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 4rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 55%, transparent 100%);
  transition: opacity .3s ease, transform .3s ease;
}
.lc-cat-pill {
  display: inline-block; font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pink); background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px); border: 1px solid rgba(233,30,140,.45);
  padding: .18rem .62rem; border-radius: 50px; margin-bottom: .35rem;
}
.lc-title {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 600;
  color: var(--white); line-height: 1.3; margin-bottom: .25rem;
}
.lc-loc { font-size: .71rem; color: rgba(255,255,255,.62); display: flex; align-items: center; gap: .25rem; }
.lc-loc svg { width: 11px; height: 11px; flex-shrink: 0; }

.lc-hover-overlay {
  position: absolute; inset: 0; padding: 1.25rem;
  background: linear-gradient(160deg, rgba(13,27,42,.85) 0%, rgba(13,27,42,.97) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.lc-hover-bottom { display: flex; flex-direction: column; gap: .55rem; }
.lc-hover-desc {
  font-size: .79rem; color: rgba(255,255,255,.78); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lc-explore-hint { font-size: .7rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .09em; }

@media (hover: hover) {
  .local-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.22); border-color: transparent; }
  .local-card:hover .lc-img img { transform: scale(1.09); }
  .local-card:hover .lc-base { opacity: 0; transform: translateY(8px); pointer-events: none; }
  .local-card:hover .lc-hover-overlay { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
@media (hover: none) {
  .local-card:active { transform: scale(.98); opacity: .9; }
}

/* ── LOCAL CARD MODAL ──────────────────────────────────────── */
.lc-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.62); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lc-modal-overlay.open { opacity: 1; pointer-events: auto; }
.lc-modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto;
  transform: translateY(28px) scale(.96); opacity: 0;
  transition: transform .38s cubic-bezier(.34,1.2,.64,1), opacity .3s ease;
  scrollbar-width: thin;
}
.lc-modal-overlay.open .lc-modal { transform: translateY(0) scale(1); opacity: 1; }
.lcm-img { position: relative; height: 300px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.lcm-img img { width: 100%; height: 100%; object-fit: cover; }
.lcm-close {
  position: absolute; top: .85rem; right: .85rem; width: 36px; height: 36px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; border: none; z-index: 5;
  transition: background .22s ease, transform .22s ease;
}
.lcm-close:hover { background: var(--pink); transform: rotate(90deg) scale(1.1); }
.lcm-badge { position: absolute; bottom: .85rem; left: .85rem; }
.lcm-body { padding: 1.6rem; }
.lcm-title { font-family: var(--font-d); font-size: 1.55rem; font-weight: 600; color: var(--charcoal); margin-bottom: .35rem; line-height: 1.25; }
.lcm-loc { font-size: .8rem; color: var(--mid); display: flex; align-items: center; gap: .3rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.lcm-loc svg { width: 12px; height: 12px; color: var(--pink); flex-shrink: 0; }
.lcm-desc { font-size: .9rem; color: var(--dark); line-height: 1.78; margin-bottom: 1.5rem; }
.lcm-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.lcm-actions .btn, .lcm-actions .btn-wa { flex: 1; min-width: 140px; justify-content: center; }

.advert-cta { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%); color: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 1.5rem; text-align: center; margin-top: 2.25rem; }
.advert-cta h3 { color: var(--white); margin-bottom: .7rem; }
.advert-cta p { color: rgba(255,255,255,.88); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── 14. CONTACT & FORMS ──────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.cdi { display: flex; align-items: flex-start; gap: .85rem; }
.cdi-icon { width: 40px; height: 40px; background: var(--pink-light); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--pink); flex-shrink: 0; }
.cdi-icon svg { width: 18px; height: 18px; }
.cdi-text strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--light); margin-bottom: .12rem; font-weight: 600; }
.cdi-text a, .cdi-text span { font-size: .92rem; color: var(--charcoal); font-weight: 500; word-break: break-word; }
.cdi-text a:hover { color: var(--pink); }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-card h3 { margin-bottom: .3rem; }
.form-card > p { font-size: .835rem; color: var(--mid); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
label { display: block; font-size: .76rem; font-weight: 600; color: var(--dark); margin-bottom: .3rem; letter-spacing: .03em; }
input, select, textarea { width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .855rem; color: var(--charcoal); background: var(--white); transition: var(--transition); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,140,.1); }
textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: .82rem; font-size: .95rem; font-weight: 600; background: var(--pink); color: var(--white); border-radius: 50px; transition: var(--transition); border: none; cursor: pointer; font-family: var(--font-b); }
.form-submit:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(233,30,140,.35); }
.form-success { display: none; text-align: center; padding: 1.75rem; }
.form-success svg { width: 44px; height: 44px; margin: 0 auto .85rem; color: var(--teal); }
.booking-info-box { background: var(--sand); border-radius: var(--radius-lg); padding: 1.4rem; margin-top: 1.5rem; border: 1px solid var(--border); }
.booking-info-box h4 { margin-bottom: .85rem; }
.bib-list { display: flex; flex-direction: column; gap: .45rem; }
.bib-item { display: flex; align-items: flex-start; gap: .45rem; font-size: .835rem; color: var(--dark); }
.bib-item svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* ── 15. FOOTER ───────────────────────────────────────────── */
footer { background: var(--nav-bg); color: rgba(255,255,255,.8); }
.footer-top { padding: 3.5rem 1.5rem; max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: .83rem; line-height: 1.75; color: rgba(255,255,255,.55); max-width: 260px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .55rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-social a:hover { background: var(--pink); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h5 { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 1rem; font-family: var(--font-b); }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--pink); }
.footer-col p { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 1.5rem; }
.footer-bottom-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--pink); }

/* ── 16. UTILITIES ────────────────────────────────────────── */
.text-center { text-align: center; }
.text-pink { color: var(--pink); }
.text-white { color: var(--white); }
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.cta-block { background: var(--nav-bg); border-radius: var(--radius-lg); padding: 1.85rem; text-align: center; margin-bottom: 2rem; }
.cta-block h3 { color: var(--white); font-family: var(--font-d); font-size: 1.3rem; margin-bottom: .6rem; }
.cta-block p { color: rgba(255,255,255,.7); font-size: .855rem; margin-bottom: 1.25rem; }
.cta-actions { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; }
.estate-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.6rem; border: 1px solid var(--border); text-align: center; }
.estate-card .fi-icon { margin: 0 auto 1rem; }
.estate-card h4 { margin-bottom: .38rem; }
.estate-card p { font-size: .835rem; color: var(--mid); }

/* ── 17. RESPONSIVE BREAKPOINTS ──────────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-imgs { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .room-body { grid-template-columns: 1fr; }
  .act-inner { grid-template-columns: 1fr; gap: 2rem; }
  .testi-strip { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .fi:nth-child(2) { border-right: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .slider-stats { display: none; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  /* NAV: hide links, show burger */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  /* Logo centered on mobile */
  .nav-inner { justify-content: center; position: relative; }
  .nav-toggle { position: absolute; right: 1rem; }
  .nav-logo { margin: 0 auto; }

  .section { padding: 3rem 1.1rem; }
  .slide-content { padding: 6rem 1.1rem 4rem; }
  .slide-inner { max-width: 100%; }
  .slide-actions { flex-direction: column; align-items: flex-start; gap: .65rem; }
  .slide-actions .btn, .slide-actions .btn-wa { width: 100%; max-width: 280px; justify-content: center; }

  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery img:first-child { grid-column: span 1; height: 200px; }
  .room-gallery img { height: 160px; }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .incl-excl { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-brand img { margin: 0 auto 1rem; }
  .footer-social { justify-content: center; }

  .contact-strip-inner { flex-direction: column; align-items: flex-start; gap: .55rem; }
  .form-row { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .fi { border-right: none; border-bottom: 1px solid var(--border); }
  .fi:last-child { border-bottom: none; }
  .testi-strip { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .act-icons { grid-template-columns: repeat(4, 1fr); }
  .page-header { padding: 7rem 1.1rem 2.75rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .slider-prev, .slider-next { width: 36px; height: 36px; }
  .about-imgs { max-width: 100%; }

  /* Room detail stacked on mobile */
  .room-body { padding: 1.5rem 1.1rem; grid-template-columns: 1fr; gap: 1.5rem; }
  .room-hero { height: 42vh; min-height: 280px; }
  .map-wrap iframe { height: 200px; }
}

/* Modal bottom-sheet on small screens */
@media (max-width: 600px) {
  .lc-modal-overlay { align-items: flex-end; padding: 0; }
  .lc-modal { border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 90vh; transform: translateY(100%); }
  .lc-modal-overlay.open .lc-modal { transform: translateY(0); }
  .lcm-actions { flex-direction: column; }
  .lcm-actions .btn, .lcm-actions .btn-wa { min-width: unset; }
}

/* Mobile portrait */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .rooms-grid { max-width: 100%; }
  .testi-strip { max-width: 100%; }
  .about-imgs { grid-template-columns: 1fr; }
  .about-img-sm:last-child { display: none; }
  .act-icons { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: 1fr; }
  .slide-badge { display: none; }
  .hero-slider { height: 88vh; min-height: 460px; }

  /* Notice bar stays single-line on mobile to prevent gap below nav */
  .notice-bar { font-size: .72rem; padding: .45rem .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* Buttons full-width in mobile CTAs */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn, .cta-actions .btn-wa { width: 100%; max-width: 300px; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .slide-bg { transition: none !important; transform: none !important; }
}

/* ── Branded logo band (homepage body) ── */
.brand-band-inner{
  display:grid; grid-template-columns:1.15fr .85fr; gap:0;
  border-radius:18px; overflow:hidden;
  box-shadow:0 20px 50px rgba(13,27,42,.12);
  background:var(--white);
}
.brand-band-img{ width:100%; height:100%; min-height:320px; object-fit:cover; display:block; }
.brand-band-card{
  padding:2.6rem 2.4rem; display:flex; flex-direction:column;
  justify-content:center; align-items:flex-start; gap:.5rem;
  background:var(--sand);
}
.brand-band-logo{ width:128px; height:auto; margin-bottom:.6rem; }
.brand-band-card h2{ margin:.1rem 0 .4rem; }
.brand-band-card .eyebrow{ margin:0; }
@media(max-width:780px){
  .brand-band-inner{ grid-template-columns:1fr; }
  .brand-band-img{ min-height:220px; }
  .brand-band-card{ padding:2rem 1.5rem; }
}

/* logo sizing on dark CTA */
.section-dark .cta-logo{ width:230px; max-width:80%; height:auto; margin:0 auto 1.4rem; display:block; }

/* ── 18. GALLERY PAGE ─────────────────────────────────────── */
.gallery-tabs {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-tab {
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: .5rem 1.2rem; border-radius: 50px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--mid); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: var(--font-b);
}
.gallery-tab:hover { border-color: var(--pink); color: var(--pink); }
.gallery-tab.active { background: var(--pink); color: var(--white); border-color: var(--pink); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  cursor: pointer; aspect-ratio: 4/3;
  background: var(--sand);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,0);
  transition: background .3s ease;
  display: flex; align-items: flex-end;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(13,27,42,.32); }
.gallery-cta-bar {
  background: var(--sand); border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-cta-bar p { margin: 0; color: var(--mid); font-size: .9rem; }
/* Lightbox */
.glb-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 2000; display: none; align-items: center; justify-content: center;
}
.glb-overlay.open { display: flex; }
.glb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.glb-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); display: block; }
.glb-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: white; font-size: 2rem;
  cursor: pointer; line-height: 1;
}
.glb-prev, .glb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: white; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2001; transition: var(--transition);
}
.glb-prev { left: 1rem; }
.glb-next { right: 1rem; }
.glb-prev:hover, .glb-next:hover { background: var(--pink); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .gallery-tab { padding: .4rem .9rem; font-size: .78rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .45rem; }
  .gallery-cta-bar { flex-direction: column; text-align: center; }
}

/* ── 19. GALLERY CATEGORY CARDS & SECTIONS ───────────────── */
.gallery-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.gallery-cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3; display: block; text-decoration: none;
}
.gallery-cat-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-cat-card:hover img { transform: scale(1.07); }
.gallery-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.78));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem 1.1rem; transition: background .3s;
}
.gallery-cat-card:hover .gallery-cat-overlay { background: linear-gradient(to bottom, rgba(0,0,0,.12) 40%, rgba(0,0,0,.84)); }
.gallery-cat-label { color: white; font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.gallery-cat-count { color: rgba(255,255,255,.75); font-size: .7rem; margin-top: .2rem; font-family: var(--font-b); }
.gallery-cat-section { margin-bottom: 3.5rem; scroll-margin-top: 120px; }
.gallery-cat-section-header {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
  padding-bottom: .75rem; border-bottom: 2px solid var(--border); flex-wrap: wrap;
}
.gallery-cat-section-header h2 { font-size: 1.5rem; color: var(--charcoal); margin: 0; }
.gallery-cnt-badge {
  background: var(--sand); color: var(--mid); font-size: .75rem; font-weight: 600;
  padding: .2rem .65rem; border-radius: 50px; font-family: var(--font-b);
}
.gallery-discover-link {
  margin-left: auto; font-size: .8rem; color: var(--pink); font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: .3rem; white-space: nowrap;
}
.gallery-discover-link:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .gallery-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cat-section-header { gap: .5rem; }
  .gallery-discover-link { margin-left: 0; }
}

/* ── 20. VILLA CARD IMAGE ─────────────────────────────────── */
.rc-img-wrap { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.rc-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.rc-img-wrap:hover img { transform: scale(1.06); }

/* ── 21. ESTATE CAROUSEL (DISCOVER PAGE) ─────────────────── */
.estate-carousel-wrap {
  position: relative; overflow: hidden; height: 420px; background: var(--charcoal);
}
.estate-carousel-track {
  display: flex; height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.estate-carousel-slide { min-width: 100%; height: 100%; position: relative; }
.estate-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ec-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.68));
  color: white; padding: 3rem 2rem 1.25rem;
  font-family: var(--font-d); font-size: 1.1rem;
  pointer-events: none;
}
.estate-car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.4); color: white; border: 1px solid rgba(255,255,255,.2);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: background .2s; padding: 0;
}
.estate-car-arrow.prev { left: 1rem; }
.estate-car-arrow.next { right: 1rem; }
.estate-car-arrow:hover { background: var(--pink); border-color: var(--pink); }
.estate-car-dots {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .4rem; z-index: 5;
}
.estate-car-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4);
  border: none; cursor: pointer; padding: 0; transition: background .2s;
}
.estate-car-dot.active { background: white; }
@media (max-width: 768px) {
  .estate-carousel-wrap { height: 260px; }
  .ec-caption { font-size: .9rem; padding: 2rem 1rem 1rem; }
  .estate-car-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* Discover page - feature image above photo gallery CTA */
.discover-feature-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  margin: 0 auto 2rem; max-width: 900px; aspect-ratio: 16/9;
}
.discover-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) {
  .discover-feature-img { aspect-ratio: 4/3; margin-bottom: 1.5rem; }
}

/* ── 22. GALLERY ACCORDION & ACTIVITIES HUB ──────────────── */
.gallery-cat-card-featured { outline: 3px solid var(--pink); outline-offset: -3px; box-shadow: 0 10px 28px rgba(233,30,140,.38); }
.gallery-cat-ribbon {
  position: absolute; top: .6rem; left: .6rem; z-index: 2;
  background: var(--pink); color: #fff; font-size: .62rem; font-weight: 700;
  padding: .28rem .65rem; border-radius: 50px; text-transform: uppercase;
  letter-spacing: .04em; font-family: var(--font-b);
}
.gallery-cat-section-header { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.gallery-cat-section-header:hover h2 { color: var(--pink); }
.gallery-cat-section-header:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }
.acc-chevron { margin-left: auto; flex-shrink: 0; transition: transform .3s ease; color: var(--mid); }
.gallery-cat-section.open > .gallery-cat-section-header .acc-chevron { transform: rotate(180deg); color: var(--pink); }
.acc-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.gallery-cat-section.open > .acc-wrap { grid-template-rows: 1fr; }
.acc-inner { overflow: hidden; }
.acc-inner-pad { padding-top: 1.25rem; }

/* Nested sub-accordion (e.g. Activities: Horse Riding, Quad Biking, Sky Diving, Cycling) */
.gallery-subacc-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: .75rem; overflow: hidden; }
.gallery-subacc-item:last-child { margin-bottom: 0; }
.gallery-subacc-header {
  display: flex; align-items: center; gap: .65rem; padding: .85rem 1rem;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.gallery-subacc-header h3 { font-size: 1rem; margin: 0; color: var(--charcoal); font-family: var(--font-d); }
.gallery-subacc-header:hover h3 { color: var(--pink); }
.gallery-subacc-header:focus-visible { outline: 2px solid var(--pink); outline-offset: -2px; }
.gallery-subacc-item.open > .gallery-subacc-header .acc-chevron { transform: rotate(180deg); color: var(--pink); }
.gallery-subacc-item.open > .acc-wrap { grid-template-rows: 1fr; }
.gallery-subacc-item .acc-inner-pad { padding: 0 1rem 1rem; }
.gallery-swipe-row {
  display: flex; gap: .85rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .1rem .1rem 1rem;
}
.gallery-swipe-row .gallery-item { flex: 0 0 auto; width: 240px; scroll-snap-align: start; }
@media (max-width: 768px) {
  .gallery-swipe-row .gallery-item { width: 68vw; }
}
