/* ============================================================
   LORAI RESTAURANT — STYLES
   Premium warm-ivory light theme
   ============================================================ */

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

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --ivory:        #FAF8F3;
  --ivory-dark:   #F2EDE2;
  --ivory-border: #E8E0CE;
  --sand:         #D4C5A0;
  --gold:         #D4732A;
  --gold-light:   #F0954A;
  --gold-dim:     #A05020;
  --charcoal:     #1C1A16;
  --ink:          #2E2B24;
  --muted:        #7A7264;
  --muted-light:  #A89E8C;
  --discord:      #5865F2;
  --discord-dark: #4752C4;
  --red:          #C0392B;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:       8px;
  --radius-lg:    16px;
  --radius-pill:  999px;

  --shadow-sm:    0 2px 8px rgba(28,26,22,0.08);
  --shadow-md:    0 8px 32px rgba(28,26,22,0.12);
  --shadow-lg:    0 24px 64px rgba(28,26,22,0.16);

  --transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-dark); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }

/* ─── NOISE TEXTURE OVERLAY ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,248,243,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--ivory-border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--charcoal) !important;
  color: var(--ivory) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,154,60,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(196,154,60,0.06) 0%, transparent 60%),
    var(--ivory);
}
.hero-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(196,154,60,0.1);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseRing 6s ease-in-out infinite;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(196,154,60,0.07);
  border-radius: 50%;
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(196,154,60,0.05);
  border-radius: 50%;
}
@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.7; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounceScroll 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted-light), transparent);
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--ivory-border);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,0.35);
}
.btn-discord {
  background: var(--discord);
  color: #fff;
}
.btn-discord:hover {
  background: var(--discord-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.35);
}
.btn-discord:disabled, .btn-discord.disabled {
  background: var(--sand);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}
.btn-roblox {
  background: #00B06F;
  color: #fff;
}
.btn-roblox:hover {
  background: #00c97f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,176,111,0.35);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── SECTION BASE ───────────────────────────────────────── */
.section {
  padding: 120px 48px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.divider {
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 24px auto 0;
}

/* ─── ABOUT / FEATURES GRID ──────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ivory-border);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--ivory);
  padding: 48px 36px;
  transition: var(--transition);
}
.feature-card:hover { background: var(--ivory-dark); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(196,154,60,0.15), rgba(196,154,60,0.05));
  border: 1px solid rgba(196,154,60,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.feature-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── ROLES SECTION ──────────────────────────────────────── */
/* ─── MENU GRID ──────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.menu-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.menu-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ivory-dark);
}
.menu-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-photo { transform: scale(1.05); }
.menu-info {
  padding: 20px;
}
.menu-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.menu-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .menu-grid { grid-template-columns: 1fr; }
}
/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--charcoal);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(196,154,60,0.12) 0%, transparent 70%);
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}
.cta-band-title em { font-style: italic; color: var(--gold-light); }
.cta-band-sub {
  color: rgba(250,248,243,0.5);
  font-size: 1rem;
  margin-bottom: 40px;
  position: relative;
  font-weight: 300;
}
.cta-band .btn { position: relative; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.page-hero {
  padding: 160px 48px 80px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(196,154,60,0.06), transparent);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 20px;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.about-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}
.about-body p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-pull {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 48px 0;
  line-height: 1.4;
  font-weight: 300;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ivory-border);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 80px 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stat-box {
  background: var(--ivory);
  padding: 48px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── APPLY PAGE ─────────────────────────────────────────── */
.apply-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 48px 100px;
}
.apply-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  width: 100%;
  max-width: 680px;
  box-shadow: var(--shadow-lg);
}
.apply-card-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.apply-card-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 300;
}

/* form */
.form-group {
  margin-bottom: 28px;
  position: relative;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.info-tooltip {
  position: relative;
  display: inline-flex;
}
.info-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ivory-border);
  border: 1px solid var(--sand);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  transition: var(--transition);
  font-family: var(--font-body);
  font-style: normal;
}
.info-icon:hover { background: var(--gold); color: var(--ivory); border-color: var(--gold); }
.tooltip-box {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--ivory);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  width: 240px;
  line-height: 1.5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}
.tooltip-box::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--charcoal);
}
.info-tooltip:hover .tooltip-box { opacity: 1; }

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--ivory-dark);
  border: 1.5px solid var(--ivory-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-light); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7264' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-divider {
  height: 1px;
  background: var(--ivory-border);
  margin: 36px 0;
}
.discord-auth-section { text-align: center; }
.discord-auth-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 300;
}
.discord-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(88,101,242,0.08);
  border: 1px solid rgba(88,101,242,0.2);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  margin-bottom: 20px;
}
.discord-user-badge img {
  width: 32px; height: 32px;
  border-radius: 50%;
}
.discord-user-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--discord);
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.9rem;
}

/* success state */
.submit-success {
  text-align: center;
  padding: 48px 0 24px;
  display: none;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,154,60,0.2), rgba(196,154,60,0.05));
  border: 1.5px solid rgba(196,154,60,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}
.success-icon svg { width: 28px; height: 28px; }
.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.success-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto;
}
.success-text a {
  color: var(--discord);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.success-text a:hover { border-bottom-color: var(--discord); }

/* ─── SUPPORT PAGE ───────────────────────────────────────── */
.support-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 48px 100px;
}
.support-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  width: 100%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background:
    linear-gradient(to bottom, rgba(28,18,8,0.82), rgba(18,10,4,0.93)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='wood'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015 0.7' numOctaves='4' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23wood)' opacity='1'/%3E%3C/svg%3E");
  background-size: cover, 400px 400px;
  background-color: #1C0E06;
  padding: 48px 48px 32px;
  color: rgba(250,235,210,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250,235,210,0.1);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(250,235,210,0.9);
  margin-bottom: 0;
}
.footer-brand-name span { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,235,210,0.7);
  margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(250,235,210,0.38);
  transition: color 0.2s ease;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250,235,210,0.3);
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,248,243,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,243,0.4);
  transition: var(--transition);
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social-link svg { width: 15px; height: 15px; }

/* ─── PAGE TRANSITIONS ───────────────────────────────────── */
.page-fade {
  animation: pageFadeIn 0.5s ease forwards;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 400;
  box-shadow: var(--shadow-lg);
  z-index: 9998;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
}
.toast.toast-show { transform: translateY(0); opacity: 1; }
.toast.toast-success { border-left: 3px solid var(--gold); }
.toast.toast-error { border-left: 3px solid var(--red); }

/* ─── MOBILE NAV OVERLAY ─────────────────────────────────── */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,26,22,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-mobile-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100vh;
  background: var(--ivory);
  z-index: 999;
  padding: 96px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
.nav-mobile-menu a {
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-menu.open { right: 0; }
.nav-mobile-overlay.open { display: block; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 120px 24px 80px; }
  .section { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; margin: 60px 24px; }
  .apply-wrapper, .support-wrapper { padding: 120px 16px 80px; }
  .apply-card, .support-card { padding: 32px 24px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .cta-band { padding: 72px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .about-body { padding: 60px 24px 80px; }
}
@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-ornament { width: 320px; height: 320px; }
  .footer-links { flex-direction: column; gap: 24px; }
}
