/* ============================================
   153rd IPU Assembly – Arusha, Tanzania 2026
   ============================================ */

:root {
  --c-navy: #0B1D3A;
  --c-navy-light: #142D54;
  --c-gold: #C8982E;
  --c-gold-light: #E2B94B;
  --c-gold-pale: #F5ECD4;
  --c-teal: #00A6B6;
  --c-teal-dark: #008C9A;
  --c-green: #2D6A4F;
  --c-green-light: #40916C;
  --c-white: #FFFFFF;
  --c-off-white: #F8F6F1;
  --c-cream: #F0EDE4;
  --c-text: #2C2C2C;
  --c-text-light: #5A5A5A;
  --c-border: #D9D4CA;

  --ff-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Source Sans 3', 'Segoe UI', Helvetica, Arial, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-5xl: 4rem;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --spacing-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 29, 58, 0.1);
  --shadow-lg: 0 8px 30px rgba(11, 29, 58, 0.12);
  --shadow-xl: 0 16px 50px rgba(11, 29, 58, 0.15);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;

  --header-height: 72px;
  --max-width: 1200px;
}

/* ============ RESET & BASE ============ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-teal-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--c-gold);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 400;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============ ANIMATIONS ============ */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ HEADER / NAVIGATION ============ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background-color var(--transition-base),
              box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  background-color: rgba(11, 29, 58, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-event {
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.nav-link {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--c-gold-light);
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-ipu-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-ipu-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.nav-ipu-logo:hover img {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--c-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 29, 58, 0.75) 0%,
    rgba(11, 29, 58, 0.55) 40%,
    rgba(11, 29, 58, 0.70) 70%,
    rgba(11, 29, 58, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-md) var(--spacing-3xl);
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-hashtag {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  padding: 0.3rem 1rem;
  border: 1px solid rgba(200, 152, 46, 0.35);
  border-radius: 20px;
}

.hero-title {
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
}

.hero-title sup {
  font-size: 0.5em;
  top: -0.6em;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  margin: var(--spacing-md) auto;
  border-radius: 2px;
}

.hero-date {
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  color: var(--c-gold-light);
  margin-bottom: var(--spacing-xs);
}

.hero-venue {
  font-size: var(--fs-md);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
}

.hero-intro {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.hero-intro a {
  color: var(--c-gold-light);
  border-bottom: 1px solid rgba(200, 152, 46, 0.4);
}

.hero-intro a:hover {
  color: var(--c-white);
  border-bottom-color: var(--c-white);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============ COMMON SECTION STYLES ============ */

.section {
  padding: var(--spacing-3xl) 0;
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.section-label--light {
  color: var(--c-gold-light);
}

.section-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  color: var(--c-navy);
  margin-bottom: var(--spacing-md);
}

.section-title--light {
  color: var(--c-white);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-text-light);
  max-width: 750px;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

/* ============ WELCOME SECTION ============ */

.section--welcome {
  background-color: var(--c-white);
}

.welcome-content {
  position: relative;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: var(--spacing-xl);
  align-items: start;
}

.welcome-speaker {
  margin: 0;
}

.welcome-speaker-photo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--c-gold-pale);
}

.welcome-text p {
  margin-bottom: var(--spacing-md);
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--c-text);
}

.welcome-text em {
  font-family: var(--ff-heading);
  font-size: 1.05em;
  color: var(--c-navy);
}

.welcome-signoff {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--c-gold);
  font-size: var(--fs-md);
}

.welcome-signoff strong {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-navy);
  display: block;
  margin-bottom: 0.2em;
}

/* ============ THEME SECTION ============ */

.section--theme {
  position: relative;
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.theme-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.theme-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 29, 58, 0.92) 0%,
    rgba(20, 45, 84, 0.88) 50%,
    rgba(11, 29, 58, 0.92) 100%
  );
}

.theme-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.theme-quote {
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-xl), 3.5vw, var(--fs-3xl));
  font-style: italic;
  color: var(--c-gold-light);
  line-height: 1.4;
  max-width: 850px;
  margin: var(--spacing-lg) auto;
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(200, 152, 46, 0.25);
  border-bottom: 1px solid rgba(200, 152, 46, 0.25);
}

.theme-description {
  max-width: 750px;
  margin: 0 auto;
}

