
/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
/* Brand colors: #008b80 (teal), #e93f3a (red), #b77a00 (amber), #3a55c1 (blue), #0097b2 (cyan) */
:root {
  --bg: #0b0c0f;
  --bg2: #0f1116;
  --bg3: #14161b;
  --surface: #191c22;
  --border: #2b303b;
  --border-hover: #3d4558;
  --text: #eaeef7;
  --text-muted: #a7b0c4;
  --text-faint: #535e72;
  --accent: #008b80;
  --accent2: #0097b2;
  --accent-glow: rgba(0, 139, 128, 0.12);
  --danger: #e93f3a;
  --highlight: #008b80;
  --brand-amber: #b77a00;
  --brand-blue: #3a55c1;
  --control-border: rgba(255, 255, 255, 0.12);
  --control-border-hover: rgba(255, 255, 255, 0.25);
  --control-bg-hover: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 28px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg: #f5f6fa;
  --bg2: #ffffff;
  --bg3: #eef0f6;
  --surface: #ffffff;
  --border: #dde1ec;
  --border-hover: #b0b9d0;
  --text: #1a1e2e;
  --text-muted: #5a6280;
  --text-faint: #9aa0b8;
  --accent: #007068;
  --accent2: #007d9a;
  --accent-glow: rgba(0, 139, 128, 0.10);
  --danger: #e93f3a;
  --highlight: #007068;
  --brand-amber: #b77a00;
  --brand-blue: #3a55c1;
  --control-border: rgba(0, 0, 0, 0.08);
  --control-border-hover: rgba(0, 0, 0, 0.12);
  --control-bg-hover: rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h3, h4 {
  letter-spacing: 0.02em;
}

a {
  color: var(--accent2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* GPU-composited layers for animated elements */
.fade-in {
  will-change: opacity, transform;
}

.event-card,
.team-card-new,
.equip-card,
.feature-card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}




/* ─── INLINE SVG ICONS (replaces emojis) ────────────────────────────── */
.inline-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* When used inside card-icon divs, scale up */
.card-icon .inline-icon,
.equip-card-img-fallback .inline-icon,
.carousel-slide-img .inline-icon {
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.25;
  color: var(--accent);
}

/* Inside contact-item-icon, scale to match */
.contact-item-icon .inline-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

/* Inside policy-item-icon */
.policy-item-icon .inline-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
}

/* Inside event-meta spans */
.event-meta .inline-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--text-faint);
}

/* Inside alert spans */
.alert .inline-icon {
  width: 1rem;
  height: 1rem;
}

/* Inventory section heading icons */
.inventory-section h3 .inline-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent);
}

/* Feature card heading icons */
.feature-card h3 .inline-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
}

/* Footer tagline as link */
a.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-faint);
  text-decoration: none;
  transition: color var(--transition);
}

a.footer-tagline:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar-inner {
  display: grid;
  grid-template-areas: "logo links actions";
  grid-template-columns: auto 1fr auto;
  column-gap: 2rem;
  align-items: center;
  padding-block: 0.95rem;
}

.nav-logo {
  grid-area: logo;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  min-height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 0.1px;
}

.nav-logo:hover {
  text-decoration: none;
}

.nav-links {
  grid-area: links;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-links a:focus-visible,
.theme-toggle:focus-visible,
.global-search-btn:focus-visible,
.hamburger:focus-visible {
  outline: 2px solid rgba(0, 139, 128, 0.32);
  outline-offset: 3px;
}

.nav-links a.active {
  color: var(--accent);
  background: rgba(0, 139, 128, 0.14);
}

.nav-actions {
  grid-area: actions;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.85rem;
  min-width: 0;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color var(--transition), border-color var(--transition), transform 0.15s;
  padding: 0;
}

.theme-toggle svg {
  width: 36px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text);
  transform: scale(1.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg3);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.mobile-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--text);
  background: var(--bg3);
}

.mobile-nav a.active {
  color: var(--accent2);
}

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

