:root {
  --gold: #E8C200;
  --gold-deep: #D4A800;
  --gold-amber: #B8960A;
  --gold-pale: #f5e070;
  --black: #0e0e0e;
  --black-2: #161616;
  --black-3: #1e1e1e;
  --black-4: #2a2a2a;
  --white: #faf6ea;
  --cream: #f0e8c8;
  --text-muted: #8a7a50;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  cursor: default;
}

img { max-width: 100%; height: auto; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
  transition: background 0.4s;
}
.nav-logo { margin-right: auto; }
nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(232,194,0,0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--white); font-style: normal; font-size: 10px; display: block; letter-spacing: 4px; text-transform: uppercase; margin-top: -2px; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 22px;
  font-weight: 700 !important;
  letter-spacing: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-pale) !important; color: var(--black) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, #1a1200 0%, var(--black) 70%);
}
.sunburst {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120vmax; height: 120vmax;
  animation: slowspin 80s linear infinite;
}
.sunburst-ray {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(to right, rgba(184,150,10,0.12) 0%, transparent 100%);
}
@keyframes slowspin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.sunburst-ray:nth-child(1)  { transform: rotate(0deg); }
.sunburst-ray:nth-child(2)  { transform: rotate(20deg); }
.sunburst-ray:nth-child(3)  { transform: rotate(40deg); }
.sunburst-ray:nth-child(4)  { transform: rotate(60deg); }
.sunburst-ray:nth-child(5)  { transform: rotate(80deg); }
.sunburst-ray:nth-child(6)  { transform: rotate(100deg); }
.sunburst-ray:nth-child(7)  { transform: rotate(120deg); }
.sunburst-ray:nth-child(8)  { transform: rotate(140deg); }
.sunburst-ray:nth-child(9)  { transform: rotate(160deg); }
.sunburst-ray:nth-child(10) { transform: rotate(180deg); }
.sunburst-ray:nth-child(11) { transform: rotate(200deg); }
.sunburst-ray:nth-child(12) { transform: rotate(220deg); }
.sunburst-ray:nth-child(13) { transform: rotate(240deg); }
.sunburst-ray:nth-child(14) { transform: rotate(260deg); }
.sunburst-ray:nth-child(15) { transform: rotate(280deg); }
.sunburst-ray:nth-child(16) { transform: rotate(300deg); }
.sunburst-ray:nth-child(17) { transform: rotate(320deg); }
.sunburst-ray:nth-child(18) { transform: rotate(340deg); }

.palm-l, .palm-r {
  position: absolute;
  bottom: 0;
  opacity: 0.18;
  pointer-events: none;
}
.palm-l { left: -40px; }
.palm-r { right: -40px; transform: scaleX(-1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-amber);
  margin-bottom: 28px;
  animation: fadeUp 1.2s 0.1s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(64px, 12vw, 130px);
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(232,194,0,0.3);
  letter-spacing: -2px;
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-title .amp {
  color: var(--white);
  font-style: normal;
  font-size: 0.5em;
  vertical-align: middle;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--cream);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  animation: fadeUp 1.2s 0.3s ease both;
}
.hero-tagline {
  margin: 32px auto 48px;
  max-width: 520px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(240,232,200,0.75);
  font-style: italic;
  animation: fadeUp 1.2s 0.4s ease both;
}
.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s 0.5s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-pale); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,194,0,0.3); }
.btn-outline {
  border: 1px solid rgba(232,194,0,0.5);
  color: var(--gold);
  padding: 16px 40px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(232,194,0,0.08); transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-amber);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-amber), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── MARQUEE BAND ── */
.marquee-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
}
.marquee-dot { color: var(--black-4); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SECTIONS common ── */
section { padding: 100px 60px; }
.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-amber);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-body {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(240,232,200,0.8);
  max-width: 560px;
}
.section-body + .section-body { margin-top: 16px; }
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.divider-center { margin: 24px auto; }

