/* ================================================
   POUSADA MAGIC CITY — Landing Page
   Paleta: #f68e34 (laranja), #c1dd01 (lima), branco, creme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --orange:   #f68e34;
  --lime:     #c1dd01;
  --white:    #ffffff;
  --cream:    #faf7f2;
  --dark:     #1a1a1a;
  --mid:      #444444;
  --light:    #888888;
  --border:   #e8e1d8;
  --radius-card: 14px;
  --radius-pill: 100px;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }

/* ---- Utility ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(246,142,52,0.35);
}
.btn-primary:hover {
  background: #e07c22;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246,142,52,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(26,26,26,0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: #e07c22 !important; color: var(--white) !important; }

.nav-back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-back-link:hover { color: rgba(255,255,255,0.9); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pousada-aerial.jpg');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,0.78) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(246,142,52,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 48px;
  margin-left: max(48px, calc((100vw - 1200px)/2));
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  height: 72px;
  width: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll .arrow { width: 1px; height: 32px; background: rgba(255,255,255,0.3); }

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: var(--dark);
  padding: 40px 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ============================
   SECTIONS COMMONS
   ============================ */
.section {
  padding: 100px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--dark);
}
.section-lead {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 640px;
  margin: 16px auto 0;
  font-weight: 300;
}

/* ============================
   SOBRE — 2-col grid
   ============================ */
.about-section {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(246,142,52,0.4);
  font-family: var(--font-sans);
  text-align: center;
}
.about-badge .big { font-family: var(--font-serif); font-size: 36px; font-weight: 700; display: block; line-height: 1; }
.about-badge .small { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

.checkin-strip {
  display: flex;
  gap: 24px;
  margin: 28px 0;
}
.checkin-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 14px 20px;
  flex: 1;
  box-shadow: var(--shadow-soft);
}
.checkin-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.checkin-info { display: flex; flex-direction: column; }
.checkin-info strong { font-size: 14px; font-weight: 600; color: var(--dark); }
.checkin-info span { font-size: 12px; color: var(--light); }

/* ============================
   DIFERENCIAIS / SUSTENTABILIDADE
   ============================ */
.diff-section {
  background: var(--white);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diff-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.diff-icon {
  width: 52px; height: 52px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.diff-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================
   QUARTOS — CARROSSEL
   ============================ */
.rooms-section {
  background: var(--dark);
  overflow: hidden;
}
.rooms-section .section-title { color: var(--white); }
.rooms-section .section-lead { color: rgba(255,255,255,0.55); }
.rooms-section .section-tag { color: var(--lime); }

.carousel-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.room-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #2a2a2a;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s;
}
.room-card:hover { transform: scale(1.02); }

.room-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.room-info {
  padding: 28px 24px;
}
.room-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}
.room-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.room-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 300;
}
.room-features {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.room-feat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); }
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.3); }

/* ============================
   COMODIDADES
   ============================ */
.amenities-section {
  background: var(--cream);
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.amenities-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.amenity-item:hover { border-color: var(--orange); box-shadow: var(--shadow-soft); }
.amenity-icon { font-size: 22px; flex-shrink: 0; }
.amenity-info strong { font-size: 14px; font-weight: 600; color: var(--dark); display: block; }
.amenity-info span { font-size: 12px; color: var(--light); }

/* ============================
   VILA VIKING — ÁREA EXCLUSIVA
   ============================ */
.viking-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Hero banner da Vila */
.viking-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.viking-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
.viking-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,1) 0%,
    rgba(26,26,26,0.55) 40%,
    rgba(26,26,26,0.2) 100%
  );
}
.viking-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px max(48px, calc((100vw - 1200px)/2 + 48px));
  width: 100%;
}
.viking-vip-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,221,1,0.15);
  border: 1px solid rgba(193,221,1,0.4);
  color: var(--lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.viking-hero-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.viking-hero-content h2 em { font-style: italic; color: var(--lime); }
.viking-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  font-weight: 300;
}

/* Main grid: texto + mosaico */
.viking-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 72px;
}
.viking-text .section-tag { color: var(--lime); }
.viking-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.viking-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 14px;
}
.viking-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.viking-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.viking-feat .v-dot {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mosaico de fotos */
.viking-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.viking-mosaic-big img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
  transition: transform 0.35s;
}
.viking-mosaic-big img:hover { transform: scale(1.02); }
.viking-mosaic-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.viking-mosaic-small img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
  transition: transform 0.35s;
}
.viking-mosaic-small img:hover { transform: scale(1.03); }

/* Galeria strip horizontal */
.viking-gallery-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.viking-gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.viking-gal-item {
  position: relative;
  overflow: hidden;
}
.viking-gal-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.viking-gal-item:hover img { transform: scale(1.06); }
.viking-gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 20px 20px;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
}

/* ============================
   PARQUE AQUÁTICO (Acesso livre)
   ============================ */
.park-section {
  background: var(--orange);
  padding: 80px 0;
}
.park-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.park-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.park-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}
.park-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ============================
   PAGAMENTO
   ============================ */
.payment-section {
  background: var(--white);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.payment-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.payment-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.payment-icon { font-size: 32px; margin-bottom: 14px; }
.payment-card h3 { font-family: var(--font-serif); font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.payment-card p { font-size: 13px; color: var(--mid); line-height: 1.6; font-weight: 300; }

/* ============================
   CTA FINAL
   ============================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(246,142,52,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-tag { color: var(--lime); }
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.cta-inner h2 em { font-style: italic; color: var(--orange); }
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-weight: 300;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #111;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand h3 span { color: var(--orange); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ============================
   FADE-IN SCROLL ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid, .amenities-grid, .viking-main-grid, .park-inner { grid-template-columns: 1fr; gap: 48px; }
  .viking-gallery-track { grid-template-columns: repeat(2, 1fr); }
  .viking-hero { height: 380px; }
  .viking-hero-content { padding: 40px 48px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .room-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 24px; margin-left: 0; }
  .section-inner { padding: 0 24px; }
  .section { padding: 72px 0; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .diff-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .room-card { flex: 0 0 calc(85% - 12px); }
  .amenities-list { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .checkin-strip { flex-direction: column; }
  .viking-gallery-track { grid-template-columns: repeat(2, 1fr); }
  .viking-hero { height: 320px; }
  .viking-hero-content { padding: 32px 24px; }
  .park-inner { padding: 0 24px; }
  .cta-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
}