@media (max-width: 880px) {
  .navbar-inner {
    grid-template-areas: "logo actions";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Keep nav actions in a row at tablet/intermediate widths */
  .nav-actions {
    flex-direction: row;
    align-items: center;
    justify-self: end;
    align-self: center;
    justify-content: flex-end;
    gap: 0.4rem;
  }

  /* Revert search back to icon-only on mobile */
  .global-search-btn {
    width: 36px;
    min-width: 36px;
    justify-content: center;
    padding: 0;
  }

  .global-search-btn::after {
    display: none;
  }
}

@media (max-width: 400px) {
  .nav-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .nav-actions > * {
    min-width: 0;
  }

  .global-search-btn,
  .theme-toggle,
  .hamburger {
    width: 30px;
    height: 30px;
  }

  .global-search-btn svg,
  .theme-toggle svg,
  .hamburger span {
    width: 16px;
    height: 16px;
  }

  .theme-toggle svg {
    width: 18px;
    height: 12px;
  }
}

/* Desktop: search button styled as an inline search box */
@media (min-width: 881px) {
  .navbar-inner {
    grid-template-areas:
      "logo links actions";
    grid-template-columns: auto 1fr auto;
    row-gap: 0;
    align-items: center;
  }

  .nav-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
  }

  .global-search-btn {
    width: 42px;
    min-width: 42px;
    padding: 0;
    justify-content: center;
    gap: 0;
    height: 42px;
    border-radius: 999px;
    box-shadow: none;
  }

  .theme-toggle,
  .hamburger {
    width: 42px;
    height: 42px;
  }

  .global-search-btn::after {
    display: none;
  }

  .global-search-btn:hover::after {
    color: var(--text-muted);
  }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 185, 138, 0.07) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 220, 232, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: 50px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
}

@media (max-width: 720px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero-graphic {
    order: 1;
    display: flex;
    justify-content: center;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-graphic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-graphic {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  /* border-radius: var(--radius); */
  opacity: 0.95;
  /* border: 1px solid var(--border); */
  box-shadow: var(--shadow);
  display: block
}

@media (max-width: 900px) {
  .hero-logo-graphic {
    max-width: 500px;
  }
}

@media (max-width: 720px) {
  .hero-logo-graphic {
    max-width: 100%;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 139, 128, 0.08);
  border: 1px solid rgba(0, 139, 128, 0.25);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}

.hero-badge:hover {
  background: rgba(0, 139, 128, 0.14);
  border-color: rgba(0, 139, 128, 0.4);
  text-decoration: none;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4rem);
  font-weight: 800;
  /* letter-spacing: -0.06em; */
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-word-dream {
  color: var(--accent);
}

.hero-word-design {
  color: var(--accent2);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
}

@media (max-width: 560px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  background: var(--surface);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  /* letter-spacing: 0.07em; */
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent2);
  color: #ffffff;
  font-weight: 700;
}

.btn-primary:hover {
  opacity: 0.88;
  box-shadow: 0 4px 16px rgba(0, 151, 178, 0.35);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--accent2);
  background: var(--bg3);
}

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

.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent2);
  color: var(--accent2);
}

.btn-lg {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* ─── SECTION TITLES ─────────────────────────────────────────── */
.section {
  padding: 3.5rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-label {
  display: inline-block;
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  /* letter-spacing: 0.12em; */
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: block;
  color: var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--highlight));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent2);
  transition: background var(--transition), border-color var(--transition);
}

.card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.card:hover .card-icon {
  background: rgba(6, 231, 235, 0.12);
  border-color: rgba(6, 231, 235, 0.3);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.card-arrow {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  color: var(--text-faint);
  font-size: 1rem;
  transition: color var(--transition), transform var(--transition);
}

.card:hover .card-arrow {
  color: var(--accent2);
  transform: translate(2px, -2px);
}

/* ─── EQUIPMENT CARD ─────────────────────────────────────────── */
.equip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.equip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.equip-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.equip-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.equip-card-placeholder {
  height: 190px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.equip-card-body {
  padding: 1.2rem;
}

.equip-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.equip-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.equip-card-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.tag-required {
  color: var(--accent2);
  border-color: rgba(200, 185, 138, 0.4);
  background: rgba(200, 185, 138, 0.07);
}

/* ─── EQUIPMENT DETAIL ───────────────────────────────────────── */
.equip-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .equip-detail-hero {
    grid-template-columns: 1fr;
  }
}

.equip-detail-image {
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.equip-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equip-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1rem 0;
}

.equip-info-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.equip-info-item strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  /* letter-spacing: 0.08em; */
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.equip-info-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

.link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-list li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}

.link-list li a:hover {
  border-color: var(--accent2);
  background: var(--surface);
  text-decoration: none;
}

/* ─── CAROUSEL ───────────────────────────────────────────────── */
.carousel {
  position: relative;
  margin: 1rem 0;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex-shrink: 0;
  width: 230px;
  scroll-snap-align: start;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel-slide-img {
  height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--surface);
}

.carousel-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide-body {
  padding: 0.85rem;
}

.carousel-slide-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.carousel-slide-body p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.carousel-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.carousel-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}

.carousel-btn:hover {
  border-color: var(--accent2);
}

