@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;
}


/* ===================== ANNOUNCEMENT BAR ===================== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #1a1816;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-bar.is-hidden {
  transform: translateY(-100%);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.announcement-inner span {
  font-weight: 700;
  color: #cca67c;
}

.announcement-inner a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.25s ease;
}

.announcement-inner a:hover {
  border-color: #cca67c;
  color: #cca67c;
}

/* ===================== 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 {
  top: 0;
  background: rgba(250, 248, 245, 0.95);
  /* var(--cream) with opacity */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 2px solid #cca67c;
  /* Signature Gold accent */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.site-nav.scrolled .brand-name {
  color: var(--black);
}

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

.site-nav.scrolled .nav-links a:hover {
  color: #cca67c;
  /* Gold hover on scroll */
}

.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-links a.active {
  color: #cca67c !important;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #cca67c;
  transform-origin: left;
  animation: navLineIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes navLineIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.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 nav bar (when scrolled/sub-pages where nav is at top:0) */
    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(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* ── Each value card ── */
.value-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  gap: 0;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: default;
  position: relative;
}

.value-card:hover {
  background: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* ── SVG icon container ── */
.value-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.value-card:hover .value-card-icon {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.12) rotate(-5deg);
}

.value-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s ease;
}

.value-card:hover .value-card-icon svg {
  stroke: var(--white);
}

.value-emoji {
  font-size: 2rem;
  line-height: 1;
}

/* ── Thin divider ── */
.value-card-line {
  width: 32px;
  height: 2px;
  background: var(--black);
  margin-bottom: 1.2rem;
  transition: background 0.35s ease, width 0.35s ease;
}

.value-card:hover .value-card-line {
  background: rgba(255, 255, 255, 0.5);
  width: 48px;
}

/* ── Label ── */
.value-card-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.9rem;
  transition: color 0.35s ease;
}

.value-card:hover .value-card-label {
  color: var(--white);
}

/* ── Description ── */
.value-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: color 0.35s ease;
}

.value-card:hover .value-card-desc {
  color: rgba(255, 255, 255, 0.65);
}


/* ===================== 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 ===================== */
/* ===================== PREMIUM FOOTER ===================== */
/* ===================== NEW TECH-LUXE FOOTER ===================== */
.site-footer {
  background: #111419;
  color: #fff;
  padding: 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}

