/* ════════════════════════════════════════════════
   SUN FEST 2026 · LỄ HỘI MẶT TRỜI · BÀ NÀ HILLS
   Typography system:
   - Headers (serif display):  Playfair Display
   - Body & details (sans):    Be Vietnam Pro
   - Labels / small caps:      Be Vietnam Pro (semibold)
   All fonts fully support Vietnamese diacritics.
   ════════════════════════════════════════════════ */

:root {
  /* ── Brand palette (bright, match key visual) ── */
  --sun-yellow: #FFC83D;
  --sun-gold: #F4A52A;
  --sun-amber: #E58A1E;
  --sun-pale: #FFF0B8;
  --sun-cream: #FFF9E6;

  --sunset-orange: #FF8A3D;
  --sunset-coral: #FF6B4A;

  --royal-red: #C52B2C;
  --royal-burgundy: #961E1B;
  --royal-wine: #7A1717;

  --sky-blush: #FFE5C2;
  --sky-peach: #FFD89B;

  --leaf-green: #7FA542;
  --leaf-deep: #4E6B2B;

  --ink: #2B1508;
  --ink-soft: #5A3A1E;
  --ivory: #FFFBF0;
  --paper: #FFF7E4;

  /* ── Font families ── */
  --font-display: '1FTV Crucial', '1FTV Crucial', serif;
  --font-body: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--sun-cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* ════════════════════════════════════════════════
   LANGUAGE TOGGLE
   ════════════════════════════════════════════════ */
.lang-toggle {
  position: fixed; top: 20px; right: 20px; z-index: 1000;
  background: var(--royal-burgundy);
  border: 2px solid var(--sun-yellow);
  border-radius: 100px;
  padding: 3px;
  display: flex; gap: 0;
  box-shadow: 0 4px 16px rgba(150, 30, 27, 0.3);
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 14px;
  border: none;
  background: transparent;
  color: var(--sun-pale);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
}
.lang-btn.active {
  background: var(--sun-yellow);
  color: var(--royal-burgundy);
}

/* ════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(150, 30, 27, 0.15), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s;
}
nav.scrolled {
  background: var(--royal-burgundy);
  padding: 10px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
nav.scrolled .nav-crest-text,
nav.scrolled .nav-menu a { color: var(--sun-pale); }

.nav-crest {
  display: flex; align-items: center; gap: 10px;
  color: var(--royal-burgundy);
  transition: color 0.3s;
}
.nav-crest-icon { width: 32px; height: 32px; }
.nav-crest-text {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--royal-burgundy);
  transition: color 0.3s;
}
.nav-crest-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 600;
  letter-spacing: 2px;
  margin-top: 3px;
  opacity: 0.75;
}
.nav-menu {
  display: flex; gap: 28px; list-style: none;
}
.nav-menu a {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--royal-burgundy);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -5px; left: 50%;
  width: 0; height: 2px;
  background: var(--sun-yellow);
  transition: all 0.3s;
}
.nav-menu a:hover::after { width: 100%; left: 0; }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 50% 10%, #FFE08A 0%, #FFC83D 20%, #FF9A3D 45%, #E85D2F 70%, #961E1B 100%);
}

/* Radiating rays */
.hero-rays {
  position: absolute;
  top: 15%; left: 50%;
  width: 200vmax; height: 200vmax;
  transform: translate(-50%, -50%);
  animation: slowRotate 90s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}
@keyframes slowRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-rays::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 248, 200, 0.4) 0deg 2deg,
    transparent 2deg 11deg
  );
}

