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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --cream: #faf8f5;
  --cream-2: #f3efe9;
  --gray-100: #ede9e3;
  --gray-200: #d5cfc7;
  --gray-400: #9e9890;
  --gray-600: #635e58;
  --gray-800: #2a2725;
  --text: #1a1816;
  --text-muted: #7a756e;
  --border: #ddd9d2;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  /* Prevent horizontal scroll from animations */
}

/* --- Scroll Reveal Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}


/* ===================== NAVIGATION ===================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-nav.scrolled .nav-inner {
  height: 64px;
}

.site-nav .nav-links a {
  color: var(--black);
}

.site-nav .nav-links a:hover {
  color: var(--gray-400);
}

.site-nav .nav-toggle-label span,
.site-nav .nav-toggle-label span::before,
.site-nav .nav-toggle-label span::after {
  background: var(--black);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 65px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-logo:hover .brand-name {
  color: var(--gray-600);
}

.brand-logo:hover {
  opacity: 0.8;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  letter-spacing: 0.1em !important;
  transition: opacity var(--transition) !important;
}

.nav-cta:hover {
  opacity: 0.75 !important;
  color: var(--white) !important;
}

/* Mobile Menu Logic */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 1.5rem 0.5rem;
  z-index: 1005;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--black);
  height: 2px;
  width: 22px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -7px;
}

.nav-toggle-label span::after {
  bottom: -7px;
}

@media (max-width: 960px) {
  .brand-logo {
    height: 34px;
  }

  .nav-inner {
    padding: 0.8rem 1.25rem;
  }

  .nav-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    /* Pro touch area */
  }

  .nav-links {
    position: fixed;
    top: 72px;
    /* Start below the main header bar */
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    /* Slide from right for a premium feel */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
  }

  .nav-toggle:checked~.nav-links {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav.scrolled .nav-links {
    top: 64px;
  }

  /* Full screen dim background when menu is open */
  .nav-toggle:checked~.nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1500;
    animation: fadeIn 0.3s ease forwards;
  }

  .nav-overlay {
    display: none;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .nav-toggle:checked~.nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked~.nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--black);
  }

  .nav-toggle:checked~.nav-toggle-label span::after {
    transform: rotate(-45deg);
    bottom: 0;
    background: var(--black);
  }

  .nav-logo,
  .nav-toggle-label {
    position: relative;
    z-index: 2500;
  }

  .nav-links a {
    color: var(--black) !important;
    font-weight: 600;
    font-size: 1.1rem;
  }

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

  .nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    width: 100%;
    text-align: center;
  }
}

/* ===================== PREMIUM UTILITIES ===================== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gray-200);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gray-600);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-black:hover {
  background: var(--black);
  color: var(--white);
}

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gray-200);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

/* ===================== ABOUT STRIP ===================== */
.about-strip {
  background: var(--black);
  color: var(--white);
  padding: 7rem 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-text .section-label {
  color: rgba(255, 255, 255, 0.35);
}

.about-text .section-label::after {
  background: rgba(255, 255, 255, 0.12);
}

/* ===================== PREMIUM HERO ===================== */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 2;
}

.hero-centered {
  text-align: center;
  justify-content: center;
}

.hero-centered .container-hero {
  display: flex;
  justify-content: center;
}

.hero-centered .hero-content-luxe {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-centered .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-btns {
  justify-content: center;
}

/* --- Hiring Stack Typography --- */
.hiring-display-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  margin-bottom: 2.5rem;
}

.hiring-display-stack .brand {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: #1a1816;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}

.hiring-display-stack .now {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #1a1816;
  margin: -0.5rem 0;
  letter-spacing: 0.05em;
}

.hiring-display-stack .hiring {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4.5rem, 15vw, 11rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #1a1816;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
  line-height: 1;
}

.container-hero {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content-luxe {
  max-width: 650px;
}

.hero-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  margin-bottom: 2.25rem;
  display: block;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.2s;
}

.hero-display-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 0.9;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-display-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gray-600);
  text-transform: none;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}


/* ===================== CULTURE SECTION ===================== */
.culture-section {
  background: var(--white);
  padding: 10rem 0;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 6rem;
}

.section-label-center {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  display: block;
}

.section-title-large {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.section-title-large em {
  font-style: italic;
  font-weight: 400;
  color: var(--gray-400);
}

.section-subtitle-max {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--gray-600);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.culture-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.culture-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.culture-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
}

.culture-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.culture-item:hover img {
  transform: scale(1.1);
}

/* ===================== BANNER STRIP ===================== */
.banner-strip {
  background: var(--black);
  color: var(--white);
  padding: 8rem 0;
  text-align: center;
}

.banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2.5rem;
}

/* ===================== VALUES STRIP ===================== */
.values-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.value-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== POSITIONS ===================== */
.positions-section {
  padding: 8rem 0;
  background: var(--cream);
}

.positions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.positions-desc {
  color: var(--text-muted);
  max-width: 360px;
  font-size: 0.95rem;
  margin-top: 0.8rem;
}

