/* ============================
   CSS VARIABLES & BASE
   ============================ */
:root {
  --red: #e63329;
  --red-dark: #b71c1c;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #222222;
  --mid: #2e2e2e;
  --light-text: #adadad;
  --white: #f5f5f5;
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(230,51,41,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 680px;
  margin-bottom: 60px;
  line-height: 1.7;
}

.section-intro a { color: var(--red); text-decoration: underline; }

.inline-link { color: var(--red); text-decoration: underline; }

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(230,51,41,0.3);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,51,41,0.45);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,10,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--red);
  border: none;
  transition: background var(--transition), transform var(--transition);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230, 51, 41, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
    linear-gradient(to bottom, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

/* Animated film grain */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}

.hero-logo {
  width: clamp(160px, 25vw, 240px);
  margin: 0 auto 36px;
  animation: fadeInDown 0.9s ease 0.1s both;
  filter: drop-shadow(0 0 40px rgba(230,51,41,0.3));
  mix-blend-mode: lighten;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInDown 1s ease 0.2s both;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s ease 0.4s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollBounce 1.8s infinite;
}

/* ============================
   ABOUT
   ============================ */
.about-section { background: var(--dark2); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--light-text);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-text p strong { color: var(--white); }

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color var(--transition);
}
.info-card:hover { border-color: rgba(230,51,41,0.3); }

.info-icon { font-size: 1.4rem; }
.info-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--light-text); margin-bottom: 2px; }
.info-value { font-weight: 600; font-size: 0.95rem; }
.info-value a { color: var(--red); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }

.about-visual {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  object-fit: cover;
}

.main-img {
  width: 100%;
  height: 420px;
  box-shadow: var(--shadow);
}

.float-img {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 200px;
  height: 150px;
  border: 3px solid var(--dark2);
  box-shadow: var(--shadow);
}

/* ============================
   AWARDS
   ============================ */
.awards-section { background: var(--black); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.award-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.award-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.award-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.award-card:hover::before { opacity: 1; }

.award-card.gold {
  grid-column: span 3;
  background: linear-gradient(135deg, #1a1206 0%, #201809 100%);
  border-color: rgba(201,168,76,0.25);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px 20px;
  align-items: start;
}
.award-card.gold::before {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
}
.award-card.gold:hover { border-color: rgba(201,168,76,0.5); }

.award-card.silver { border-color: rgba(255,255,255,0.06); }
.award-card.silver:hover { border-color: rgba(230,51,41,0.3); }

.award-card.special {
  background: linear-gradient(135deg, var(--dark2), #1a0a0a);
  border-color: rgba(230,51,41,0.15);
}
.award-card.special:hover { border-color: rgba(230,51,41,0.4); }

.award-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.award-card.gold .award-icon {
  font-size: 2.5rem;
  margin-bottom: 0;
  grid-row: span 3;
  align-self: center;
}

.award-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 6px;
}
.award-card.gold .award-tier { color: var(--gold); margin-bottom: 0; }

.award-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.award-card.gold .award-name { font-size: 1.5rem; margin-bottom: 0; }

.award-desc {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.6;
}
.award-card.gold .award-desc { grid-column: 2 / 3; }

.award-ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
}
.award-ribbon.audience { background: var(--red); color: #fff; }

/* ============================
   RULES
   ============================ */
.rules-section { background: var(--dark2); }

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.rules-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rules-list li {
  padding-left: 20px;
  position: relative;
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.rules-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.rules-list a { color: var(--red); }

.rules-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--dark3);
  border: 1px solid rgba(230,51,41,0.2);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}
.rules-note strong { color: var(--white); }
.rules-note a { color: var(--red); }
.rules-note-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }

/* ============================
   GALLERY
   ============================ */
.gallery-section { background: var(--black); padding-top: 100px; padding-bottom: 0; }
.gallery-section .container { padding-bottom: 0; }