/* Sun orb */
.hero-sun {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, #FFEFA8 0%, #FFC83D 40%, #F4A52A 75%, #E58A1E 100%);
  box-shadow:
    0 0 60px rgba(255, 200, 61, 0.6),
    0 0 120px rgba(255, 200, 61, 0.4),
    0 0 200px rgba(255, 150, 61, 0.3);
  animation: sunPulse 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes sunPulse {
  0%, 100% {
    box-shadow: 0 0 60px rgba(255, 200, 61, 0.6), 0 0 120px rgba(255, 200, 61, 0.4), 0 0 200px rgba(255, 150, 61, 0.3);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 80px rgba(255, 220, 100, 0.8), 0 0 160px rgba(255, 200, 61, 0.5), 0 0 260px rgba(255, 150, 61, 0.4);
    transform: translateX(-50%) scale(1.04);
  }
}

/* Ornate arch frame */
.hero-arch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 960px);
  height: calc(100vh - 40px);
  pointer-events: none;
  z-index: 3;
}
.hero-arch svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 16px rgba(150, 30, 27, 0.25));
}

/* Floating sunflowers */
.sunflower-deco {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  animation: floatSway 5s ease-in-out infinite;
}
@keyframes floatSway {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}
.sf-1 { width: 90px; height: 90px; bottom: 8%; left: 3%; animation-delay: 0s; }
.sf-2 { width: 60px; height: 60px; bottom: 22%; left: 8%; animation-delay: 0.8s; }
.sf-3 { width: 110px; height: 110px; bottom: 4%; right: 2%; animation-delay: 1.5s; }
.sf-4 { width: 55px; height: 55px; bottom: 28%; right: 9%; animation-delay: 2.2s; }

/* Hero content */
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 160px 24px 60px;
  max-width: 900px;
}

.hero-banner {
  display: inline-block;
  background: var(--royal-burgundy);
  color: var(--sun-pale);
  padding: 10px 28px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  padding-bottom: 22px;
  animation: dropDown 0.8s ease 0.1s both;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--royal-wine);
  margin-bottom: 10px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 160px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  color: var(--royal-burgundy);
  letter-spacing: -1px;
  text-shadow:
    3px 3px 0 var(--sun-yellow),
    6px 6px 20px rgba(150, 30, 27, 0.2);
  animation: fadeUp 1s ease 0.5s both;
}

.hero-year {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease 0.7s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--royal-burgundy);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.9s both;
}
.slogan-dot {
  width: 6px; height: 6px;
  background: var(--sun-gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-dates {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--royal-burgundy);
  color: var(--sun-pale);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  border: 2px solid var(--sun-yellow);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 1.1s both;
}
.hero-dates::before, .hero-dates::after {
  content: '☀';
  color: var(--sun-yellow);
  font-size: 14px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 1.3s both;
}

/* Hero primary CTA buttons */
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 1.5s both;
}

.btn-royal {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  position: relative;
}
.btn-royal.primary {
  background: var(--royal-burgundy);
  color: var(--sun-pale);
  border: 2px solid var(--sun-yellow);
  box-shadow: 0 4px 0 var(--royal-wine), 0 8px 20px rgba(150, 30, 27, 0.25);
}
.btn-royal.primary:hover {
  transform: translateY(-2px);
  background: var(--royal-red);
  box-shadow: 0 6px 0 var(--royal-wine), 0 10px 24px rgba(150, 30, 27, 0.3);
}
.btn-royal.secondary {
  background: var(--sun-yellow);
  color: var(--royal-burgundy);
  border: 2px solid var(--royal-burgundy);
  box-shadow: 0 4px 0 var(--sun-amber);
}
.btn-royal.secondary:hover {
  transform: translateY(-2px);
  background: var(--sun-pale);
  box-shadow: 0 6px 0 var(--sun-amber);
}

/* ── Quick-access nav pills (visible on first screen, prominent on mobile) ── */
.hero-quicknav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease 1.7s both;
}
.quicknav-pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--royal-burgundy);
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--royal-burgundy);
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.quicknav-pill:hover {
  background: var(--royal-burgundy);
  color: var(--sun-pale);
  transform: translateY(-2px);
}
.quicknav-pill .pill-icon { font-size: 14px; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: var(--royal-burgundy);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 5;
  opacity: 0.8;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ════════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
   ════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--royal-burgundy);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase;
}
.section-label::before, .section-label::after {
  content: '✦';
  color: var(--sun-gold);
  font-size: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--royal-burgundy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-title-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--royal-red);
  display: block;
  font-size: 1.05em;
  letter-spacing: 0;
  margin-top: 4px;
}
.section-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
}
.section-body p { margin-bottom: 16px; }