/* ─── FEATURE GRID ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-card li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.feature-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-size: 0.78rem;
}

/* ─── TEAM ───────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  border-color: var(--accent2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--accent2);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent2);
}

.team-name {
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.75rem;
  color: var(--accent2);
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.contact-item-icon {
  width: 34px;
  height: 34px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.hours-grid {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.hours-grid div {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 0.75rem;
  align-items: center;
}

.hours-grid span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}

.hours-grid strong {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.contact-item-text span, .contact-item-text a {
  font-size: 0.9rem;
  color: var(--text);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

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

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
  padding: 0.7rem 0.9rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(200, 185, 138, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select option {
  background: var(--bg2);
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--accent2);
  font-weight: 500;
}

/* ─── INVENTORY ──────────────────────────────────────────────── */
.inventory-section {
  margin-bottom: 2rem;
}

.inventory-section h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.55rem;
}

.inventory-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  transition: border-color var(--transition);
}

.inventory-item:hover {
  border-color: var(--border-hover);
}

.inventory-item-name {
  font-size: 0.86rem;
  color: var(--text);
}

.inventory-item-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent2);
  white-space: nowrap;
}

/* ─── EVENTS ─────────────────────────────────────────────────── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}

.event-card:hover {
  border-color: var(--border-hover);
  transform: translateX(2px);
}

@media (max-width: 600px) {
  .event-card {
    grid-template-columns: 60px 1fr;
  }

  .event-card-action {
    grid-column: 1 / -1;
    padding: 0.25rem 0 0.75rem;
  }
}

.event-date-box {
  text-align: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.4rem;
}

.event-date-month {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent2);
}

.event-date-day {
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-day.event-date-day-range {
  font-size: 1.2rem;
}

.event-badge {
  display: inline-block;
  padding: 0.13rem 0.5rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.event-badge.workshop {
  background: rgba(200, 185, 138, 0.12);
  color: var(--accent2);
  border: 1px solid rgba(138, 182, 200, 0.3);
}

.event-badge.open-house {
  background: rgba(214, 220, 232, 0.1);
  color: var(--highlight);
  border: 1px solid rgba(214, 220, 232, 0.25);
}

.event-badge.official-launch {
  background: rgba(255, 180, 50, 0.12);
  color: #f59e0b;
  border: 1px solid rgba(255, 180, 50, 0.35);
}

.event-badge.past-event {
  background: rgba(160, 160, 160, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(160, 160, 160, 0.25);
}

/* .event-badge.official-launch {
  background: rgba(237, 232, 220, 0.07);
  color: var(--text);
  border: 1px solid var(--border);
} */

.event-info h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.event-info p {
  font-size: 0.83rem;
  color: var(--text);
  margin: 0;
}

.event-meta {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* Social row */
.social-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  text-decoration: none;
}

.social-pill svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.social-pill:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
  text-decoration: none;
}

/* ─── GET STARTED STEPS ──────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--border);
  z-index: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-num-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent2);
  flex-shrink: 0;
}

.step-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.step-content p:last-child {
  margin-bottom: 0;
}

/* ─── HOURS TABLE ────────────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

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

.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.hours-badge {
  display: inline-block;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hours-badge.open {
  background: rgba(200, 185, 138, 0.12);
  color: var(--accent2);
  border: 1px solid rgba(200, 185, 138, 0.3);
}

.hours-badge.closed {
  background: rgba(224, 96, 96, 0.1);
  color: var(--danger);
}

/* ─── ACCORDION ──────────────────────────────────────────────── */
details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

details[open] {
  border-color: var(--border-hover);
}

details summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  user-select: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '＋';
  margin-left: auto;
  color: var(--text-faint);
  transition: transform var(--transition);
}

details[open] summary::after {
  content: '－';
}

details .details-body {
  padding: 0 1.25rem 1.25rem;
}

/* ─── RESOURCE LIST ──────────────────────────────────────────── */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.resource-list li:last-child {
  border-bottom: none;
}

.resource-list li::before {
  content: '→';
  color: var(--accent2);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.resource-list a {
  color: var(--text);
}

.resource-list a:hover {
  color: var(--accent2);
}

/* ─── SEARCH ─────────────────────────────────────────────────── */
.search-wrap {
  position: relative;
}

.search-wrap svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  pointer-events: none;
}

#search {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#search:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(200, 185, 138, 0.12);
}

#search::placeholder {
  color: var(--text-faint);
}

/* ─── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 800;
  /* letter-spacing: -0.02em; */
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.65;
}

/* ─── ALERT ──────────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  margin-bottom: 1rem;
}

.alert-info {
  background: rgba(200, 185, 138, 0.07);
  border: 1px solid rgba(200, 185, 138, 0.22);
  color: var(--text);
}

/* ─── CALLOUT ────────────────────────────────────────────────── */
.callout {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent2);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.callout strong {
  color: var(--text);
  font-style: normal;
}

/* ─── POLICY LIST ────────────────────────────────────────────── */
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  color: var(--text-muted);
}

.policy-item-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── VALUES / PILLARS ───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent2);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

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

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

.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pillar-num {
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent2);
}

