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

:root {
  --green-950: #05231c;
  --green-900: #082d25;
  --green-800: #104337;
  --green-700: #1b5e4e;
  --green-600: #297a66;
  --green-100: #e2ede8;
  --green-50: #f1f7f4;
  
  --gold: #c89b46;
  --gold-hover: #ddb058;
  --gold-soft: #fbf5e6;
  --gold-muted: #e7cf9c;
  
  --terracotta: #c45b36;
  --terracotta-soft: #fbeee8;
  
  --ivory: #f8f6f0;
  --white: #ffffff;
  --surface-alt: #f0ede4;
  
  --ink: #13221d;
  --ink-light: #2c3e38;
  --muted: #5f7069;
  --line: #dcdecb;
  --line-light: rgba(255, 255, 255, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(8, 45, 37, 0.06);
  --shadow-md: 0 10px 30px rgba(8, 45, 37, 0.09);
  --shadow-lg: 0 20px 50px rgba(8, 45, 37, 0.16);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}

em {
  font-style: italic;
  color: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--green-950);
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 1rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  height: 80px;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 35, 28, 0.96);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  background: rgba(200, 155, 70, 0.08);
  transition: var(--transition);
}

.brand:hover .brand-mark {
  transform: rotate(5deg) scale(1.05);
  background: var(--gold);
  color: var(--green-950);
}

.header .glryb-brand-mark {
  width: 50px;
  height: 50px;
  padding: 2px;
  overflow: hidden;
  border-color: var(--gold-muted);
  background: var(--white);
}

.header .glryb-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.header .brand:hover .glryb-brand-mark {
  transform: scale(1.05);
  background: var(--white);
}

.header .brand strong {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.header .brand small {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}

.brand strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--white);
}

.brand small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold-muted);
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  margin: 0 auto;
}

.desktop-nav a {
  color: #d8e5df;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold);
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Language Picker */
.language-picker {
  display: flex;
  gap: 0.2rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
}

.language-picker button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  color: #cfded7;
  font-size: 0.72rem;
  font-weight: 700;
  transition: var(--transition);
}

.language-picker button span {
  font-size: 0.95rem;
}

.language-picker button.active {
  background: var(--gold);
  color: var(--green-950);
  box-shadow: var(--shadow-sm);
}

.itinerary-btn-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}

.itinerary-btn-header:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold);
  color: var(--gold);
}

.badge-count {
  background: var(--gold);
  color: var(--green-950);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-950);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  overflow-y: auto;
  border-bottom: 2px solid var(--gold);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-links a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(200, 155, 70, 0.15);
  color: var(--gold);
}

/* ==========================================================================
   Event Announcement Top Bar
   ========================================================================== */