/* ════════════════════════════════════════════════
   STORY
   ════════════════════════════════════════════════ */
.story {
  padding: 120px 48px 100px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--sun-yellow) 0px 24px,
    var(--royal-burgundy) 24px 28px,
    var(--sun-yellow) 28px 52px,
    var(--sun-gold) 52px 56px
  );
}
.story-container {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative; z-index: 2;
}

.story-visual {
  position: relative;
  aspect-ratio: 3/4;
}
.story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 10px solid var(--sun-yellow);
  box-shadow:
    inset 0 0 60px rgba(150, 30, 27, 0.15),
    0 20px 50px rgba(150, 30, 27, 0.25);
}
.story-corner {
  position: absolute;
  width: 50px; height: 50px;
  background: var(--sun-yellow);
  clip-path: polygon(0 0, 100% 0, 100% 28%, 28% 28%, 28% 100%, 0 100%);
  z-index: 2;
}
.story-corner.tl { top: -8px; left: -8px; }
.story-corner.tr { top: -8px; right: -8px; transform: scaleX(-1); }
.story-corner.bl { bottom: -8px; left: -8px; transform: scaleY(-1); }
.story-corner.br { bottom: -8px; right: -8px; transform: scale(-1); }

.story-highlight {
  margin: 22px 0;
  padding: 20px 24px;
  background: var(--sun-pale);
  border-left: 4px solid var(--sun-gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--royal-burgundy);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════
   ACTIVITIES (6 ĐẠI TIỆC)
   ════════════════════════════════════════════════ */
.activities {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--paper), var(--sun-cream));
  position: relative;
}
.activities-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.activities-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--royal-red);
  font-weight: 500;
  margin-top: 8px;
}

.activities-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.activity {
  background: var(--ivory);
  border: 2px solid var(--sun-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex; flex-direction: column;
}
.activity:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(150, 30, 27, 0.15);
  border-color: var(--royal-burgundy);
}

.activity.span-3 { grid-column: span 3; }
.activity.span-2 { grid-column: span 2; }
.activity.feature { grid-column: span 3; }

.activity-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sun-pale);
}
.activity-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.activity:hover .activity-image img { transform: scale(1.05); }

.activity-content {
  padding: 28px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}

.activity-meta {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 12px;
}
.activity-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: var(--sun-gold);
  line-height: 1;
}
.activity-emoji {
  font-size: 28px;
  line-height: 1;
}

.activity-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--royal-burgundy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.activity.feature .activity-title {
  color: var(--royal-red);
  font-size: 22px;
}

.activity-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--sunset-coral);
  margin-bottom: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.activity-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.activity-items {
  list-style: none;
  margin-top: auto;
}
.activity-items li {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 0 8px 20px;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px dashed rgba(244, 165, 42, 0.25);
}
.activity-items li:last-child { border-bottom: none; }
.activity-items li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--sun-gold);
  font-size: 9px;
  top: 12px;
}
.activity-items li strong {
  color: var(--royal-burgundy);
  font-weight: 700;
}

/* Feature card special styling */
.activity.feature {
  background: linear-gradient(180deg, var(--royal-burgundy), var(--royal-red));
  border-color: var(--sun-yellow);
}
.activity.feature .activity-image {
  background: var(--royal-wine);
}
.activity.feature .activity-content { color: var(--ivory); }
.activity.feature .activity-title {
  color: var(--sun-pale);
  font-size: 24px;
}
.activity.feature .activity-number { color: var(--sun-yellow); }
.activity.feature .activity-quote { color: var(--sun-yellow); }
.activity.feature .activity-desc {
  color: var(--ivory);
  opacity: 0.92;
  font-size: 15px;
}
.activity.feature .activity-items li {
  border-bottom-color: rgba(255, 200, 61, 0.25);
}
.activity.feature .activity-items li::before { color: var(--sun-yellow); }
.activity.feature .activity-items li strong { color: var(--sun-yellow); }