.gallery-full {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 400px;
  gap: 4px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item.large { grid-row: span 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

/* ============================
   VENUE
   ============================ */
.venue-section { background: var(--dark2); }

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.venue-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.venue-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}
.venue-detail strong { color: var(--white); display: block; margin-bottom: 2px; }
.venue-detail-icon { font-size: 1.3rem; margin-top: 2px; }

.directions-btn { margin-top: 8px; width: fit-content; }

.venue-map {
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark3);
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}

.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

/* ============================
   SUBMIT
   ============================ */
.submit-section { background: var(--black); }

.submit-layout { max-width: 820px; }

.submit-options { margin-bottom: 10px; }

.filmfreeway-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #1a1a1a, var(--dark3));
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-decoration: none;
  color: var(--white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.filmfreeway-btn:hover {
  border-color: rgba(230,51,41,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,51,41,0.15);
}
.ff-icon { font-size: 2rem; flex-shrink: 0; }
.ff-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 3px; }
.ff-sub { font-size: 0.82rem; color: var(--light-text); }
.ff-arrow { margin-left: auto; font-size: 1.4rem; color: var(--red); }

.submit-divider {
  text-align: center;
  position: relative;
  margin: 32px 0;
  color: var(--light-text);
  font-size: 0.85rem;
}
.submit-divider::before, .submit-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.submit-divider::before { left: 0; }
.submit-divider::after { right: 0; }
.submit-divider span {
  background: var(--black);
  padding: 0 16px;
  position: relative;
}

.film-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width { grid-column: span 2; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23adadad' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 40px; }
.form-group select option { background: #1a1a1a; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,51,41,0.12);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ff4444;
}

.char-count {
  font-size: 0.75rem;
  color: var(--light-text);
  text-align: right;
  margin-top: 4px;
}

.form-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
  border-radius: 4px;
}
.form-check label {
  font-size: 0.88rem;
  color: var(--light-text);
  cursor: pointer;
  line-height: 1.5;
}

.submit-btn {
  width: fit-content;
  font-size: 1.05rem;
  padding: 16px 40px;
}

.form-success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(46, 160, 67, 0.1);
  border: 1px solid rgba(46, 160, 67, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-size: 0.95rem;
  color: #8ddd96;
  line-height: 1.6;
  animation: fadeInDown 0.4s ease;
}
.success-icon { font-size: 1.2rem; }
.form-success a { color: #8ddd96; }

.form-error {
  background: rgba(230,51,41,0.1);
  border: 1px solid rgba(230,51,41,0.3);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: #ff8080;
  animation: fadeInDown 0.4s ease;
}
.form-error a { color: #ff8080; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-email {
  font-size: 0.9rem;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.footer-email:hover { text-decoration: underline; }

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Intersection observer reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .float-img { display: none; }
  .about-visual { order: -1; }
  .main-img { height: 320px; width: 100%; }

  .awards-grid { grid-template-columns: 1fr 1fr; }
  .award-card.gold { grid-column: span 2; grid-template-columns: auto 1fr auto; }

  .venue-grid { grid-template-columns: 1fr; }
  .venue-map { height: 360px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .gallery-full {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .gallery-item.large { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-intro { margin-bottom: 40px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    padding: 20px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
  }
  .hamburger { display: flex; }

  .awards-grid { grid-template-columns: 1fr; }
  .award-card.gold { grid-column: span 1; grid-template-columns: 1fr; }
  .award-card.gold .award-icon { font-size: 2rem; }
  .award-card.gold .award-desc { grid-column: 1; }

  .rules-grid { grid-template-columns: 1fr; gap: 32px; }

  .gallery-full {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item { height: 250px; }
  .gallery-item.large { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }

  .hero-actions { flex-direction: column; align-items: center; }

  .venue-map { height: 280px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 60px; }
  .hero-logo { width: 140px; }
  .award-ribbon { display: none; }
}
