﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/* ============================================================
   EXPEDI EXPLORE  New Zealand Signature Journeys
   Global Design System v1.0
   ============================================================ */

/*  Custom Properties  */
:root {
  --gold:          #5fb3a7;
  --gold-light:    #8fd2c9;
  --gold-pale:     rgba(95, 179, 167, 0.12);
  --gold-border:   rgba(95, 179, 167, 0.28);
  --gold-border-h: rgba(143, 210, 201, 0.58);

  --bg-void:       #07161f;
  --bg-primary:    #0d2631;
  --bg-card:       #123444;
  --bg-card-h:     #18485d;
  --bg-glass:      rgba(255,255,255,0.06);

  --text-1:        #f2f6f7;
  --text-2:        #bdd3da;
  --text-muted:    #89a5af;

  --crimson:       #f08b57;
  --crimson-soft:  rgba(240, 139, 87, 0.24);

  --border:        rgba(143, 210, 201, 0.22);
  --shadow:        0 10px 44px rgba(0,0,0,0.42);
  --shadow-gold:   0 0 48px rgba(95,179,167,0.18);

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Manrope', 'Segoe UI', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --ease:    cubic-bezier(.4,0,.2,1);
  --dur:     0.35s;
}

/*  Reset  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background-color: var(--bg-void);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/*  Scrollbar  */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/*  Layout Utilities  */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-card { background: var(--bg-card); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/*  Text Utilities  */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.h1, .h2, .h3 {
  font-family: var(--ff-serif);
  line-height: 1.12;
  color: var(--text-1);
}
.h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 600; }
.h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 600; }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 600; }
.h1 em, .h2 em { color: var(--gold); font-style: italic; }
.lead {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.78;
  max-width: 580px;
}

/*  Buttons  */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--r-sm);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0A0B10;
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,170,113,.28);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid rgba(240,237,230,.22);
}
.btn-outline:hover {
  border-color: var(--gold-border-h);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
  padding: 10px 22px;
  font-size: .8rem;
}
.btn-ghost:hover {
  background: var(--gold-pale);
  border-color: var(--gold-border-h);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: .8rem; }

/*  Age Gate  */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-void);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.ag-wrap { max-width: 500px; width: 100%; text-align: center; }

.ag-logo {
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  color: var(--gold);
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 6px;
}
.ag-tagline {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 44px;
}
.ag-divider {
  width: 48px; height: 1px;
  background: var(--gold-border);
  margin: 0 auto 36px;
}
.ag-title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--text-1);
  margin-bottom: 10px;
}
.ag-body {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ag-checklist {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 30px;
}
.ag-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-2); font-size: .845rem; padding: 5px 0; line-height: 1.55;
}
.ag-checklist li::before { content: ''; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.ag-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.ag-legal { font-size: .71rem; color: var(--text-muted); line-height: 1.55; }
.ag-legal a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color var(--dur); }
.ag-legal a:hover { border-color: var(--gold); }

/*  Header  */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 28px;
  transition: background var(--dur), backdrop-filter var(--dur);
}
.header.scrolled {
  background: rgba(10,12,31,.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: var(--ff-serif);
  font-size: 1.35rem; font-weight: 600;
  color: var(--gold); letter-spacing: .1em; line-height: 1;
}
.logo-sub {
  font-size: .57rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--text-muted);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 15px;
  font-size: .82rem; font-weight: 500; letter-spacing: .03em;
  color: var(--text-2); border-radius: var(--r-sm);
  transition: var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text-1); background: var(--bg-glass); }
.nav-link.active { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; align-items: center;
  gap: 2px; font-size: .74rem;
}
.lang-switch button {
  padding: 4px 7px; font-size: .74rem; font-weight: 500;
  color: var(--text-muted); border-radius: 3px; transition: color var(--dur);
}
.lang-switch button.active, .lang-switch button:hover { color: var(--gold); }
.lang-switch span { color: var(--border); }
.hamburger {
  display: none; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-2);
  border-radius: var(--r-sm); transition: var(--dur);
}
.hamburger:hover { background: var(--bg-glass); color: var(--text-1); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg-primary);
  padding: 88px 28px 40px;
  gap: 4px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 15px 18px;
  font-size: .95rem; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: var(--dur) var(--ease);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 26px; }
.mobile-nav-cta { margin-top: 24px; }

