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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #0f0f0f;
  --bg-elevated: #141414;
  --bg-card: #111111;
  
  --gold-primary: #C8A44E;
  --gold-light: #E8D48B;
  --gold-dark: #9A7B2F;
  --gold-glow: rgba(200, 164, 78, 0.25);
  --gold-subtle: rgba(200, 164, 78, 0.08);
  
  --text-primary: #FAFAF9;
  --text-secondary: #8A8A8A;
  --text-tertiary: #555555;
  --text-accent: var(--gold-primary);
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(200, 164, 78, 0.2);
  
  --glass-bg: rgba(15, 15, 15, 0.6);
  --glass-bg-hover: rgba(20, 20, 20, 0.8);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(5rem, 12vh, 10rem);
  --container-width: 1340px;
  --container-padding: clamp(1.25rem, 5vw, 3rem);
  
  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  overscroll-behavior: none;
}

::selection {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

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

ul { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-dark { background: var(--bg-secondary); }
.section-darker { background: var(--bg-tertiary); }

.text-center { text-align: center; }

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
  font-weight: 300;
}

/* Center aligned variants */
.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-header-center .section-eyebrow::before { display: none; }
.section-header-center .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
}

/* ===== GLASS PANELS ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.glass-card {
  background: linear-gradient(165deg, rgba(25,25,25,0.8) 0%, rgba(10,10,10,0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(200,164,78,0.15) 0%, transparent 40%, transparent 60%, rgba(200,164,78,0.08) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    0 0 40px var(--gold-subtle),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.glass-card:hover::before { opacity: 1; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-smooth);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.logo .accent {
  color: var(--gold-primary);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  margin-left: 1.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  padding: 0.8rem 2rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-align: center;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-gold:hover {
  box-shadow: 0 8px 40px rgba(200, 164, 78, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.15) 50%,
    transparent 60%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.7s var(--ease-out-expo);
}

.btn-gold:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 0.9rem;
}

/* ===== CARD GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== INFO CARD ===== */
.info-card {
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
}

.info-card .card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200, 164, 78, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.info-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  margin: 2rem 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* ===== PILL TAG ===== */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.pill:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-secondary);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-col p, .footer-col-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--gold-subtle);
}



/* ===== CATEGORY SHOWCASE ===== */
.categories-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: linear-gradient(165deg, rgba(25,25,25,0.8) 0%, rgba(10,10,10,0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.8rem);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s var(--ease-out-expo);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(200,164,78,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 50px var(--gold-subtle),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.category-card:hover::before { opacity: 1; }

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  transition: all 0.5s var(--ease-out-expo);
}

.category-card:hover .category-icon {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.category-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200, 164, 78, 0.08);
  line-height: 1;
  transition: color 0.5s ease;
}

.category-card:hover .category-number {
  color: rgba(200, 164, 78, 0.15);
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.category-card:hover h3 { color: var(--gold-primary); }

.category-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.category-cta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: all 0.4s ease;
}

.category-card:hover .category-cta {
  color: var(--gold-primary);
  transform: translateX(6px);
}

.category-card-special {
  border-color: var(--border-gold);
}

.category-card-special::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* ===== GALLERY CAROUSEL ===== */
.gallery-carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-carousel {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0 40px; /* Space for arrows */
}

.gallery-track {
  display: flex;
  transition: transform 0.6s var(--ease-out-expo);
  /* Width set dynamically by JS based on item count */
}

.gallery-carousel .gallery-item {
  /* Flex set dynamically by JS to 100/itemsPerView % */
  aspect-ratio: 4/3;
  padding: 0 0.6rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-carousel .gallery-item img {
  border-radius: var(--radius-md);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--gold-subtle);
  border-color: var(--border-gold);
  color: var(--gold-primary);
}

.prev-btn { left: -10px; }
.next-btn { right: -10px; }

.gallery-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(200,164,78,0.3);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  background: rgba(200,164,78,0.08);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(20px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out-expo);
}

.lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
}

.lightbox-nav:hover {
  background: var(--gold-subtle);
  border-color: var(--border-gold);
  color: var(--gold-primary);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ===== NOMINATION PERKS ===== */
.nomination-perks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.perk-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-top: 2px;
}

.perk-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.perk-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .categories-showcase { grid-template-columns: repeat(2, 1fr); }
  /* JS handles gallery columns */
}

@media (max-width: 768px) {
  .logo { font-size: 1.3rem; }
  .hamburger { display: flex; flex-shrink: 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-nav { display: flex; }
  
  .mobile-nav a {
    font-size: 1.6rem;
    padding: 0.6rem 2rem;
  }
  
  .cards-grid,
  .cards-grid-2,
  .cards-grid-4 { grid-template-columns: 1fr; }
  
  .categories-showcase { grid-template-columns: 1fr; }
  
  .gallery-carousel { margin: 0 30px; }
  /* JS handles gallery columns */
  .prev-btn { left: -5px; }
  .next-btn { right: -5px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }
  
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lightbox-prev { left: 0.8rem; }
  .lightbox-next { right: 0.8rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  



  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
}