/* Left Subscription Side */
.footer-left-sub {
  flex: 1;
  background: #0d0f13;
  padding: 6rem 4rem;
  min-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-label {
  color: #ff314b;
  font-weight: 800;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.sub-title {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #fff;
  max-width: 450px;
}

.sub-title span {
  color: rgba(255, 255, 255, 0.4);
}

.sub-form {
  max-width: 400px;
}

.sub-input-group {
  margin-bottom: 1.5rem;
}

.sub-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.sub-input:focus {
  outline: none;
  border-color: #ff314b;
}

.sub-btn {
  background: #ff314b;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sub-btn:hover {
  background: #e62c43;
  transform: translateY(-2px);
}

/* Right Links Side */
.footer-right-links {
  flex: 1.2;
  background: #171c24;
  padding: 6rem 4rem;
  min-width: 450px;
  display: flex;
  flex-direction: column;
}

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

.footer-link-col h4 {
  color: #cca67c;
  /* Gold from brand variable */
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.footer-link-col h4.addr-label {
  color: #ff314b;
  /* Address uses red in the image */
}

.footer-v2-nav {
  list-style: none;
  padding: 0;
}

.footer-v2-nav li {
  margin-bottom: 1rem;
}

.footer-v2-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-v2-nav a:hover {
  color: #fff;
}

.footer-addr-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-addr-item {
  margin-bottom: 1rem;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-addr-item:hover {
  color: #ff314b;
}

/* Footer Bottom Bar */
.footer-v2-bottom {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-social-v2 {
  display: flex;
  gap: 1rem;
}

.social-v2-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-v2-link:hover {
  background: #ff314b;
  transform: translateY(-3px);
}

.footer-v2-copy {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.footer-v2-copy strong {
  color: #fff;
}

@media (max-width: 1100px) {

  .footer-left-sub,
  .footer-right-links {
    flex: 1 1 100%;
    padding: 4rem 2rem;
  }
}

@media (max-width: 650px) {
  .footer-link-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-v2-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-v2-copy {
    text-align: center;
  }
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ===================== 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: repeat(2, 1fr);
  }

  .value-card {
    padding: 2.5rem 1.5rem 2rem;
  }

  .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;
  }

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

/* ===================== ABOUT PAGE SPECIFIC ===================== */
.about-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-text-large {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 2rem;
  font-weight: 500;
}

.section-text-muted {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.about-summary-btns {
  display: flex;
  gap: 1.5rem;
}

.image-stack {
  position: relative;
  padding-bottom: 2rem;
}

.image-main {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow-lg);
}

.image-overlay-box {
  position: absolute;
  bottom: 0;
  right: -2rem;
  background: var(--black);
  color: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

/* --- About Hero --- */
.hero-about {
  padding: 12rem 0 8rem;
  background: var(--cream-2);
  text-align: center;
}

.about-intro-text {
  max-width: 800px;
  margin: 4rem auto 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: var(--font-display);
  font-weight: 500;
}

/* --- Story Sections --- */
.story-section {
  padding: 8rem 0;
}

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

.story-grid.reversed {
  direction: rtl;
}

.story-grid.reversed .story-content {
  direction: ltr;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.story-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow);
}

.hiring-cta-section {
  background: var(--black);
  color: var(--white);
  padding: 10rem 0;
  text-align: center;
}

.hiring-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.hiring-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 2rem;
}

.hiring-cta-content p {
  font-size: 1.25rem;
  margin-bottom: 3.5rem;
  opacity: 0.8;
}

@media (max-width: 960px) {

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

  .image-overlay-box {
    right: 0;
    bottom: -1rem;
    padding: 1.5rem;
  }

  .story-grid.reversed {
    direction: ltr;
  }

  .hero-about {
    padding: 8rem 0 5rem;
  }
}

/* ===================== POLICY PAGE ===================== */
.policy-page {
  padding: 10rem 0 6rem;
  background: var(--white);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.policy-header {
  text-align: center;
  margin-bottom: 5rem;
}

.policy-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.policy-content {
  line-height: 1.8;
}

.policy-group {
  margin-bottom: 3.5rem;
}

.policy-group h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--black);
}

.policy-group ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.policy-group li {
  margin-bottom: 0.75rem;
}

.contact-details {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 4px;
  margin-top: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

/* ===================== PREMIUM COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #ffffff;
  padding: 1rem 2rem;
  color: #000000;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cookie-info {
  flex: 1;
}

.cookie-info p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  color: #333333;
}

.cookie-link-highlight {
  color: #00008b;
  /* Dark blue link to match buttons */
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s;
}

.cookie-link-highlight:hover {
  opacity: 0.8;
}

.cookie-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 320px;
  /* Ensures buttons are wide like the reference */
}

.btn-cookie-accept,
.btn-cookie-manage {
  width: 100%;
  background: #00008b;
  /* Dark blue background */
  color: #ffffff;
  border: none;
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}

.btn-cookie-accept:hover,
.btn-cookie-manage:hover {
  opacity: 0.85;
}

@media (max-width: 960px) {
  .cookie-container-fluid {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cookie-controls {
    width: 100%;
    min-width: unset;
  }
}


.cookie-actions .btn-outline-white:hover {
  opacity: 1;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 2rem;
  }

  .container-cookie {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/* ===================== CONTACT PAGE ===================== */
.hero-contact {
  padding: 12rem 0 6rem;
  background: var(--cream-2);
  text-align: center;
}

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

.contact-card {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--black);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.contact-email,
.contact-address,
.contact-hours {
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.contact-card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-right: 12px;
}

.contact-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contact-svg-icon svg {
  width: 100%;
  height: 100%;
  /* CurrentColor inherits the text color of the h3 heading */
  stroke: currentColor;
}

.contact-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.contact-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gray-400);
}

.contact-note-section {
  padding-bottom: 8rem;
  background: var(--white);
}

.contact-note-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 4px;
}

.note-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.contact-note-box p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: var(--font-display);
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0;
  }
}