.openings-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  white-space: nowrap;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.position-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.position-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.position-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.position-card:hover::after {
  transform: scaleX(1);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter var(--transition), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-card:hover .card-image {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.card-body {
  padding: 2.25rem;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.card-meta {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: none;
  background: var(--cream);
  color: var(--black);
}

.meta-tag:nth-child(1) {
  background: #eef2ff;
  color: #4338ca;
}

/* Full-Time Blue */
.meta-tag:nth-child(2) {
  background: #fdf2f2;
  color: #991b1b;
}

/* In-Store Red */

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.2rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--black);
  transition: all 0.45s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-cta:hover {
  background: var(--gray-800);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-arrow {
  margin-left: 1rem;
  font-size: 1.1rem;
  transition: transform 0.45s cubic-bezier(0.2, 1, 0.3, 1);
  display: inline-block;
}

.card-cta:hover .card-arrow {
  transform: translateX(8px);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  padding: 2.8rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-copy {
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* ===================== JOB HERO PAGE ===================== */
.job-hero {
  padding-top: 72px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
}

.job-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: contrast(1.1) saturate(0.9) brightness(0.95);
}

.job-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  color: var(--white);
  width: 100%;
}

.job-breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.job-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.job-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.job-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.35rem 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.job-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.job-hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

/* ===================== JOB PAGE LAYOUT ===================== */
.job-page {
  background: var(--cream);
  padding: 5rem 0 8rem;
}

.job-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.content-section {
  margin-bottom: 3.5rem;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: var(--black);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.content-section p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.content-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.content-section ul li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.content-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray-400);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1rem;
}

.info-tile {
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.info-tile-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.info-tile-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
}

.info-tile-note {
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===================== SIDEBAR ===================== */
.job-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.86rem;
}

.sidebar-detail:last-of-type {
  border-bottom: none;
}

.sidebar-detail-label {
  color: var(--text-muted);
}

.sidebar-detail-value {
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

.sidebar-other-jobs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.sidebar-other-jobs a {
  font-size: 0.86rem;
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}

.sidebar-other-jobs a:last-child {
  border-bottom: none;
}

.sidebar-other-jobs a:hover {
  color: var(--gray-600);
}

/* ===================== APPLICATION FORM ===================== */
.form-section {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem;
  margin-top: 3rem;
}

.form-section-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.form-section-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
  border: none;
  padding: 0;
}

.form-section-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-800);
}

.required {
  color: var(--black);
  margin-left: 0.15rem;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.77rem;
  margin-left: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  border-radius: 0;
  appearance: none;
}

.form-control:focus {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
  font-family: var(--font-body);
  line-height: 1.6;
}

select.form-control {
  cursor: pointer;
  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 fill='%23635e58' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.file-upload-wrap {
  border: 2px dashed var(--border);
  padding: 2rem;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.file-upload-wrap:hover {
  border-color: var(--gray-400);
  background: var(--cream-2);
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  pointer-events: none;
}

.file-upload-icon {
  font-size: 1.8rem;
}

.file-upload-text {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.file-upload-text strong {
  color: var(--black);
}

.file-upload-note {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.file-upload-wrap input[type="file"] {
  display: none;
}

.form-divider {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

.form-sub-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-sub-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.submit-area {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.submit-area .btn {
  min-width: 240px;
  justify-content: center;
  padding: 1.1rem 2rem;
}

.submit-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 300px;
}

/* ===================== ALERTS ===================== */
.alert {
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  border-left: 3px solid;
  line-height: 1.6;
}

.alert-success {
  background: #f0faf4;
  border-color: #27ae60;
  color: #1a5c38;
}

.alert-error {
  background: #fdf2f2;
  border-color: #c0392b;
  color: #7a1a1a;
}

/* ===================== SUCCESS BANNER ===================== */
.success-banner {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 900;
  background: #1a5c38;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ===================== DASHBOARD ===================== */
.dashboard-header {
  background: var(--black);
  padding: 4rem 0;
  color: var(--white);
}

.dashboard-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.submissions-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.submissions-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.submissions-table th {
  text-align: left;
  padding: 1rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.submissions-table td {
  padding: 1.1rem 1.4rem;
  font-size: 0.86rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
}

.submissions-table tr:last-child td {
  border-bottom: none;
}

.submissions-table tbody tr:hover td {
  background: var(--cream);
}

.role-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  background: var(--black);
  color: var(--white);
}

.resume-link {
  font-size: 0.8rem;
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.75s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.34s;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .job-layout {
    grid-template-columns: 1fr;
  }

  .job-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

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

@media (max-width: 768px) {
  /* Removed conflicting .nav-links display: none */

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

  .positions-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-row.cols-2 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 4rem;
  }

  .about-image-wrap img {
    height: 380px;
  }

  .about-image-tag {
    left: 0;
    bottom: -1rem;
  }

  .form-section {
    padding: 2rem 1.5rem;
  }

  .submit-area {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-sidebar {
    grid-template-columns: 1fr;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-display-title {
    font-size: clamp(2.8rem, 12vw, 3.5rem);
  }

  .section,
  .positions-section {
    padding: 5rem 0;
  }

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

  .about-strip {
    padding: 5rem 0;
  }
}