/* ════════════════════════════════════════════════
   UNIQUE PRODUCTS
   ════════════════════════════════════════════════ */
.unique {
  padding: 120px 48px;
  background:
    radial-gradient(ellipse at top, var(--sunset-orange) 0%, var(--royal-red) 60%, var(--royal-burgundy) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.unique::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 180%; aspect-ratio: 1;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 248, 200, 0.06) 0deg 3deg,
    transparent 3deg 14deg
  );
  animation: slowRotate 180s linear infinite;
  pointer-events: none;
}
.unique-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.unique-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}
.unique-header .section-label { color: var(--sun-yellow); }
.unique-header .section-label::before,
.unique-header .section-label::after { color: var(--sun-yellow); }
.unique-header .section-title { color: var(--sun-pale); }
.unique-header .section-title-accent { color: var(--sun-yellow); }
.unique-header .section-body {
  color: var(--ivory);
  opacity: 0.92;
  max-width: 660px;
  margin: 0 auto;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.unique-card {
  background: rgba(255, 251, 240, 0.08);
  border: 1px solid rgba(255, 200, 61, 0.35);
  padding: 0;
  position: relative;
  transition: all 0.4s;
  backdrop-filter: blur(4px);
  overflow: hidden;
}

/* ── Free Flow Beer card accent ── */
.unique-card--beer {
  border-color: rgba(255, 160, 30, 0.5);
  background: rgba(255, 200, 61, 0.06);
}
.unique-card--beer:hover {
  border-color: #F4A52A;
  box-shadow: 0 8px 32px rgba(244, 165, 42, 0.25);
}
.unique-card--beer .unique-badge {
  background: #F4A52A;
  color: #2A0A0A;
  letter-spacing: 1px;
}

.unique-card:hover {
  border-color: var(--sun-yellow);
  transform: translateY(-4px);
}
.unique-image {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.unique-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.unique-card:hover .unique-image img { transform: scale(1.04); }

.unique-content { padding: 28px 28px 30px; }

.unique-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--royal-burgundy);
  background: var(--sun-yellow);
  padding: 5px 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.unique-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--sun-pale);
  margin-bottom: 12px;
  line-height: 1.25;
}
.unique-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.9;
  margin-bottom: 16px;
}
.unique-highlight {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--sun-yellow);
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 200, 61, 0.25);
}

/* ════════════════════════════════════════════════
   KINGDOMS & LANDMARKS
   ════════════════════════════════════════════════ */
.kingdoms {
  padding: 120px 48px;
  background: var(--sun-cream);
  position: relative;
}
.kingdoms-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.kingdoms-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--royal-red);
}
.kingdoms-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kingdom {
  background: var(--ivory);
  border: 2px solid var(--sun-gold);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}
.kingdom:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(150, 30, 27, 0.15);
}
.kingdom-image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.kingdom-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.kingdom:hover .kingdom-image img { transform: scale(1.05); }

.kingdom-content {
  padding: 22px 20px 24px;
  text-align: center;
}
.kingdom-char {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--sun-amber);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.kingdom-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--royal-burgundy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.kingdom-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Landmarks */
.landmarks {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, var(--sun-pale), var(--sky-peach));
  border: 2px dashed var(--sun-gold);
}
.landmarks-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--royal-burgundy);
  margin-bottom: 24px;
  text-align: center;
}
.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.landmark {
  background: var(--ivory);
  overflow: hidden;
  transition: transform 0.3s;
}
.landmark:hover { transform: translateY(-3px); }
.landmark-image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.landmark-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.landmark-content { padding: 16px 18px; }
.landmark-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--royal-burgundy);
  margin-bottom: 6px;
}
.landmark-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ════════════════════════════════════════════════
   TICKETS
   ════════════════════════════════════════════════ */