/*  Hero  */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transform: scale(1.06);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06) translateX(0); }
  to   { transform: scale(1.12) translateX(-1%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(201,170,113,.055) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 15%, rgba(140,27,47,.07) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,12,31,.40) 0%, rgba(10,12,31,.62) 45%, rgba(10,12,31,.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1300px;
  margin: 0 auto; padding: 0 28px;
  padding-top: 72px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,170,113,.09);
  border: 1px solid var(--gold-border);
  border-radius: 100px; padding: 6px 18px;
  font-size: .69rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  animation: fadeUp .7s var(--ease) both;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  font-weight: 600; line-height: 1.07;
  color: var(--text-1); max-width: 800px;
  margin-bottom: 22px;
  animation: fadeUp .7s .14s var(--ease) both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1.06rem; color: var(--text-2);
  max-width: 520px; line-height: 1.78;
  margin-bottom: 38px;
  animation: fadeUp .7s .28s var(--ease) both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .7s .42s var(--ease) both;
}
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: .62rem;
  letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 1.6s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { opacity:1; transform: scaleY(0); transform-origin: top; }
  100% { opacity:0; transform: scaleY(1); transform-origin: top; }
}

/*  Stats Bar  */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-cell {
  text-align: center; padding: 16px 24px;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-lbl {
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 500;
}

/*  Hotel Cards  */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.pill {
  padding: 8px 20px; border-radius: 100px;
  font-size: .8rem; font-weight: 500;
  border: 1px solid var(--border); color: var(--text-2);
  background: transparent; cursor: pointer;
  transition: var(--dur) var(--ease);
}
.pill:hover, .pill.active {
  border-color: var(--gold-border-h); color: var(--gold);
  background: var(--gold-pale);
}

.hotels-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.hotel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden; display: block;
  transition: var(--dur) var(--ease);
  color: inherit;
}
.hotel-card:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-5px);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.hotel-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.hotel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}
.hotel-card:hover .hotel-img img { transform: scale(1.07); }
.hotel-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(7,8,13,.84);
  border: 1px solid var(--gold-border);
  border-radius: 100px; padding: 4px 12px;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); backdrop-filter: blur(8px);
}
.stars-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(7,8,13,.84);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 10px;
  font-size: .62rem; color: var(--gold);
  display: flex; gap: 2px;
  backdrop-filter: blur(8px);
}
.hotel-body { padding: 22px; }
.hotel-city {
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px; margin-bottom: 7px;
}
.hotel-city i { color: var(--gold); font-size: .62rem; }
.hotel-name {
  font-family: var(--ff-serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--text-1); line-height: 1.28; margin-bottom: 10px;
}
.hotel-desc {
  font-size: .84rem; color: var(--text-2);
  line-height: 1.65; margin-bottom: 18px;
}
.tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .68rem; color: var(--text-2);
}
.tag i { color: var(--gold); font-size: .62rem; }
.hotel-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.hotel-tables { font-size: .75rem; color: var(--text-muted); }
.hotel-tables strong { color: var(--gold); font-family: var(--ff-serif); font-size: 1rem; }
.card-link {
  font-size: .78rem; font-weight: 500; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--dur);
}
.card-link i { font-size: .68rem; transition: transform .3s var(--ease); }
.hotel-card:hover .card-link i { transform: translateX(4px); }

/*  Events Section  */
.event-tabs {
  display: inline-flex; gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 5px; margin-bottom: 44px;
}
.etab {
  padding: 10px 26px;
  font-size: .82rem; font-weight: 500;
  color: var(--text-muted); border-radius: var(--r-sm);
  cursor: pointer; transition: var(--dur) var(--ease);
}
.etab:hover { color: var(--text-2); }
.etab.active {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.event-panel { display: none; }
.event-panel.active { display: block; }
.events-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.ev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px; position: relative;
  overflow: hidden; cursor: pointer;
  transition: var(--dur) var(--ease);
}
.ev-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--dur);
}
.ev-card:hover { border-color: var(--gold-border-h); transform: translateY(-4px); }
.ev-card:hover::after { opacity: 1; }
.ev-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale); border: 1px solid var(--border);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--gold); margin-bottom: 22px;
}
.ev-title {
  font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--text-1); margin-bottom: 10px;
}
.ev-desc {
  font-size: .84rem; color: var(--text-2);
  line-height: 1.65; margin-bottom: 22px;
}
.ev-link {
  font-size: .78rem; font-weight: 500; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}
.ev-link i { transition: transform .3s var(--ease); }
.ev-card:hover .ev-link i { transform: translateX(5px); }