/* ── ABOUT ── */
.about {
  background: var(--black-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.2);
  padding: 40px;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 40px; right: 40px;
  height: 3px;
  background: var(--gold);
}
.about-card-quote {
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.7;
}
.about-card-source {
  margin-top: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-amber);
  text-transform: uppercase;
}
.about-stat {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-num--small { font-size: 38px; }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}
.about-logo-svg {
  width: 100%;
  max-width: 420px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 30px rgba(232,194,0,0.2));
}
.about-photo {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 0 28px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,194,0,0.15);
}
.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Why-Us featured image (replaces the 🇯🇲 emoji) */
.why-feature-photo {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 2px rgba(232,194,0,0.3);
}
.why-feature-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Cruise-callout image */
.cruise-photo {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 2px rgba(232,194,0,0.3);
  flex-shrink: 0;
}
.cruise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .cruise-photo { width: 96px; height: 96px; }
  .why-feature-photo { max-width: 180px; }
}

/* ── PRODUCTS / COMING SOON ── */
.products { background: var(--black); }
.products-header {
  text-align: center;
  margin-bottom: 64px;
}
.products-header .section-body { margin: 0 auto; }

.coming-soon {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.coming-soon .section-title {
  font-size: clamp(48px, 7vw, 88px);
  text-shadow: 0 0 60px rgba(232,194,0,0.25);
}
.coming-soon-body {
  margin: 0 auto;
  font-size: 19px;
}
.coming-soon-note {
  margin: 28px auto 36px;
  max-width: 540px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(240,232,200,0.6);
}
.coming-soon-btns {
  justify-content: center;
  margin-top: 8px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card {
  background: var(--black-2);
  padding: 36px 28px;
  border: 1px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.product-card:hover {
  background: var(--black-3);
  border-color: rgba(232,194,0,0.15);
  transform: translateY(-4px);
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  filter: saturate(0.8);
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240,232,200,0.6);
}

/* ── EXPERIENCE STRIP ── */
.experience {
  background: var(--black-2);
  color: var(--white);
  text-align: center;
  padding: 90px 60px;
  border-top: 1px solid rgba(232,194,0,0.12);
  border-bottom: 1px solid rgba(232,194,0,0.12);
  position: relative;
}
.experience::before,
.experience::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,194,0,0.35), transparent);
}
.experience::before { top: 0; }
.experience::after  { bottom: 0; }
.experience .section-eyebrow { color: var(--gold-amber); }
.experience .section-title { color: var(--gold); font-size: clamp(32px,4vw,52px); }
.experience .divider { background: var(--gold); margin: 24px auto; }
.experience .section-body { color: rgba(240,232,200,0.75); margin: 0 auto; max-width: 620px; }

.experience-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 64px auto 0;
}
.experience-feature {
  padding: 0 8px;
  text-align: center;
}
.experience-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.28);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.experience-feature:hover .experience-feature-icon {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.experience-feature-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 12px;
}
.experience-feature-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(240,232,200,0.7);
}

@media (max-width: 1000px) {
  .experience-features { grid-template-columns: repeat(3, 1fr); }
  .experience-feature:nth-child(4),
  .experience-feature:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 700px) {
  .experience { padding: 64px 24px; }
  .experience-features { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .experience-feature:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 420px) {
  .experience-features { grid-template-columns: 1fr; }
  .experience-feature:nth-child(5) { grid-column: span 1; }
}

/* ── WHY US ── */
.why { background: var(--black-2); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 16px;
}
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(232,194,0,0.15);
  line-height: 1;
  min-width: 50px;
  margin-top: -8px;
}
.why-item-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
}
.why-item-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240,232,200,0.65);
}
.why-image-block {
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.15);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.jamaica-flag { font-size: 80px; }
.why-image-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  line-height: 1.5;
}
.why-image-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-amber);
  text-transform: uppercase;
}
.why-divider {
  width: 100%;
  height: 1px;
  background: rgba(232,194,0,0.15);
}
.why-address-block { text-align: left; width: 100%; }
.why-address-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-amber);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-address-body {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.8;
}