.event-bar {
  min-height: 48px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.65rem 5vw;
  font-size: 0.75rem;
  color: var(--green-900);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.event-bar .badge {
  background: var(--green-900);
  color: var(--gold);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.event-bar p {
  margin: 0;
  color: var(--ink-light);
}

.event-bar strong {
  color: var(--green-900);
}

.event-bar a {
  font-weight: 700;
  color: var(--green-800);
  border-bottom: 1.5px solid var(--gold);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.event-bar a:hover {
  color: var(--gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: calc(100svh - 128px);
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  color: var(--white);
  background: 
    linear-gradient(270deg, 
      rgba(4, 24, 18, 0.95) 0%, 
      rgba(4, 24, 18, 0.85) 30%, 
      rgba(4, 24, 18, 0.35) 50%, 
      rgba(4, 24, 18, 0.0) 70%
    ), 
    url("assets/santa-cruz-hero.png?v=20260827-4") 15% center/cover no-repeat;
}

.hero-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--gold-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-700);
}

.eyebrow.terracotta {
  color: var(--terracotta);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero h1 em {
  display: block;
  margin-left: 0;
  color: var(--gold-soft);
}

.hero-copy {
  max-width: 460px;
  color: #e5f0ec;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: var(--green-950);
  box-shadow: 0 4px 16px rgba(200, 155, 70, 0.3);
}

.btn.primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 24px rgba(200, 155, 70, 0.45);
}

.btn.ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn.ink {
  background: var(--green-900);
  color: var(--white);
}

.btn.ink:hover {
  background: var(--green-800);
}

.btn.terracotta {
  background: var(--terracotta);
  color: var(--white);
}

.btn.terracotta:hover {
  background: #ad4b29;
}

/* Weather Floating Card */
.weather-card {
  position: absolute;
  right: 5vw;
  bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.3rem;
  background: rgba(5, 35, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  color: var(--white);
  z-index: 2;
}

.weather-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.weather-card strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  line-height: 1;
}

.weather-card small {
  display: block;
  color: #c4d7cf;
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c9d7d2;
  text-align: center;
  z-index: 2;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 26px;
  margin: 0.5rem auto 0;
  background: var(--gold);
  animation: pulseHeight 2s infinite ease-in-out;
}

@keyframes pulseHeight {
  0%, 100% { height: 16px; opacity: 0.4; }
  50% { height: 32px; opacity: 1; }
}

/* ==========================================================================
   Section Components & Structure
   ========================================================================== */
.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.25rem, 6vw, 6rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  line-height: 1;
}

.section-heading > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ==========================================================================
   Quick Cards Category Grid
   ========================================================================== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-card {
  min-height: 250px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.quick-card:after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.quick-card:hover:after {
  transform: scale(1.2);
}

.quick-card.green { background: linear-gradient(135deg, var(--green-950), var(--green-800)); }
.quick-card.clay  { background: linear-gradient(135deg, #a74724, var(--terracotta)); }
.quick-card.gold  { background: linear-gradient(135deg, #a47822, var(--gold)); }
.quick-card.blue  { background: linear-gradient(135deg, #1b4b45, #2f736a); }

.quick-icon {
  font-size: 2rem;
  color: var(--gold-soft);
}

.quick-card h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.quick-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.quick-card > b {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--white);
  transition: transform 0.2s ease;
}

.quick-card:hover > b {
  transform: translate(3px, -3px);
  color: var(--gold);
}

/* ==========================================================================
   Curated Essentials (Routes / Highlights)
   ========================================================================== */
.routes {
  background: var(--green-950);
  color: var(--white);
}

.routes .section-heading h2 {
  color: var(--white);
}

.routes .section-heading > p {
  color: #b8ccc4;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.place-card {
  height: 440px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.place-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 30, 25, 0.95) 0%, rgba(5, 30, 25, 0.45) 50%, rgba(5, 30, 25, 0.15) 100%);
  transition: background 0.3s ease;
}

.place-card:hover:before {
  background: linear-gradient(0deg, rgba(5, 30, 25, 0.98) 0%, rgba(5, 30, 25, 0.3) 50%, rgba(5, 30, 25, 0.05) 100%);
}

.place-card.cathedral { background-image: url("assets/places/turismo/catedral-metropolitana.jpg"); }
.place-card.lomas     { background-image: url("assets/places/turismo/lomas-de-arena.jpg"); }
.place-card.guembe    { background-image: url("assets/places/turismo/biocentro-guembe.png"); }

.place-number, .place-info {
  position: relative;
  z-index: 2;
}

.place-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  background: rgba(5, 35, 28, 0.5);
  backdrop-filter: blur(6px);
}

.place-info span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
}

.place-info h3 {
  font-size: 1.95rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.place-info p {
  color: #cfddd7;
  font-size: 0.85rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--gold-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   Flavors / Gastronomy Showcase
   ========================================================================== */
.flavor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  min-height: 600px;
}

.flavor-visual {
  position: relative;
  overflow: hidden;
  background-image: url("assets/places/restaurantes/casa-del-camba.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.flavor-visual:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 35, 28, 0.9) 0%, rgba(5, 35, 28, 0.2) 60%);
}

.flavor-badge {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.flavor-badge span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.flavor-badge h3 {
  font-size: 2.4rem;
  color: var(--white);
}

.flavor-badge p {
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.flavor-copy {
  padding: clamp(3.5rem, 7vw, 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flavor-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-top: 0.5rem;
}

.flavor-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.8rem 0 2rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.dish-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.dish-chips span {
  padding: 0.5rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-900);
  transition: var(--transition);
}

.dish-chips span:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--green-950);
}

/* ==========================================================================
   Practical Information
   ========================================================================== */
.practical {
  background: var(--ivory);
}

.practical-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.practical-header h2 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tips-grid article {
  padding: 2.2rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.tips-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.tips-grid .tip-icon {
  font-size: 2rem;
  color: var(--green-700);
  margin-bottom: 1.2rem;
  display: block;
}

.tips-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tips-grid p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.tips-grid a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Interactive Map CTA Section
   ========================================================================== */
.map-cta {
  min-height: 500px;
  padding: 5rem clamp(1.25rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--green-900);
  color: var(--white);
}

.map-cta h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  color: var(--white);
}

.map-cta p:not(.eyebrow) {
  color: #c2d6ce;
  margin: 1.5rem 0 2.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.map-art {
  height: 360px;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(5, 35, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-art i {
  position: absolute;
  border: 1px solid rgba(200, 155, 70, 0.25);
  border-radius: 50%;
  animation: pulseRipple 4s infinite ease-out;
}

.map-art i:nth-child(1) { width: 90px; height: 90px; animation-delay: 0s; }
.map-art i:nth-child(2) { width: 170px; height: 170px; animation-delay: 1s; }
.map-art i:nth-child(3) { width: 250px; height: 250px; animation-delay: 2s; }
.map-art i:nth-child(4) { width: 330px; height: 330px; animation-delay: 3s; }

@keyframes pulseRipple {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.map-art .pin {
  z-index: 2;
  color: var(--gold);
  font-size: 3.2rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.map-art b {
  position: absolute;
  margin-top: 90px;
  text-align: center;
  color: var(--gold-soft);
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  z-index: 2;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  min-height: 110px;
  padding: 2.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  background: #031713;
  color: #8fa69d;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  color: var(--white);
}

footer p {
  margin: 0;
}

.footer-copy-block {
  text-align: center;
}

footer .footer-credit {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

footer .footer-credit a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

footer .footer-credit a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

footer .back-to-top {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

footer .back-to-top:hover {
  background: var(--gold);
  color: var(--green-950);
  border-color: var(--gold);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .place-grid {
    grid-template-columns: 1fr;
  }
  .place-card {
    height: 360px;
  }
  .flavor {
    grid-template-columns: 1fr;
  }
  .flavor-visual {
    min-height: 400px;
  }
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .header {
    height: 72px;
    padding: 0 1.25rem;
  }
  .brand strong {
    font-size: 1.1rem;
  }
  .language-picker button b {
    display: none;
  }
  .itinerary-btn-header span:not(.badge-count) {
    display: none;
  }
  .event-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.85rem 1.25rem;
  }
  .hero {
    min-height: 720px;
    padding: 4.5rem 1.25rem 3.5rem;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(5, 35, 28, 0.45) 0%, rgba(5, 35, 28, 0.85) 45%, rgba(5, 35, 28, 0.98) 100%), url("assets/santa-cruz-hero.png?v=20260827-2") center top/cover no-repeat;
  }
  .hero h1 em {
    margin-left: 0;
  }
  .weather-card, .scroll-cue {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .section {
    padding: 4rem 1.25rem;
  }
  .quick-grid, .tips-grid {
    grid-template-columns: 1fr;
  }
  .flavor-copy {
    padding: 3.5rem 1.25rem;
  }
  .map-cta {
    padding: 3.5rem 1.25rem;
  }
  .map-art {
    height: 280px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