/* Upcoming events list */
.upcoming-list { display: flex; flex-direction: column; gap: 14px; }
.upcoming-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px 26px;
  display: grid; grid-template-columns: 68px 1fr auto;
  gap: 22px; align-items: center;
  transition: var(--dur) var(--ease);
}
.upcoming-item:hover { border-color: var(--gold-border-h); transform: translateX(4px); }
.up-date { text-align: center; }
.up-day {
  font-family: var(--ff-serif); font-size: 1.9rem;
  font-weight: 600; color: var(--gold); line-height: 1;
}
.up-month {
  font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-muted);
}
.up-name { font-size: .92rem; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.up-venue {
  font-size: .78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.up-venue i { color: var(--gold); font-size: .62rem; }

/*  Feature Cards  */
.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.feat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 24px;
  transition: var(--dur) var(--ease);
}
.feat-card:hover { border-color: var(--gold-border-h); }
.feat-icon { font-size: 1.9rem; color: var(--gold); margin-bottom: 18px; }
.feat-title {
  font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 600;
  color: var(--text-1); margin-bottom: 10px;
}
.feat-desc { font-size: .84rem; color: var(--text-2); line-height: 1.65; }

/*  Responsible Travel Banner  */
.rg-banner {
  background: linear-gradient(135deg, #201122 0%, #141230 100%);
  border: 1px solid rgba(140,27,47,.35);
  border-radius: var(--r-xl); padding: 44px 48px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 36px; align-items: center;
}
.rg-title {
  font-family: var(--ff-serif); font-size: 1.45rem;
  color: var(--text-1); margin-bottom: 10px;
}
.rg-body { font-size: .87rem; color: var(--text-2); line-height: 1.72; max-width: 620px; }
.rg-body strong { color: var(--gold); }
.rg-side { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; min-width: 190px; }
.age-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(140,27,47,.2); border: 1px solid rgba(140,27,47,.4);
  border-radius: var(--r-md); padding: 12px 18px;
  font-size: .82rem; font-weight: 600; color: #EE7070;
}
.age-badge strong { font-family: var(--ff-serif); font-size: 1.35rem; line-height: 1; }

/*  Contact / CTA Section  */
.cta-section {
  background: linear-gradient(135deg, rgba(201,170,113,.065) 0%, transparent 55%);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 64px; text-align: center;
}
.cta-section .h2 { margin-bottom: 16px; }
.cta-section .lead { margin: 0 auto 36px; }

/*  Inquiry Form  */
.form-inq { max-width: 740px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-grp.full { grid-column: 1/-1; }
.form-lbl { font-size: .78rem; font-weight: 500; color: var(--text-2); letter-spacing: .03em; }
.form-ctrl {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 15px;
  font-family: var(--ff-sans); font-size: .9rem; color: var(--text-1);
  transition: var(--dur); outline: none; width: 100%;
}
.form-ctrl:focus { border-color: var(--gold); background: var(--bg-card-h); }
.form-ctrl::placeholder { color: var(--text-muted); }
select.form-ctrl {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M5 6L0 0h10z' fill='%23C9AA71'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
  padding-right: 38px; cursor: pointer;
}
textarea.form-ctrl { resize: vertical; min-height: 110px; }

/*  Footer  */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { font-family: var(--ff-serif); font-size: 1.65rem; color: var(--gold); font-weight: 600; letter-spacing: .1em; margin-bottom: 14px; }
.footer-about { font-size: .84rem; color: var(--text-2); line-height: 1.7; max-width: 270px; margin-bottom: 22px; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .81rem; color: var(--text-2); margin-bottom: 9px;
}
.footer-contact-row i { color: var(--gold); font-size: .72rem; width: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-col-title {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-lnk {
  font-size: .84rem; color: var(--text-2);
  display: flex; align-items: center; gap: 7px;
  transition: var(--dur) var(--ease);
}
.footer-lnk:hover { color: var(--gold); padding-left: 4px; }
.footer-legal { padding: 24px 0 40px; }
.footer-legal-row {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.footer-rg {
  display: flex; align-items: center; gap: 8px;
  background: rgba(140,27,47,.15); border: 1px solid rgba(140,27,47,.3);
  border-radius: var(--r-sm); padding: 5px 12px;
  font-size: .69rem; font-weight: 700; color: #EE7070; letter-spacing: .05em;
}
.footer-legal-text { font-size: .7rem; color: var(--text-muted); line-height: 1.65; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.footer-legal-link { font-size: .7rem; color: var(--text-muted); transition: color var(--dur); }
.footer-legal-link:hover { color: var(--gold); }
.helpline-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: var(--r-sm); padding: 5px 12px;
  font-size: .69rem; font-weight: 600; color: var(--gold);
}

/*  Cookie Banner  */
.cookie-bar {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 800;
  max-width: 940px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 28px;
  display: flex; align-items: center; gap: 22px;
  box-shadow: var(--shadow);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.cookie-bar.hidden { opacity: 0; transform: translateY(14px); pointer-events: none; }
.cookie-txt { flex: 1; font-size: .8rem; color: var(--text-2); line-height: 1.6; }
.cookie-txt a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color var(--dur); }
.cookie-txt a:hover { border-color: var(--gold); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/*  Hotel Detail Page  */
.detail-hero {
  position: relative; height: 78vh; min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.detail-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,31,1) 0%, rgba(10,12,31,.5) 45%, rgba(10,12,31,.18) 100%);
}
.detail-hero-content {
  position: relative; z-index: 1;
  max-width: 1300px; width: 100%; margin: 0 auto;
  padding: 0 28px 52px;
}
.gallery-strip {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px; margin-bottom: 56px;
}
.gallery-strip > *:first-child { grid-row: 1/3; border-radius: var(--r-md) 0 0 var(--r-md); }
.gallery-strip > *:nth-child(2) { border-radius: 0 var(--r-md) 0 0; }
.gallery-strip > *:nth-child(4) { border-radius: 0 0 0 0; }
.gallery-strip > *:last-child { border-radius: 0 0 var(--r-md) 0; }
.gallery-strip .g-img {
  width: 100%; height: 100%; object-fit: cover;
  border: 1px solid var(--border); overflow: hidden;
}
.gallery-strip .g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-strip .g-img:hover img { transform: scale(1.05); }
.detail-layout {
  display: grid; grid-template-columns: 1fr 370px; gap: 44px;
  align-items: start;
}
.amenity-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 22px;
}
.amenity-item {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-sm); font-size: .8rem; color: var(--text-2);
}
.amenity-item i { color: var(--gold); width: 15px; text-align: center; font-size: .72rem; }
.rooms-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px;
}
.room-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: var(--dur) var(--ease);
}
.room-card:hover { border-color: var(--gold-border-h); transform: translateY(-3px); }
.room-img { aspect-ratio: 4/3; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-body { padding: 18px; }
.room-name {
  font-family: var(--ff-serif); font-size: .98rem;
  font-weight: 600; color: var(--text-1); margin-bottom: 8px;
}
.room-feats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.room-feat { font-size: .72rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.room-feat i { color: var(--gold); font-size: .65rem; }

/* Booking sidebar */
.booking-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
  position: sticky; top: 90px;
}
.booking-title {
  font-family: var(--ff-serif); font-size: 1.26rem;
  color: var(--text-1); margin-bottom: 6px;
}
.booking-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }

/*  Responsible Travel Page  */
.rg-page-hero {
  padding: 150px 0 72px;
  background: linear-gradient(180deg, rgba(140,27,47,.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.rg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rg-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
}
.rg-card-icon { font-size: 1.9rem; margin-bottom: 18px; }
.rg-card-title {
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--text-1); margin-bottom: 10px;
}
.rg-card-text { font-size: .84rem; color: var(--text-2); line-height: 1.7; }
.rg-hotline {
  background: linear-gradient(135deg, #140910 0%, #0F0A16 100%);
  border: 1px solid rgba(140,27,47,.35);
  border-radius: var(--r-xl); padding: 44px;
  text-align: center;
}
.hotline-num {
  font-family: var(--ff-serif); font-size: 2.4rem;
  font-weight: 600; color: var(--gold); margin: 12px 0 8px;
}
.hotline-label { font-size: .8rem; color: var(--text-2); letter-spacing: .04em; }

/*  About Page  */
.about-hero { padding: 150px 0 72px; border-bottom: 1px solid var(--border); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--dur) var(--ease);
}
.team-card:hover { border-color: var(--gold-border-h); transform: translateY(-4px); }
.team-img { aspect-ratio: 4/5; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 22px; }
.team-name { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--text-1); margin-bottom: 4px; }
.team-role { font-size: .76rem; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }

/*  Animation  */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/*  Responsive  */
@media (max-width: 1150px) {
  .hotels-grid, .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .gallery-strip { grid-template-columns: 2fr 1fr; grid-template-rows: repeat(3,200px); }
  .gallery-strip > *:first-child { grid-row: 1/3; }
}
@media (max-width: 880px) {
  .header-right .btn, .nav { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .events-grid, .ev-card { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .rg-banner { grid-template-columns: 1fr; }
  .rg-side { flex-direction: row; align-items: center; min-width: unset; }
  .cta-section { padding: 44px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .rg-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .hotels-grid, .events-grid, .features-grid, .amenity-grid, .rooms-grid, .rg-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .ag-actions { flex-direction: column; }
  .ag-actions .btn { justify-content: center; }
  .rg-banner { padding: 26px; }
  .upcoming-item { grid-template-columns: 58px 1fr; }
  .upcoming-item .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .gallery-strip { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gallery-strip > *:first-child { grid-row: auto; border-radius: var(--r-md); }
  .gallery-strip .g-img { height: 200px; border-radius: var(--r-md) !important; }
}
