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

:root {
  --bg-deep: #08070A;
  --bg-card: #111015;
  --bg-card-hover: #19171E;
  --bg-surface: #22222c;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dim: #A07D3A;
  --cream: #F2EDE4;
  --cream-dim: #B8B0A2;
  --white: #FAFAF8;
  --text-primary: #E8E4DD;
  --text-secondary: #8E897F;
  --text-muted: #5C584F;
  --border: rgba(212, 168, 83, 0.12);
  --border-strong: rgba(212, 168, 83, 0.25);
  --shadow: 0 4px 40px rgba(0,0,0,0.5);
  --radius: 2px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; background: var(--bg-deep); }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 120px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  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='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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(8, 7, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  line-height: 1;
}
.nav-logo-accent {
  color: var(--gold);
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-logo-accent {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-link-active { color: var(--gold) !important; }
.nav-link-active::after { width: 100% !important; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold);
  color: #000 !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.menu-toggle,
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span,
.mobile-toggle span {
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,83,0.25);
}
.btn-primary svg { width: 14px; height: 14px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid var(--border-strong);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-secondary svg { width: 14px; height: 14px; }

/* ===== HERO BADGE ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-strong);
  background: rgba(212,168,83,0.06);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 7, 10, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ===== FOOTER (Multi-column) ===== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  display: block;
  margin-bottom: 16px;
}
.footer-logo-accent {
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-walkins {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-book-btn {
  padding: 12px 24px;
  font-size: 0.7rem;
}
.footer-col {}
.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-links a:hover { color: var(--gold); }
.footer-col-links svg {
  flex-shrink: 0;
}
.footer-hours {}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.footer-hours-row span:first-child {
  color: var(--text-secondary);
}
.footer-hours-row span:last-child {
  color: var(--cream);
  font-weight: 500;
}
.footer-hours-row.closed span:last-child {
  color: var(--text-muted);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-copy {
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

/* ===== ACCESSIBILITY ===== */
.skip-link{
  position:absolute; left:-999px; top:10px;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 10px 14px;
  z-index: 10000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}
.skip-link:focus{ left: 16px; outline: none; box-shadow: 0 0 0 3px rgba(212,168,83,0.35); }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===== CAREERS PAGE SPECIFIC ===== */

/* Now Hiring Badge - Large & Prominent */
.now-hiring-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: var(--gold) !important;
  border: none;
  margin-bottom: 144px;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.5); }
  50% { box-shadow: 0 0 20px 8px rgba(212, 168, 83, 0.3); }
}
.now-hiring-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  animation: pulse-dot 1.5s ease infinite;
}
.now-hiring-badge span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff !important;
}

@media (max-width: 768px) {
  .now-hiring-badge {
    padding: 12px 24px;
    background: var(--gold) !important;
  }
  .now-hiring-badge span {
    font-size: 1.1rem;
    color: #fff !important;
  }
}

/* Now Hiring Star */
.now-hiring-star {
  position: absolute;
  top: 22%;
  left: 41%;
  width: 200px;
  height: 200px;
  z-index: 3;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.now-hiring-star:hover {
  transform: scale(1.05);
}
.now-hiring-star svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.now-hiring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
  line-height: 0.9;
}
.star-click-text {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* ===== HERO STATS ===== */
.hero-stats {
  position: absolute;
  right: 96px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 2;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

/* ===== TICKER BAR ===== */
.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--bg-deep);
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--bg-deep);
  opacity: 0.4;
  flex-shrink: 0;
}

/* Careers Hero */
.careers-hero-full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.careers-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw + 20px);
  height: 100%;
  z-index: 0;
}
.careers-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.careers-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,7,10,0.05) 0%, rgba(8,7,10,0.0) 30%, rgba(8,7,10,0.25) 65%, rgba(8,7,10,0.60) 100%),
    linear-gradient(90deg, rgba(8,7,10,0.20) 0%, transparent 50%);
}
.careers-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 220px;
  padding-bottom: 40px;
}
.careers-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.careers-hero-accent {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.careers-hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 560px;
  margin-bottom: 28px;
}