/* ===================== SHOP PAGE ===================== */
.hero-shop {
  padding: 12rem 0 6rem;
  background: var(--cream-2);
  text-align: center;
}

.shop-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.visual-img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
}

.meantime-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.m-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.m-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.feature-icon-svg svg,
.coming-icon-svg svg {
  width: 100%;
  height: 100%;
  stroke: var(--black);
}

.shop-coming-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shop-visit-card {
  margin-top: 5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.shop-visit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #cca67c;
  /* Gold accent line */
}

.visit-card-inner {
  padding: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.visit-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.visit-card-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 3rem;
}

.visit-card-details {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  text-align: left;
}

.vc-detail-block {
  flex: 1;
  max-width: 250px;
}

.vc-detail-block strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.vc-detail-block p {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.6;
}

.vc-detail-block em {
  font-size: 0.95em;
  color: var(--text-muted);
}

.btn-visit-dir {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-visit-dir:hover {
  background: #ff314b;
  /* Brand red */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 49, 75, 0.2);
}

@media (max-width: 768px) {
  .visit-card-details {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .vc-detail-block {
    max-width: 100%;
  }

  .vc-detail-block strong {
    text-align: center;
  }

  .visit-card-inner {
    padding: 3rem 1.5rem;
  }
}

.shop-future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.future-items {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.f-item strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.f-item p {
  color: var(--text-muted);
}

.social-invite {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-600);
}

.future-img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {

  .shop-intro-grid,
  .shop-future-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .meantime-features {
    grid-template-columns: 1fr;
  }

  .si-box {
    padding: 2.5rem 1.5rem;
  }
}

/* ===================== TRACKING & SOCIAL ===================== */
.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cream-2);
  color: var(--black);
  text-decoration: none;
  border-radius: 50%;
  transition: var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-social-flex {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.6rem;
  background: var(--cream-2);
  color: var(--black);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
}

.social-pill svg {
  flex-shrink: 0;
}

.social-pill:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.map-container {
  margin-top: 6rem;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.map-container iframe {
  filter: grayscale(1) contrast(1.2) opacity(0.8);
  transition: var(--transition);
}

.map-container:hover iframe {
  filter: none;
  opacity: 1;
}

/* ===================== NEW PREMIUM CONTACT PAGE ===================== */
.contact-luxe-hero {
  position: relative;
  padding: 14rem 0 10rem;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, #1a1816 0%, #0d0d0d 100%);
}

.contact-glass-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatBlob 15s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: #443c34;
  top: -200px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #2a2725;
  bottom: -100px;
  left: 20%;
  animation-delay: -5s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(20px, -50px) scale(0.9);
  }
}

.contact-luxe-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.luxe-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.luxe-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.luxe-title em {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2em;
  font-weight: 400;
  color: #ffd700;
  /* Subtle gold/yellow hint */
}

.luxe-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-luxe-content {
  padding: 6rem 0 10rem;
  background: var(--cream);
}

.contact-luxe-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: stretch;
  margin-top: -8rem;
  /* Overlap hero */
  position: relative;
  z-index: 5;
}

.contact-luxe-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.luxe-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  align-items: flex-start;
}

.luxe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.luxe-card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxe-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.luxe-card-body p,
.luxe-card-body a {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-decoration: none;
}

.luxe-card-body strong {
  color: var(--black);
  font-size: 1.1rem;
}

.luxe-hours {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.btn-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--black) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.btn-link:hover {
  opacity: 0.6;
}

.luxe-contact-item {
  margin-bottom: 1.25rem;
}

.luxe-contact-item .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.luxe-contact-item a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.3s ease;
}

.luxe-contact-item a:hover {
  color: var(--gray-400);
}

.luxe-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.luxe-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cream-2);
  color: var(--black);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.luxe-socials a:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.luxe-map-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
}

.luxe-map-glass {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}

.luxe-map-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  pointer-events: none;
}

.luxe-map-glass iframe {
  filter: grayscale(0.8) contrast(1.1) brightness(1.05);
  transition: filter 0.6s ease;
}

.luxe-map-wrap:hover .luxe-map-glass iframe {
  filter: none;
}

.luxe-note-section {
  padding: 0 0 10rem;
  background: var(--cream);
}