.theme-description p {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: var(--spacing-md);
}

/* ============ VENUE SECTION ============ */

.section--venue {
  background-color: var(--c-off-white);
}

.venue-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-sm);
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 0.3em;
}

.stat-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-sm);
  background: linear-gradient(transparent, rgba(11, 29, 58, 0.8));
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ============ PRACTICAL INFORMATION ============ */

.section--practical {
  background-color: var(--c-white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.info-card {
  background: var(--c-off-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid var(--c-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.info-card--with-image {
  padding: 0;
  overflow: hidden;
}

.info-card-image {
  height: 200px;
  overflow: hidden;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-navy);
  color: var(--c-gold-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
}

.info-card--with-image .info-card-icon,
.info-card--with-image .info-card-title,
.info-card--with-image p,
.info-card--with-image ul {
  margin-left: var(--spacing-lg);
  margin-right: var(--spacing-lg);
}

.info-card--with-image p:last-child,
.info-card--with-image ul:last-child {
  padding-bottom: var(--spacing-lg);
}

.info-card-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-navy);
  margin-bottom: var(--spacing-sm);
}

.info-card p {
  font-size: var(--fs-sm);
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: var(--spacing-sm);
}

.info-card ul {
  margin-bottom: var(--spacing-sm);
  padding-left: 0;
}

.info-card li {
  position: relative;
  padding-left: 1.2em;
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--c-text);
}

.info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
}

.info-card a {
  color: var(--c-teal-dark);
  font-weight: 600;
}

.info-card a:hover {
  color: var(--c-gold);
}

/* ============ VISIT ARUSHA ============ */

.section--visit {
  background-color: var(--c-off-white);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.visit-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.visit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.visit-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.visit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.visit-card:hover .visit-card-image img {
  transform: scale(1.06);
}

.visit-card-body {
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
}

.visit-card-body h3 {
  font-size: var(--fs-xl);
  color: var(--c-navy);
  margin-bottom: var(--spacing-xs);
}

.visit-card-body p {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.75;
}

.visit-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--spacing-3xl) var(--spacing-xl);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.visit-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 106, 79, 0.88) 0%,
    rgba(11, 29, 58, 0.85) 100%
  );
}

.visit-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.visit-banner-content h3 {
  font-size: var(--fs-3xl);
  color: var(--c-white);
  margin-bottom: var(--spacing-md);
}

.visit-banner-content p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

/* ============ FOOTER ============ */

.site-footer {
  background-color: var(--c-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--spacing-2xl) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--c-gold-light);
  margin-bottom: var(--spacing-sm);
}

.footer-description {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 380px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--c-gold-light);
}

.footer-contact a {
  color: var(--c-gold-light);
  font-weight: 600;
  font-size: var(--fs-md);
}

.footer-contact a:hover {
  color: var(--c-white);
}

.footer-hashtag {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: var(--c-gold);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}

.social-link:hover {
  background-color: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-navy);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  margin-top: var(--spacing-lg);
  font-size: var(--fs-xs);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--c-gold-light);
}

/* ============ RESPONSIVE: TABLET ============ */

@media (max-width: 1024px) {
  .venue-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* ============ RESPONSIVE: MOBILE ============ */

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-lg) var(--spacing-lg);
    background-color: var(--c-navy);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 0;
    font-size: var(--fs-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
  }

  .nav-ipu-logo {
    display: none;
  }

  .logo-event {
    height: 36px;
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }

  .hero-content {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
  }

  .welcome-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  .welcome-speaker-photo {
    max-width: 260px;
    margin: 0 auto;
  }

  .welcome-text {
    width: 100%;
  }

  .venue-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .stat-number {
    font-size: var(--fs-2xl);
  }

  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-caption {
    transform: translateY(0);
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .info-card--with-image .info-card-icon,
  .info-card--with-image .info-card-title,
  .info-card--with-image p,
  .info-card--with-image ul {
    margin-left: var(--spacing-md);
    margin-right: var(--spacing-md);
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-banner {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--fs-2xl);
  }

  .hero-venue {
    font-size: var(--fs-sm);
  }

  .theme-quote {
    font-size: var(--fs-lg);
    padding: var(--spacing-md) 0;
  }
}