/* ── VISIT ── */
.visit { background: var(--black); }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.info-card {
  background: var(--black-2);
  border: 1px solid rgba(232,194,0,0.15);
  padding: 40px;
  margin-bottom: 20px;
}
.info-card-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-amber);
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.info-row + .info-row { margin-top: 12px; }
.info-icon { font-size: 18px; min-width: 28px; }
.info-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
}
.info-text a { color: var(--gold); text-decoration: none; }
.info-text a:hover { text-decoration: underline; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hours-item {
  background: var(--black-3);
  padding: 14px 16px;
  border-left: 2px solid var(--gold);
}
.hours-day {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold-amber);
  text-transform: uppercase;
}
.hours-time {
  font-size: 16px;
  color: var(--white);
  margin-top: 4px;
}

/* Embedded map */
.map-embed {
  width: 100%;
  height: 320px;
  border: 1px solid rgba(232,194,0,0.15);
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0.4) contrast(1.1);
}

/* Contact form */
.contact-form-wrap {
  background: var(--black-2);
  border: 1px solid rgba(232,194,0,0.15);
  padding: 36px;
}
.contact-form-eyebrow { margin-bottom: 24px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; }
.form-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-amber);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.2);
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
.form-submit:hover { background: var(--gold-pale); }
.form-status {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 8px;
  min-height: 16px;
}
.form-status.success { color: var(--gold); }
.form-status.error { color: #ff8a8a; }

/* ── GALLERY (Hero + Thumbnail strip) ── */
.gallery { background: var(--black-2); padding: 80px 0; }
.gallery-header { padding: 0 60px 48px; text-align: center; }

.gallery-viewer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}
.gallery-stage {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.2);
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.gallery-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  overflow: hidden;
}
.gallery-photo.is-active {
  opacity: 1;
  pointer-events: auto;
}
/* Blurred backdrop fills the void space when the photo doesn't match stage aspect */
.gallery-photo::before {
  content: '';
  position: absolute;
  inset: -40px;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.4);
  z-index: 0;
}
.gallery-photo picture {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(232,194,0,0.4);
  background: rgba(14,14,14,0.65);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: all 0.2s;
}
.gallery-nav-btn:hover {
  background: rgba(14,14,14,0.85);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}
.gallery-nav-prev { left: 20px; }
.gallery-nav-next { right: 20px; }

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px auto 28px;
  max-width: 760px;
  gap: 16px;
}
.gallery-thumbs { max-width: 760px; margin: 0 auto; }
.gallery-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  flex: 1;
}
.gallery-caption::before {
  content: '· ';
  color: var(--gold-amber);
}
.gallery-caption::after {
  content: ' ·';
  color: var(--gold-amber);
}
.gallery-counter {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-amber);
  text-transform: uppercase;
  flex-shrink: 0;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) var(--black-3);
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-track { background: var(--black-3); }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }

.gallery-thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border: 2px solid transparent;
  background: var(--black-3);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
  transition: all 0.25s;
  scroll-snap-align: start;
  opacity: 0.55;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(232,194,0,0.3);
}