.luxe-note-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.luxe-note-content {
  background: var(--black);
  color: var(--white);
  padding: 5rem 4rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.luxe-note-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.quote-icon {
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 2rem;
  transform: scale(2);
}

.luxe-note-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.luxe-note-content h2 em {
  font-style: italic;
  color: var(--gray-400);
}

.luxe-note-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .contact-luxe-wrapper {
    grid-template-columns: 1fr;
    margin-top: -4rem;
    gap: 3rem;
  }

  .luxe-map-glass {
    min-height: 400px;
  }

  .luxe-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .luxe-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .luxe-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contact-luxe-hero {
    padding: 10rem 0 8rem;
  }

  .luxe-note-content {
    padding: 3rem 1.5rem;
  }
}

/* ===================== AGENCY CONTACT PAGE ===================== */

.contact-agency-main {
  background: #f4f7fb;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.contact-agency-top {
  padding: 12rem 0 8rem;
  text-align: center;
}

.contact-agency-grid {
  display: block;
  /* Removed grid for centered content */
}

/* Centered Text Side */
.agency-text-centered {
  margin: 0 auto;
  max-width: 1000px;
}

.agency-label {
  display: block;
  color: #ff314b;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.agency-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-method-card {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.agency-inquires {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.agency-inquires-desc {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

.agency-email {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff314b;
  text-decoration: underline;
  text-decoration-color: rgba(255, 49, 75, 0.3);
  text-underline-offset: 4px;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.3s;
}

.agency-email:hover {
  color: #e62c43;
  text-decoration-color: #e62c43;
}

.contact-quick-note {
  background: rgba(255, 49, 75, 0.05);
  border: 1px dashed #ff314b;
  padding: 2.5rem;
  border-radius: 20px;
}

/* Map Bottom Section */
.contact-agency-bottom {
  background: #fff;
  padding: 8rem 0;
}

.agency-map-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.agency-map-bg {
  width: 100%;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  filter: grayscale(100%) opacity(0.8) brightness(1.1);
}

.agency-map-bg iframe {
  width: 100%;
  height: 100%;
}

.agency-map-card {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background: #fff;
  padding: 2.5rem 3.5rem;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.agency-map-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
}

.agency-address {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.agency-phone {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ff314b;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 860px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .agency-map-card {
    position: static;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
  }
}

/* ===================== NEW 4-COLUMN FOOTER ===================== */
.footer {
  background: #111419;
  padding: 70px 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #ff314b;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 15px;
  text-transform: capitalize;
  color: #bbbbbb;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px 10px 0;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

@media(max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* ===================== SHOP FUTURE LUXE SECTION ===================== */
.shop-future-luxe {
  display: flex;
  min-height: 600px;
  overflow: hidden;
}

.shop-future-inner {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

/* Left Dark Panel */
.shop-future-left {
  flex: 1;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-future-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #cca67c;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.shop-future-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: #cca67c;
}

.shop-future-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.shop-future-title em {
  font-style: italic;
  font-weight: 400;
  color: #cca67c;
}

.shop-future-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.shop-coming-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.shop-coming-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shop-coming-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.shop-coming-card:hover {
  background: rgba(204, 166, 124, 0.08);
  border-color: rgba(204, 166, 124, 0.25);
}

.shop-coming-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-coming-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.shop-coming-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Right Social CTA Panel */
.shop-future-right {
  flex: 1;
  min-width: 320px;
  background: var(--cream-2);
  padding: 6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-social-cta {
  max-width: 460px;
}

.shop-social-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  display: block;
}

.shop-social-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.shop-social-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.shop-social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.shop-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  letter-spacing: 0.03em;
}

.shop-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shop-social-fb {
  background: #1877f2;
  color: #ffffff;
}

.shop-social-fb:hover {
  opacity: 0.9;
}

.shop-social-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.shop-social-ig:hover {
  opacity: 0.9;
}

.shop-social-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {

  .shop-future-left,
  .shop-future-right {
    padding: 4rem 2rem;
    flex: 1 1 100%;
  }

  /* --- Cookie Banner Utilities --- */
  .cookie-banner.is-hidden-persistent {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(100%) !important;
  }

  .cookie-banner.is-visible {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
}