.pillar-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── STUDENT PROJECTS ───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg3);
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-media img,
.project-card:hover .project-media video {
  transform: scale(1.04);
}

.project-media-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--accent2);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  /* letter-spacing: 0.1em; */
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(6, 231, 235, 0.25);
}

.project-media-badge--live {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
}

.project-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.project-hook {
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.project-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.projects-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg3);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.projects-cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

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

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 3rem;
  background: var(--bg2);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.footer-logo img {
  height: 128px;
  width: 128px;
  object-fit: contain;
  border-radius: 1px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-faint);
  /* max-width: 220px; */
}

.footer-links {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-faint);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-social-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.footer-social-icons {
  display: flex;
  gap: 0.45rem;
}

.footer-social-icons a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social-icons a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
  text-decoration: none;
}

.footer-social-icons svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ─── COMMUNITY  ───────────────────────────────────────── */
.community-banner {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.community-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.community-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.community-banner-text {
  position: relative;
}

.community-banner-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.community-banner-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 500px;
}

.community-banner-action {
  position: relative;
  flex-shrink: 0;
}

/* ─── GLOBAL SEARCH BUTTON ───────────────────────────────────── */
.global-search-btn {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--control-border);
  border-radius: 999px;
  background: var(--bg3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  padding: 0 0.95rem;
  flex-shrink: 1;
  min-width: 50px;
  white-space: nowrap;
  line-height: 1;
}

.global-search-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.global-search-btn:hover {
  border-color: var(--control-border-hover);
  color: var(--text);
  background: var(--control-bg-hover);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* ─── SEARCH OVERLAY ─────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  margin-inline: 1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.2s ease, border-color var(--transition), box-shadow var(--transition);
}

.search-overlay.open .search-modal {
  transform: translateY(0);
}

.search-modal-header {
  border-bottom: 1px solid var(--border);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--bg3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.search-input-icon {
  width: 18px;
  height: 18px;
  stroke: var(--text-faint);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.search-modal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  caret-color: var(--accent2);
}

.search-modal-input::placeholder {
  color: var(--text-faint);
}

.search-esc-hint {
  font-size: 0.72rem;
  font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: var(--text-faint);
  border: 1px solid var(--control-border);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: var(--bg3);
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.search-results {
  max-height: 420px;
  overflow-y: auto;
  padding: 0.5rem;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 1rem;
  color: var(--text-faint);
  font-size: 0.88rem;
}

.search-empty svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-faint);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

.search-empty p {
  margin: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition);
  cursor: pointer;
}

.search-result-item:hover,
.search-result-item.active {
  background: var(--bg3);
  text-decoration: none;
}

.search-result-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent2);
}

.search-result-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-result-text {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item mark {
  background: rgba(0, 151, 178, 0.18);
  color: var(--accent2);
  border-radius: 2px;
  padding: 0 1px;
}

.search-section-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  padding: 0.6rem 0.85rem 0.3rem;
}

.search-no-results {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-faint);
  font-size: 0.88rem;
}

/* ─── ANIMATIONS (removed) ───────────────────────────────────── */

.fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── HIDDEN ─────────────────────────────────────────────────── */
.hidden {
  display: none !important;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ─── ADDITIONAL MOBILE RESPONSIVENESS ──────────────────────── */

/* Force inline 2-col grids to stack on small screens */
@media (max-width: 640px) {

  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

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

  .footer-links {
    justify-content: center;
  }

  .footer-social-col {
    align-items: center;
  }

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

  .community-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .community-banner-text {
    text-align: center;
  }

  /* Search overlay – fill screen on mobile */
  .search-overlay {
    padding-top: 1rem;
  }

  .search-modal {
    margin-inline: 0.5rem;
  }

  /* Event cards stack better */
  .event-card {
    flex-direction: column;
  }

  .event-card-action {
    align-self: flex-start;
  }

  /* Booking steps */
  .booking-steps {
    grid-template-columns: 1fr !important;
  }

  /* Policy items */
  .policy-list {
    gap: 0.75rem;
  }

  /* Inventory grid */
  .inventory-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Smaller phones */
@media (max-width: 400px) {
  .container {
    padding-inline: 1rem;
  }

  .nav-logo {
    font-size: 0.78rem;
    gap: 0.5rem;
  }

  .nav-logo img {
    height: 48px;
    width: 48px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }
}

/* ─── DISABLE ALL ANIMATIONS & TRANSITIONS ──────────────────── */
*, *::before, *::after {
  animation: none !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

.fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── PERFORMANCE: REDUCE MOTION ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ─── PRINT STYLES ──────────────────────────────────────────── */
@media print {

  .navbar, .site-footer, .search-overlay, .global-search-btn,
  .theme-toggle, .hamburger, .mobile-nav {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: 100%;
  }
}