/* Why Work Here / Benefits */
.careers-why { background: var(--bg-surface); }
.careers-why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.careers-why-header .section-label {
  justify-content: center;
}
.careers-why-header .section-label::before { display: none; }
.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.careers-benefit-card {
  background: var(--bg-card);
  padding: 48px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.careers-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.careers-benefit-card:hover::before { transform: scaleX(1); }
.careers-benefit-card:hover { background: var(--bg-card-hover); }
.careers-benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}
.careers-benefit-icon svg {
  width: 100%;
  height: 100%;
}
.careers-benefit-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.careers-benefit-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Requirements Section */
.careers-requirements {}
.careers-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.careers-req-left {}
.careers-req-list {
  list-style: none;
  margin-top: 32px;
}
.careers-req-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--cream-dim);
}
.careers-req-list li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.careers-req-right {}
.careers-position-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 40px;
}
.careers-position-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212,168,83,0.1);
  border: 1px solid var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.careers-position-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.careers-position-type {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.careers-position-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.careers-position-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.careers-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.careers-detail-value {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.careers-detail-link {
  color: var(--gold);
  transition: color 0.3s;
}
.careers-detail-link:hover { color: var(--gold-light); }

/* Application Form */
.careers-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.careers-form-header {
  text-align: center;
  margin-bottom: 48px;
}
.careers-form-header .section-label {
  justify-content: center;
}
.careers-form-header .section-label::before { display: none; }
.careers-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.careers-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.careers-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.careers-form-full {
  grid-column: span 2;
}
.careers-form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.careers-form-group label .required {
  color: var(--gold);
}
.careers-form-group input,
.careers-form-group select,
.careers-form-group textarea {
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.careers-form-group input::placeholder,
.careers-form-group textarea::placeholder {
  color: var(--text-muted);
}
.careers-form-group input:focus,
.careers-form-group select:focus,
.careers-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-card-hover);
}
.careers-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4A853' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}
.careers-form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.careers-file-input {
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.careers-file-input:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}
.careers-file-input:focus {
  outline: none;
  border-color: var(--gold);
}
.careers-file-input::file-selector-button {
  padding: 8px 16px;
  margin-right: 16px;
  background: var(--gold);
  color: #000;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.careers-file-input::file-selector-button:hover {
  background: var(--gold-light);
}
.careers-file-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.careers-submit-btn {
  align-self: flex-start;
  margin-top: 8px;
}
.careers-form-note {
  font-size: 0.78rem;
  color: #fff;
  text-align: center;
}
.careers-resume-note {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  margin-top: 24px;
}
.careers-resume-note a {
  color: var(--gold);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.3s;
}
.careers-resume-note a:hover {
  color: var(--gold-light);
  margin-top: 16px;
}

/* Bottom CTA */
.careers-bottom-cta {
  padding: 80px 0;
}
.careers-bottom-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.careers-bottom-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}
.careers-bottom-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.careers-bottom-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}
.careers-bottom-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--cream-dim);
  transition: color 0.3s;
}
.careers-bottom-link:hover { color: var(--gold); }
.careers-bottom-link svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1366px) {
  .now-hiring-star {
    width: 180px;
    height: 180px;
    top: 19%;
    left: 36%;
  }
  .now-hiring-text {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  .now-hiring-star {
    width: 160px;
    height: 160px;
    top: 16%;
    left: 34%;
  }
  .now-hiring-text {
    font-size: 1.7rem;
  }
  .careers-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-req-grid { gap: 50px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-stats { display: none; }
  .nav-links { display: none; }
  .menu-toggle,
  .mobile-toggle { display: flex; }
  .now-hiring-star {
    width: 130px;
    height: 130px;
    top: 12%;
    left: 30%;
  }
  .now-hiring-text {
    font-size: 1.3rem;
  }
  .careers-hero-full { min-height: 100vh; min-height: -webkit-fill-available; }
  .careers-hero-content { padding-top: 120px; padding-bottom: 40px; }
  .careers-benefits-grid { grid-template-columns: 1fr; }
  .careers-req-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .careers-form-row { grid-template-columns: 1fr; }
  .careers-form-full { grid-column: span 1; }
  .section-pad { padding: 80px 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .now-hiring-star {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 25%;
  }
  .now-hiring-text {
    font-size: 1rem;
  }
  .careers-hero-title { font-size: 2.5rem; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 0.7rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .careers-position-card { padding: 28px; }
  .careers-bottom-info { flex-direction: column; align-items: center; }
}
