/* ============================================================
   Bashee Co — Marketing Agency (Multi-page)
   Theme: Gold / Black / Blue
   ============================================================ */

:root {
  --bg: #0a0812;
  --bg-2: #0f0d1e;
  --fg: #f5f2e8;
  --muted: #a89f8d;
  --border: rgba(120, 110, 200, 0.22);
  --gold: #e6b84a;
  --gold-bright: #f5cf5e;
  --gold-2: #c99532;
  --royal-blue: #3b4dd1;
  --deep-blue: #1a1f5c;
  --blue-tint: rgba(60, 80, 210, 0.22);
  --gradient-gold: linear-gradient(135deg, #f5cf5e, #c99532);
  --gradient-hero:
    radial-gradient(ellipse at top right, rgba(60, 80, 210, 0.35), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(230, 184, 74, 0.12), transparent 60%),
    #0a0812;
  --shadow-gold: 0 10px 40px -10px rgba(230, 184, 74, 0.45);
  --shadow-blue: 0 20px 60px -20px rgba(60, 80, 210, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: pageIn 0.5s ease-out both;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; letter-spacing: -0.02em; line-height: 1.1; }
h1 em, h2 em { font-style: italic; font-weight: 600; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
i[data-lucide] { width: 1em; height: 1em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }
.narrow-lg { max-width: 1100px; }

.accent { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn i { width: 16px; height: 16px; }
.btn-gold { background: var(--gradient-gold); color: #0a0812; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: scale(1.05); }
.btn-ghost { border-color: rgba(230, 184, 74, 0.4); color: var(--gold); background: transparent; }
.btn-ghost:hover { background: rgba(230, 184, 74, 0.1); transform: scale(1.03); }
.btn-block { width: 100%; margin-top: 20px; }
.form-status { margin-top: 14px; font-size: 14px; line-height: 1.5; min-height: 1em; }
.form-status.is-success { color: #4caf6e; }
.form-status.is-error { color: #e0575a; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; color: var(--gold); font-weight: 600; font-size: 14px;
  transition: gap .25s ease;
}
.link-arrow i { width: 16px; height: 16px; }
.link-arrow:hover { gap: 14px; }

/* ---------- Gradient text ---------- */
.gradient-gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.gold-shimmer {
  background: linear-gradient(90deg, #c99532, #f5df7a, #c99532);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0%{background-position:-200% 0;} 100%{background-position:200% 0;} }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 8, 18, 0.7);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(10, 8, 18, 0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-badge {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-gold); color: #0a0812; font-weight: 900;
}
.brand-badge.small { width: 32px; height: 32px; font-size: 14px; }
.brand-name { font-weight: 700; letter-spacing: 0.05em; }
.nav-links { display: none; gap: 24px; font-size: 14px; }
.nav-links a {
  color: var(--muted); transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
.menu-toggle { background: transparent; border: 0; color: var(--gold); cursor: pointer; }
.menu-toggle i { width: 24px; height: 24px; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px 20px; border-top: 1px solid var(--border);
  background: rgba(10, 8, 18, 0.95);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { color: var(--muted); padding: 4px 0; }
.mobile-menu a:hover { color: var(--gold); }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero, .page-hero {
  position: relative; padding: 130px 20px 100px; background: var(--gradient-hero);
}
.page-hero.compact { padding: 130px 20px 70px; }
@media (min-width: 640px) {
  .hero, .page-hero { padding: 160px 32px 130px; }
  .page-hero.compact { padding: 160px 32px 80px; }
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.3;
  background: radial-gradient(circle at 20% 30%, rgba(230,184,74,0.25), transparent 40%);
  will-change: transform;
}
.hero-grid { position: relative; display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.2fr 1fr; } }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(230,184,74,0.3); background: rgba(230,184,74,0.05);
  color: var(--gold); font-size: 12px; margin-bottom: 24px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 900; }
.h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; }
.lead { margin-top: 20px; color: var(--muted); font-size: 17px; max-width: 34rem; }
.lead.sm { font-size: 15px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.narrow { max-width: 42rem; }
.center-eb { justify-content: center; }

.split-lines .line {
  display: block;
  overflow: hidden;
}
.split-lines .line {
  animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.split-lines .line:nth-child(2) { animation-delay: 0.12s; }
@keyframes lineReveal {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.stats { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 380px; }
.stat-k { font-size: 28px; font-weight: 900; font-family: 'Playfair Display', serif; font-variant-numeric: tabular-nums; }
.stat-k.counting { animation: statPop 0.35s ease-out; }
@keyframes statPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.stat-v { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Hero card */
.hero-card-wrap { position: relative; }
.hero-card-glow {
  position: absolute; inset: -24px; border-radius: 32px;
  background: var(--gradient-gold); opacity: 0.18; filter: blur(40px);
}
.hero-card {
  position: relative; border-radius: 24px;
  border: 1px solid rgba(230,184,74,0.3);
  background: linear-gradient(160deg, #14163a, #08091a);
  padding: 32px; box-shadow: var(--shadow-blue);
}
.hero-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-badge {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient-gold); color: #0a0812; font-size: 24px; font-weight: 900;
}
.hero-card-title { font-weight: 700; font-size: 18px; }
.hero-card-sub { font-size: 12px; color: var(--gold); font-style: italic; }
.divider {
  height: 1px; margin: 20px 0;
  background: linear-gradient(90deg, transparent, rgba(230,184,74,0.6), transparent);
}
.contact-lines > * { display: flex; align-items: center; gap: 12px; font-size: 14px; margin-bottom: 14px; }
.contact-lines .ico {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(230,184,74,0.15); color: var(--gold); flex-shrink: 0;
}
.contact-lines .ico i { width: 16px; height: 16px; }
.contact-lines.big > * { margin-bottom: 16px; font-size: 15px; transition: color .2s; }
.contact-lines.big > a:hover { color: var(--gold); }
.contact-lines .wrap { word-break: break-all; }
.tagline {
  margin-top: 24px; text-align: center;
  font-size: 10px; letter-spacing: 0.3em; color: rgba(230,184,74,0.8); text-transform: uppercase;
}

.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
.fade-up { animation: fadeUp .8s ease-out both; }
.fade-up.delay-1 { animation-delay: .15s; }
.fade-up.delay-2 { animation-delay: .3s; }
.fade-up.delay-3 { animation-delay: .45s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Sections ---------- */
.section { padding: 90px 20px; position: relative; }
@media (min-width: 640px) { .section { padding: 96px 32px; } }
.bordered { border-top: 1px solid var(--border); }
.section-head { margin-bottom: 8px; }
.center-cta { margin-top: 48px; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px;
}
.eyebrow i { width: 16px; height: 16px; }

/* Editorial */
.editorial-grid {
  display: grid; gap: 40px; align-items: end;
}
@media (min-width: 768px) { .editorial-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.editorial-head { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.editorial-body p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.prose p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.prose .lead { color: var(--fg); font-size: 20px; margin-bottom: 28px; }

/* Belief section */
.belief-section { overflow: hidden; }
.belief-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(60,80,210,0.2), transparent 65%);
}
.belief-head { font-size: clamp(2.2rem, 5vw, 3.6rem); }

.grid { display: grid; gap: 20px; margin-top: 56px; }
.grid-services { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-services { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; border-radius: 18px; padding: 24px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  transition: transform .35s cubic-bezier(0.16,1,0.3,1), border-color .3s, box-shadow .3s;
}
.card:hover { border-color: rgba(230,184,74,0.6); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
.svc .ic {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(230,184,74,0.12); color: var(--gold); transition: background .3s, color .3s;
}
.svc .ic i { width: 24px; height: 24px; }
.svc:hover .ic { background: var(--gradient-gold); color: #0a0812; }
.svc h3 { font-size: 20px; margin-top: 18px; font-weight: 700; }
.svc p { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Values strip */
.values-strip { padding: 60px 20px; background: var(--bg-2); }
.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 0;
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-item {
  padding: 40px 24px; text-align: center;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
@media (min-width: 640px) {
  .value-item { border-bottom: 0; border-right: 1px solid var(--border); }
  .value-item:last-child { border-right: 0; }
}
.value-item:hover { background: rgba(230,184,74,0.04); }
.value-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .3s;
}
.value-item:hover .value-word { transform: scale(1.06); }

/* Marquee — logos scroll only through the centered middle window */
.partners-preview { overflow: hidden; }

.marquee-window {
  display: flex;
  justify-content: center;
  margin: 48px auto 0;
  padding: 0 20px;
}

.marquee-wrap {
  position: relative;
  width: 100%;
  max-width: min(680px, 72vw);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(30, 25, 80, 0.35), rgba(10, 8, 18, 0.6));
  padding: 32px 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 10%, transparent 100%);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 10%, transparent 100%);
}

.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding: 0 24px;
  animation: marquee 26s linear infinite;
}
.marquee-track img {
  height: 72px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  filter: grayscale(20%) brightness(1.05);
  transition: filter .3s, transform .3s;
  flex-shrink: 0;
}
.marquee-track img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.06);
}
@keyframes marquee {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Partners page */
.partner-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
}
.partner-tab {
  padding: 10px 22px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: all .25s;
}
.partner-tab:hover { border-color: rgba(230,184,74,0.5); color: var(--gold); }
.partner-tab.active {
  background: var(--gradient-gold); color: #0a0812; border-color: transparent;
}
.partner-panel { animation: panelIn .4s ease both; }
.partner-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.grid-partners { grid-template-columns: 1fr; margin-top: 0; }
@media (min-width: 768px) { .grid-partners { grid-template-columns: repeat(2, 1fr); } }

.partner-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  transition: transform .35s, border-color .3s, box-shadow .3s;
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,184,74,0.5);
  box-shadow: var(--shadow-gold);
}
.partner-logo {
  background: #fff; padding: 32px;
  display: grid; place-items: center; min-height: 180px;
}
.partner-logo img { max-height: 120px; width: auto; object-fit: contain; }
.partner-info { padding: 28px; }
.partner-info h3 { font-size: 20px; font-weight: 700; }
.partner-motto {
  color: var(--gold); font-style: italic; font-size: 14px; margin: 8px 0 12px;
}
.partner-info p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.partner-logo-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px;
}
@media (min-width: 640px) { .partner-logo-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-logo-item {
  background: #fff; border-radius: 16px; padding: 28px;
  display: grid; place-items: center; min-height: 140px;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.partner-logo-item:hover { transform: scale(1.04); box-shadow: var(--shadow-gold); }
.partner-logo-item img { max-height: 90px; width: auto; object-fit: contain; }

.quote-section { background: var(--bg-2); }
.quote-card {
  border-left: 3px solid var(--gold); padding: 32px 32px 32px 40px;
  font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; line-height: 1.6;
}
.quote-card footer {
  margin-top: 20px; font-family: 'Inter', sans-serif;
  font-style: normal; font-size: 14px; color: var(--gold);
}

/* Industries */
.industries .ind-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(60,80,210,0.25), transparent 60%);
}
.industries .container { position: relative; }
.grid-industries { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-industries { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-industries { grid-template-columns: repeat(6, 1fr); } }
.ind {
  border-radius: 18px; padding: 22px 16px; text-align: center;
  border: 1px solid var(--border); background: rgba(10,8,18,0.5); backdrop-filter: blur(6px);
  transition: border-color .3s, transform .3s;
  font-size: 14px; font-weight: 600;
}
.ind:hover { border-color: var(--gold); transform: translateY(-4px); }
.ind-ic {
  margin: 0 auto 14px; display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(230,184,74,0.4); color: var(--gold);
  transition: background .3s, color .3s;
}
.ind-ic i { width: 22px; height: 22px; }
.ind:hover .ind-ic { background: var(--gold); color: #0a0812; }

/* Packages */
.grid-packages { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-packages { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .grid-packages { grid-template-columns: repeat(5, 1fr); } }
.pkg {
  position: relative; border-radius: 18px; padding: 24px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  transition: transform .35s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
}
.pkg:hover { transform: translateY(-8px); }
.pkg.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #1c1b47, #08091a);
  box-shadow: var(--shadow-gold);
}
.badge-pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 12px; border-radius: 999px;
  background: var(--gradient-gold); color: #0a0812;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
}
.pkg-tag { color: var(--gold); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.pkg-name { font-size: 24px; font-weight: 900; margin-top: 6px; font-family: 'Playfair Display', serif; }
.pkg .divider { background: rgba(230,184,74,0.3); margin: 16px 0; }
.pkg ul li {
  position: relative; padding-left: 22px; font-size: 14px; color: var(--muted); margin-bottom: 10px;
}
.pkg ul li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6b84a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.grid-features { grid-template-columns: 1fr; margin-top: 0; }
@media (min-width: 768px) { .grid-features { grid-template-columns: repeat(3, 1fr); } }
.feature-item { text-align: center; padding: 24px; }
.feature-ic {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  margin: 0 auto 16px; background: rgba(230,184,74,0.12); color: var(--gold);
}
.feature-ic i { width: 24px; height: 24px; }
.feature-item h3 { font-size: 18px; margin-bottom: 8px; }
.feature-item p { font-size: 14px; color: var(--muted); }

/* Departments */
.grid-departments { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-departments { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-departments { grid-template-columns: repeat(4, 1fr); } }
.dept {
  border-radius: 18px; padding: 24px; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(30,25,80,0.5), transparent);
  transition: border-color .3s, transform .3s;
}
.dept:hover { border-color: rgba(230,184,74,0.6); transform: translateY(-4px); }
.dept-num { color: var(--gold); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.dept h3 { font-size: 20px; margin-top: 6px; font-weight: 700; }
.dept .divider { background: rgba(230,184,74,0.2); margin: 14px 0; }
.dept ul li { font-size: 14px; color: var(--muted); margin-bottom: 8px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(160deg, #1d2158 0%, #10113a 50%, #08091a 100%);
  border-top: 1px solid rgba(230,184,74,0.2);
  border-bottom: 1px solid rgba(230,184,74,0.2);
}
.cta-head { line-height: 1.15; }

/* Contact */
.contact-card {
  border-radius: 28px; padding: 32px;
  border: 1px solid rgba(230,184,74,0.3);
  background: linear-gradient(160deg, #1d2158, #10113a 45%, #08091a);
  box-shadow: var(--shadow-blue);
}
@media (min-width: 640px) { .contact-card { padding: 56px; } }
.contact-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.script { font-family: 'Dancing Script', cursive; color: var(--gold); }

.contact-hours { margin-top: 32px; }
.contact-hours h3 { font-size: 16px; margin-bottom: 12px; color: var(--gold); }
.contact-hours li {
  font-size: 14px; color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

#contactForm { display: flex; flex-direction: column; gap: 14px; }
#contactForm .two-col { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { #contactForm .two-col { grid-template-columns: 1fr 1fr; } }
#contactForm input, #contactForm textarea {
  width: 100%; padding: 14px 16px; font-size: 14px;
  background: rgba(10,8,18,0.6); color: var(--fg);
  border: 1px solid var(--border); border-radius: 14px;
  outline: none; font-family: inherit; resize: none;
  transition: border-color .2s, box-shadow .2s;
}
#contactForm input:focus, #contactForm textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230,184,74,0.12);
}
#contactForm button { margin-top: 4px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 56px 20px 32px; }
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; } }
.footer-tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a, .footer-contact span { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; font-size: 13px; color: var(--muted);
}