.tickets {
  padding: 120px 48px;
  background: var(--paper);
  position: relative;
}
.tickets-inner { max-width: 1200px; margin: 0 auto; }
.tickets-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.ticket {
  background: var(--ivory);
  border: 3px solid var(--sun-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.ticket::before, .ticket::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  background: var(--paper);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.ticket::before { top: -14px; }
.ticket::after { bottom: -14px; }
.ticket:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(150, 30, 27, 0.18);
}

.ticket.featured {
  background: linear-gradient(135deg, var(--royal-burgundy), var(--royal-red));
  color: var(--ivory);
  border-color: var(--sun-yellow);
}

.ticket-header {
  padding: 30px 32px 22px;
  text-align: center;
  border-bottom: 2px dashed var(--sun-gold);
  position: relative;
}
.ticket.featured .ticket-header { border-bottom-color: var(--sun-yellow); }

.ticket-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--sun-yellow);
  color: var(--royal-burgundy);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 11px;
  text-transform: uppercase;
}

.ticket-icon { font-size: 40px; display: block; margin-bottom: 12px; }

.ticket-tier {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--royal-burgundy);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ticket.featured .ticket-tier { color: var(--sun-yellow); }

.ticket-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--royal-burgundy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.ticket.featured .ticket-name { color: var(--sun-pale); }

.ticket-deal {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--sunset-coral);
  font-weight: 500;
}
.ticket.featured .ticket-deal { color: var(--sun-yellow); }
.ticket-deal strong {
  font-weight: 800;
  font-size: 17px;
  font-style: normal;
}

.ticket-body { padding: 24px 32px 30px; }

.ticket-features {
  list-style: none;
  margin-bottom: 22px;
}
.ticket-features li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 0;
  padding-left: 26px;
  position: relative;
  border-bottom: 1px solid rgba(244, 165, 42, 0.2);
}
.ticket-features li:last-child { border-bottom: none; }
.ticket-features li::before {
  content: '☀';
  position: absolute; left: 0;
  color: var(--sun-gold);
  font-size: 14px;
  top: 10px;
}
.ticket-features li strong { color: var(--royal-burgundy); font-weight: 700; }
.ticket.featured .ticket-features li::before { color: var(--sun-yellow); }
.ticket.featured .ticket-features li { border-bottom-color: rgba(255, 200, 61, 0.2); }
.ticket.featured .ticket-features li strong { color: var(--sun-yellow); }

.ticket-btn {
  width: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px;
  background: var(--royal-burgundy);
  color: var(--sun-pale);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.ticket-btn:hover { background: var(--royal-red); }
.ticket.featured .ticket-btn {
  background: var(--sun-yellow);
  color: var(--royal-burgundy);
}
.ticket.featured .ticket-btn:hover { background: var(--sun-pale); }

.tickets-cta { text-align: center; margin-top: 40px; }
.tickets-cta a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--royal-burgundy);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--sun-gold);
  transition: all 0.3s;
}
.tickets-cta a:hover {
  color: var(--royal-red);
  border-bottom-color: var(--royal-red);
}

/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
.contact {
  padding: 110px 48px 70px;
  background: radial-gradient(ellipse at 50% 0%, var(--sun-yellow) 0%, var(--sunset-orange) 40%, var(--royal-red) 100%);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 160%; aspect-ratio: 1;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 248, 200, 0.08) 0deg 3deg,
    transparent 3deg 14deg
  );
  animation: slowRotate 180s linear infinite;
}
.contact-inner {
  position: relative; z-index: 2;
  max-width: 960px; margin: 0 auto;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(44px, 7vw, 80px);
  color: var(--sun-pale);
  margin-bottom: 12px;
  text-shadow: 3px 3px 0 var(--royal-burgundy);
  letter-spacing: -1px;
}
.contact-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ivory);
  margin-bottom: 48px;
  opacity: 0.95;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.contact-card {
  background: rgba(43, 21, 8, 0.22);
  border: 1px solid rgba(255, 200, 61, 0.35);
  padding: 30px 22px;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.contact-card:hover {
  background: rgba(43, 21, 8, 0.35);
  border-color: var(--sun-yellow);
  transform: translateY(-3px);
}
.contact-icon {
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  color: var(--sun-yellow);
}
.contact-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--sun-yellow);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.contact-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--sun-pale);
  line-height: 1.5;
}
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--sun-yellow); }

