/* ===== Custom Fonts ===== */
@font-face {
  font-family: 'SimsSans';
  src: url('../fonts/Loucos Lyne - thesimssansbold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'SimsSansSC';
  src: url('../fonts/Loucos Lyne - thesimssansboldsc.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

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

/* ===== Custom Properties ===== */
:root {
  --color-bg: #0d0a1a;
  --color-purple-deep: #1a0533;
  --color-blue-deep: #0d1b3e;
  --color-accent-purple: #6b2fa0;
  --color-accent-blue: #3a5bd4;
  --color-gold: #d4a843;
  --color-text: #f0e6ff;
  --color-text-muted: #a89bc2;
  --color-card-bg: rgba(255, 255, 255, 0.06);
  --color-card-border: rgba(255, 255, 255, 0.12);
  --font-heading: 'SimsSansSC', 'Cinzel', serif;
  --font-body: 'SimsSans', 'Raleway', sans-serif;
  --max-width: 1200px;
  --color-plumbob: #00b012;
  --house-grizzlegat: #B3490B;
  --house-hogsniffle: #60A16A;
  --house-rookwing: #3046C4;
  --house-sniveleye: #852461;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-purple-deep), var(--color-blue-deep), var(--color-purple-deep));
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #f0c96c;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 10, 26, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-card-border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 60px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-quiz-btn {
  border: 1px solid var(--color-gold);
  border-radius: 20px;
  padding: 0.3rem 1rem !important;
  color: var(--color-gold) !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-quiz-btn:hover {
  background: var(--color-gold);
  color: var(--color-bg) !important;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon-link {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.nav-icon-link:hover {
  color: var(--color-gold);
}

.nav-icon-link svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(107, 47, 160, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-coming-soon {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 20px;
  padding: 0.35em 1.2em;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.hero-banner {
  max-width: min(350px, 70%);
  margin-bottom: 6rem;
  position: relative;
  transform: translateX(-8%);
  filter: drop-shadow(0 0 30px rgba(107, 47, 160, 0.4));
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  text-decoration: none;
}

.btn-primary {
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 47, 160, 0); }
  50%       { box-shadow: 0 0 22px 6px rgba(107, 47, 160, 0.45); }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 47, 160, 0.5);
  animation: none;
  color: #fff;
}

/* ===== Sections (shared) ===== */
.section {
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  background: linear-gradient(135deg, #fff 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-divider {
  position: relative;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 3rem;
  border: none;
}

.section-divider::after {
  content: '✦';
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  font-size: 0.65rem;
  line-height: 1;
  opacity: 0.9;
}

/* ===== Welcome (Sul Sul) ===== */
.welcome-text {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
}

.pack-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pack-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pack-icon-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.pack-icon span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== Cards (shared) ===== */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 47, 160, 0.2);
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(107, 47, 160, 0.3), rgba(58, 91, 212, 0.3));
}

.degree-icon {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto 0.75rem;
}

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

.card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Houses ===== */
.house-card {
  border-top: 3px solid transparent;
  text-align: center;
}

.house-card--grizzlegat { border-top-color: var(--house-grizzlegat); }
.house-card--hogsniffle { border-top-color: var(--house-hogsniffle); }
.house-card--rookwing { border-top-color: var(--house-rookwing); }
.house-card--sniveleye { border-top-color: var(--house-sniveleye); }

.house-crest {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.house-crest img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.house-card--grizzlegat .house-crest { background: var(--house-grizzlegat); }
.house-card--hogsniffle .house-crest { background: var(--house-hogsniffle); }
.house-card--rookwing .house-crest { background: var(--house-rookwing); }
.house-card--sniveleye .house-crest { background: var(--house-sniveleye); }

.house-card h3 {
  font-size: 1.2rem;
}

.house-card p {
  font-size: 0.8rem;
  color: var(--color-text);
}

.house-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.trait-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
}

.house-card--grizzlegat .trait-tag {
  background: rgba(179, 73, 11, 0.18);
  border: 1px solid rgba(179, 73, 11, 0.4);
  color: #e8855a;
}

.house-card--hogsniffle .trait-tag {
  background: rgba(96, 161, 106, 0.18);
  border: 1px solid rgba(96, 161, 106, 0.4);
  color: #7ecf8a;
}

.house-card--rookwing .trait-tag {
  background: rgba(48, 70, 196, 0.18);
  border: 1px solid rgba(48, 70, 196, 0.4);
  color: #7b9cf5;
}

.house-card--sniveleye .trait-tag {
  background: rgba(133, 36, 97, 0.18);
  border: 1px solid rgba(133, 36, 97, 0.4);
  color: #d06aaa;
}

/* ===== Venues ===== */
.venue-card .card-img-placeholder {
  aspect-ratio: 16/9;
}

/* ===== Signup Strip ===== */
.signup-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid var(--color-card-border);
  padding: 0.6rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.signup-strip__text {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  margin: 0;
  white-space: nowrap;
}

.signup-strip__or {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.hero-signup__text {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.signup-strip__link {
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.signup-strip__link:hover { opacity: 0.75; }

.signup-strip__link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.signup-form__honeypot { display: none; }

.signup-form__input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-card-border);
  border-radius: 8px;
  padding: 0.35rem 0.9rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 220px;
  transition: border-color 0.2s;
}

.signup-form__input::placeholder { color: rgba(168, 155, 194, 0.5); }
.signup-form__input:focus { outline: none; border-color: var(--color-gold); }

.signup-form__btn {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold) !important;
  border: none;
  border-radius: 8px;
  padding: 0.35rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.signup-form__btn:hover { background: var(--color-gold); color: var(--color-bg); }

/* ===== Contact Form ===== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-card-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(168, 155, 194, 0.5);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.contact-form .btn-primary {
  align-self: center;
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--color-card-border);
  margin-top: 3rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.85rem;
}

/* ===== Quiz Page ===== */
.quiz-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.quiz-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.quiz-screen {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.quiz-screen.hidden {
  display: none;
}

.quiz-screen h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.quiz-poem {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-poem .stanza {
  margin-bottom: 1rem;
}

/* Progress */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-purple), var(--color-accent-blue));
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 0%;
}

.question-number {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

#question-text {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.answer-btn {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  color: var(--color-text);
  padding: 1.25rem 1rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  line-height: 1.4;
}

.answer-btn:hover {
  background: rgba(107, 47, 160, 0.2);
  border-color: var(--color-accent-purple);
  transform: translateY(-2px);
}

.answer-btn.selected {
  background: rgba(107, 47, 160, 0.35);
  border-color: var(--color-accent-purple);
}

/* Result */
.result-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin: 1.5rem auto 2rem;
  max-width: 450px;
  backdrop-filter: blur(10px);
}

.result-crest {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.result-crest img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.result-card h2 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.result-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.quiz-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-card-border);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.5;
  transition: opacity 0.3s;
  text-decoration: none;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator__chevron {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

.scroll-indicator__chevron::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: translateY(-6px);
  opacity: 0.45;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ===== Sparkles ===== */
@keyframes sparkle-float {
  0%   { transform: translateY(0) rotate(0deg) scale(0); opacity: 0; }
  15%  { opacity: 1; transform: translateY(-12px) rotate(20deg) scale(1); }
  85%  { opacity: 0.7; }
  100% { transform: translateY(-90px) rotate(200deg) scale(0.4); opacity: 0; }
}

.sparkle {
  position: absolute;
  pointer-events: none;
  color: var(--color-gold);
  animation: sparkle-float ease-in-out infinite;
  z-index: 1;
  user-select: none;
}

/* ===== Letter (Welcome) ===== */
.letter {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 6px;
  padding: 3rem 3.5rem;
  position: relative;
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.letter::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 3px;
  pointer-events: none;
}

.letter-seal {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  line-height: 1;
  display: block;
}

/* ===== Section Band ===== */
.section-band {
  background: rgba(5, 2, 20, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Feature Showcase ===== */
.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-row__image--stack {
  position: relative;
  padding: 0 1.5rem 1.5rem 0;
}

.feature-row__image--stack img:first-child {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
}

.feature-row__image--stack img:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 1.5rem);
  z-index: 1;
  opacity: 0.85;
}

.feature-row__image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--color-card-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-row__image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(107, 47, 160, 0.3);
}

.feature-row__content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-row__content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ===== Letter Screenshot ===== */
.letter-screenshot {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  margin: 1.5rem auto 0;
  border: 1px solid var(--color-card-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ===== Degree Screenshots ===== */
.degree-screenshots {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.degree-screenshots img {
  width: 340px;
  border-radius: 10px;
  border: 1px solid var(--color-card-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ===== Venue List ===== */
.venues-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
}

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.venue-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.venue-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107, 47, 160, 0.2);
}

.venue-item-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.venue-item h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.venue-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row--reverse {
    direction: ltr;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(13, 10, 26, 0.97);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--color-card-border);
  }

  .nav-links.open {
    display: flex;
  }

  .card-grid--4,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .answer-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .letter {
    padding: 2rem 1.5rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
  }
}