@media (max-width: 900px) {
  .gallery-viewer { padding: 0 24px; }
  .gallery-nav-btn { width: 42px; height: 42px; font-size: 28px; }
  .gallery-nav-prev { left: 12px; }
  .gallery-nav-next { right: 12px; }
  .gallery-caption { font-size: 18px; }
  .gallery-thumb { width: 70px; height: 70px; }
}
@media (max-width: 600px) {
  .gallery-stage { aspect-ratio: 4 / 3; }
  .gallery-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .gallery-thumb { width: 60px; height: 60px; }
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--black-3);
  border-top: 1px solid rgba(232,194,0,0.1);
  border-bottom: 1px solid rgba(232,194,0,0.1);
  padding: 80px 60px;
  text-align: center;
}
.newsletter .section-title { font-size: 36px; }
.newsletter-lede {
  color: rgba(240,232,200,0.7);
  font-size: 17px;
  margin-top: 12px;
  font-style: italic;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 40px auto 0;
}
.newsletter-input {
  flex: 1;
  background: var(--black-2);
  border: 1px solid rgba(232,194,0,0.3);
  border-right: none;
  color: var(--white);
  padding: 16px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 28px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-btn:hover { background: var(--gold-pale); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(232,194,0,0.12);
  padding: 64px 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-amber);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240,232,200,0.5);
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(232,194,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-amber);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,194,0,0.08); }
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(240,232,200,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(232,194,0,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(240,232,200,0.6);
  font-family: 'Space Mono', monospace;
  letter-spacing: 1px;
}
.footer-flag { font-size: 18px; }

/* ── MOBILE MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 14px 32px;
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  nav { padding: 18px 30px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 30px; }
  .about, .why-inner, .visit-inner { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-cell.large { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(232,194,0,0.3); border-bottom: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 52px; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr; }
  .about-stat { flex-direction: column; gap: 20px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sunburst, .marquee-inner, .hero-scroll { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── LANGUAGE SWITCH (dropdown) ── */
.nav-lang-wrap { position: relative; }
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(232,194,0,0.4);
  background: none;
  padding: 4px 10px !important;
  font-family: 'Space Mono', monospace;
  font-size: 10px !important;
  letter-spacing: 1.5px;
  color: var(--gold) !important;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-lang::after { display: none !important; }
.nav-lang:hover { background: rgba(232,194,0,0.1); color: var(--gold-pale) !important; }
.nav-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--black-2);
  border: 1px solid rgba(232,194,0,0.25);
  padding: 6px 0;
  list-style: none;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  z-index: 110;
}
.nav-lang-wrap.open .nav-lang-menu,
.nav-lang-wrap:hover .nav-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-lang-menu li { margin: 0; }
.nav-lang-menu a {
  display: block;
  padding: 8px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--cream) !important;
  text-decoration: none;
  text-transform: none !important;
  transition: background 0.2s, color 0.2s;
}
.nav-lang-menu a::after { display: none !important; }
.nav-lang-menu a:hover { background: rgba(232,194,0,0.08); color: var(--gold) !important; }
.nav-lang-menu a[aria-current="true"] {
  color: var(--gold) !important;
  font-weight: 600;
  background: rgba(232,194,0,0.04);
}

/* ── LIVE OPEN / CLOSED STATUS ── */
.live-status {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.15);
  color: var(--cream);
}
.live-status::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.live-status.is-open {
  border-color: rgba(70,200,80,0.4);
  color: #b8f0c0;
}
.live-status.is-open::before {
  background: #46c850;
  box-shadow: 0 0 0 4px rgba(70,200,80,0.18);
  animation: livePulse 2s ease-in-out infinite;
}
.live-status.is-closed {
  border-color: rgba(220,80,80,0.3);
  color: #f0c0c0;
}
.live-status.is-closed::before {
  background: #c84646;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(70,200,80,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(70,200,80,0); }
}

/* Nav pill — same look, smaller */
.nav-status { display: flex; align-items: center; }
.live-pill {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.15);
  color: var(--cream);
}
.live-pill.is-open,
.live-pill.is-closed { display: inline-flex; }
.live-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}
.live-pill.is-open { border-color: rgba(70,200,80,0.4); color: #b8f0c0; }
.live-pill.is-open::before {
  background: #46c850;
  box-shadow: 0 0 0 3px rgba(70,200,80,0.18);
}
.live-pill.is-closed { border-color: rgba(220,80,80,0.3); color: #f0c0c0; }
.live-pill.is-closed::before { background: #c84646; }
@media (max-width: 1100px) {
  .nav-status { display: none; }
}

/* ── SKIP LINK (a11y) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ── FOCUS STYLES (a11y) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.form-submit:focus-visible,
.newsletter-btn:focus-visible {
  outline-offset: 4px;
}

/* ── CRUISE CALLOUT ── */
.cruise-callout {
  background: var(--black-3);
  border-top: 1px solid rgba(232,194,0,0.15);
  border-bottom: 1px solid rgba(232,194,0,0.15);
  padding: 60px 60px;
}
.cruise-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.cruise-icon {
  font-size: 64px;
  filter: drop-shadow(0 0 20px rgba(232,194,0,0.25));
}
.cruise-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--gold);
  margin-bottom: 10px;
}
.cruise-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240,232,200,0.75);
}
.cruise-btn { white-space: nowrap; }
@media (max-width: 900px) {
  .cruise-callout { padding: 48px 30px; }
  .cruise-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
}