.contact-social {
  display: flex; gap: 14px; justify-content: center;
  margin-bottom: 40px;
}
.social-link {
  width: 44px; height: 44px;
  border: 2px solid var(--sun-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sun-yellow);
  transition: all 0.3s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--sun-yellow);
  color: var(--royal-burgundy);
  transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; }

.contact-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--sun-pale);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: var(--sun-pale);
  padding: 28px 48px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ════════════════════════════════════════════════
   FLOATING MOBILE CTA (always visible bottom on mobile)
   ════════════════════════════════════════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 99;
  background: var(--royal-burgundy);
  color: var(--sun-pale);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(150, 30, 27, 0.4);
  border: 2px solid var(--sun-yellow);
}
.mobile-cta:hover { background: var(--royal-red); }

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .activity.span-3, .activity.span-2, .activity.feature { grid-column: span 1; }
  .unique-grid { grid-template-columns: repeat(2, 1fr); }
  .kingdoms-grid { grid-template-columns: 1fr 1fr; }
  .landmarks-grid { grid-template-columns: 1fr; gap: 18px; }
  .tickets-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════════════════════ */
@media (max-width: 700px) {
  nav { padding: 12px 16px; }
  nav.scrolled { padding: 8px 16px; }
  .nav-menu { display: none; }

  .lang-toggle {
    top: 14px; right: 14px;
    padding: 2px;
  }
  .lang-btn { padding: 6px 11px; font-size: 10px; }

  /* Mobile hero: show quick nav buttons prominently ABOVE the fold */
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-arch { display: none; }
  .hero-sun { width: 100px; height: 100px; top: 6%; }

  .hero-content { padding: 120px 16px 40px; }
  .hero-banner { font-size: 9px; padding: 8px 18px 18px; letter-spacing: 1px; }
  .hero-label { font-size: 12px; letter-spacing: 2px; }
  .hero-title { font-size: 56px; }
  .hero-year { font-size: 18px; letter-spacing: 5px; }
  .hero-slogan { font-size: 16px; gap: 10px; }
  .hero-dates { font-size: 12px; padding: 10px 20px; letter-spacing: 1px; }
  .hero-tagline { font-size: 15px; }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 24px;
  }
  .btn-royal {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 12px;
  }

  /* Quick-nav: prominent grid on mobile */
  .hero-quicknav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 360px;
  }
  .quicknav-pill {
    font-size: 12px;
    padding: 12px 8px;
    justify-content: center;
  }

  .sunflower-deco { display: none; }
  .scroll-hint { display: none; }

  .story { padding: 70px 20px; }
  .story-container { grid-template-columns: 1fr; gap: 36px; }
  .story-visual { max-width: 320px; margin: 0 auto; }

  .activities { padding: 70px 16px; }
  .activities-grid { grid-template-columns: 1fr; gap: 18px; }
  .activity-content { padding: 22px 20px; }

  .unique { padding: 70px 20px; }
  .unique-content { padding: 24px 22px 28px; }

  .kingdoms { padding: 70px 16px; }
  .kingdoms-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .kingdom-content { padding: 16px 14px 18px; }
  .kingdom-name { font-size: 15px; }
  .kingdom-desc { font-size: 12px; }

  .landmarks { padding: 24px 20px; margin-top: 40px; }
  .landmarks-grid { grid-template-columns: 1fr; }

  .tickets { padding: 70px 16px; }
  .ticket-body { padding: 20px 24px 26px; }

  .contact { padding: 70px 20px 120px; }
  .contact-grid { grid-template-columns: 1fr; }

  footer { padding: 20px 16px 80px; }

  /* Show mobile CTA */
  .mobile-cta { display: block; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-title { font-size: 48px; }
  .hero-quicknav { grid-template-columns: 1fr; }
}

/* Tablet landscape fine-tune */
@media (min-width: 701px) and (max-width: 900px) {
  .nav-menu { gap: 18px; }
  .nav-menu a { font-size: 10px; }
}