/* ── REVIEWS / TRIPADVISOR ── */
.reviews {
  background: var(--black);
  text-align: center;
}
.reviews-inner { max-width: 760px; margin: 0 auto; }
.reviews-lede { margin: 0 auto 36px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  text-align: left;
}
.reviews-card {
  padding: 32px 28px;
  background: var(--black-2);
  border: 1px solid rgba(232,194,0,0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-card-source {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.reviews-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  flex: 1;
}
.reviews-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-amber);
  text-transform: uppercase;
}
.reviews-btn { align-self: flex-start; }
@media (max-width: 760px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Map CTA row (under embed) */
.map-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.map-cta .btn-primary,
.map-cta .btn-outline {
  flex: 1;
  text-align: center;
  padding: 14px 20px;
  font-size: 11px;
}

/* ── FAQ ── */
.faq { background: var(--black-2); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--black-3);
  border: 1px solid rgba(232,194,0,0.12);
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(232,194,0,0.35); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Space Mono', monospace;
  font-style: normal;
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: rgba(232,194,0,0.04); }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(240,232,200,0.75);
}

/* ── INSTAGRAM ── */
.instagram {
  background: var(--black);
  text-align: center;
}
.instagram-header { margin-bottom: 40px; }
.instagram-lede { margin: 0 auto; }
.instagram-placeholder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
}
.ig-tile {
  aspect-ratio: 1;
  background: var(--black-3);
  border: 1px solid var(--black-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 4vw, 48px);
  text-decoration: none;
  transition: all 0.3s;
}
.ig-tile:hover {
  border-color: var(--gold);
  background: var(--black-2);
  transform: translateY(-2px);
}
.instagram-cta { margin-top: 32px; }
@media (max-width: 900px) {
  .instagram-placeholder { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .instagram-placeholder { grid-template-columns: repeat(2, 1fr); }
}

/* ── FOOTER META ── */
.footer-meta {
  border-top: 1px solid rgba(232,194,0,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-languages {
  font-size: 13px;
  color: rgba(240,232,200,0.5);
  font-style: italic;
}
.footer-legal {
  list-style: none;
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,232,200,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .footer-meta { flex-direction: column; text-align: center; }
}

/* ── WHATSAPP FLOATING BUTTON (desktop / tablet only) ── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  animation: waFabPulse 2.6s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0);
  animation: none;
}
.wa-fab-icon { width: 30px; height: 30px; }
.wa-fab-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--black-2);
  color: var(--cream);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(232,194,0,0.25);
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.wa-fab:hover .wa-fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes waFabPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.6); }
  50%      { box-shadow: 0 6px 18px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 900px) {
  .wa-fab { display: none; } /* mobile bar already has WhatsApp */
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { animation: none; }
}

/* ── STICKY MOBILE BAR ── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(14,14,14,0.97);
  border-top: 1px solid rgba(232,194,0,0.2);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-bar-btn:hover,
.mobile-bar-btn:focus-visible { background: rgba(232,194,0,0.08); }
.mobile-bar-icon { font-size: 20px; line-height: 1; }
.mobile-bar-label { color: var(--gold-amber); }
.mobile-bar-btn--accent .mobile-bar-label { color: var(--gold); }

@media (max-width: 900px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ── LIGHTBOX ── */
.gallery-cell { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 60px 20px;
}
.lightbox.open { display: flex; }
.lightbox-figure {
  max-width: 90vw;
  max-height: 80vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-figure img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid rgba(232,194,0,0.3);
  background: var(--black-2);
}
.lightbox-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(232,194,0,0.1);
  border: 1px solid rgba(232,194,0,0.4);
  color: var(--gold);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  user-select: none;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(232,194,0,0.25);
  border-color: var(--gold);
}
.lightbox-close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 28px;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 36px;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-amber);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 28px; }
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--black-2);
  border: 1px solid rgba(232,194,0,0.3);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transform: translateY(140%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(232,194,0,0.4);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-btn:hover { border-color: var(--gold); background: rgba(232,194,0,0.08); }
.cookie-btn--accept {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.cookie-btn--accept:hover { background: var(--gold-pale); }
@media (max-width: 600px) {
  .cookie-banner { padding: 16px; flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: center; }
}
