.font-sans {
  font-family: "Inter", Arial, sans-serif;
}

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

:root {
  --cursor-x: 50%;
  --cursor-y: 50%;
  --navy: #071c36;
  --gold: #bd7730;
  --gold-light: #d08a3f;
  --gold-pale: #e2a35f;
}

/* ── Page base ── */
body {
  background: var(--navy);
  color: #fff;
}

/* ── Header ── */
.site-header {
  background: rgba(7, 28, 54, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-ring {
  background: linear-gradient(135deg, rgba(189,119,48,0.25), rgba(189,119,48,0.08));
  border: 1px solid rgba(189,119,48,0.4);
  box-shadow: 0 0 18px rgba(189,119,48,0.12);
  transition: box-shadow 0.3s ease;
}
a:hover .logo-ring {
  box-shadow: 0 0 28px rgba(189,119,48,0.22);
}

.cta-pill {
  background: rgba(189,119,48,0.15);
  border: 1px solid rgba(189,119,48,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.cta-pill:hover {
  background: rgba(189,119,48,0.28);
  border-color: rgba(189,119,48,0.7);
}

/* ── Hero backgrounds ── */
.hero-bg {
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(189,119,48,0.18), transparent),
    radial-gradient(ellipse 55% 70% at 85% 30%, rgba(30,70,130,0.45), transparent),
    radial-gradient(ellipse 55% 70% at 10% 80%, rgba(10,35,75,0.6), transparent),
    var(--navy);
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.noise-overlay {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
}

.cursor-glow {
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(189,119,48,0.16), transparent 26rem);
  opacity: 0.9;
  transition: background 0.08s;
}

/* ── Orbs ── */
.orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}
.orb--top-right {
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(189,119,48,0.14), transparent 70%);
  top: -8rem;
  right: -10rem;
  animation: orbDrift 18s ease-in-out infinite alternate;
}
.orb--bottom-left {
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(30,80,160,0.28), transparent 70%);
  bottom: -6rem;
  left: -8rem;
  animation: orbDrift 22s ease-in-out infinite alternate-reverse;
}

/* ── Divider ── */
.divider-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189,119,48,0.4) 30%, rgba(189,119,48,0.4) 70%, transparent);
  z-index: 2;
}

/* ── Sparkles ── */
.sparkle {
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 6px;
  pointer-events: none;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(189,119,48,0.10), 0 0 22px rgba(189,119,48,0.38);
  animation: sparkleDrift 7s ease-in-out infinite;
}
.sparkle--one   { top: 15%; left: 12%; }
.sparkle--two   { right: 14%; top: 28%; animation-delay: -2.5s; }
.sparkle--three { bottom: 22%; left: 38%; animation-delay: -4.4s; }
.sparkle--four  { right: 9%; bottom: 35%; animation-delay: -1.3s; }

/* ── Status badge ── */
.status-badge {
  background: linear-gradient(135deg, rgba(189,119,48,0.14), rgba(189,119,48,0.06));
  border: 1px solid rgba(189,119,48,0.35);
  box-shadow: 0 0 30px rgba(189,119,48,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(189,119,48,0.2);
  animation: pulsate 2.4s ease-in-out infinite;
}

/* ── Heading ── */
.title-gradient {
  display: inline-block;
  background: linear-gradient(105deg, #fff 20%, #f3c18e 42%, #bd7730 58%, #fff 80%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShine 5s ease-in-out infinite;
}

/* ── Countdown ── */
.countdown-wrapper {
  width: 100%;
  max-width: 580px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 120px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 12px 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 32px rgba(0,0,0,0.2);
  transition: border-color 0.3s, background 0.3s;
}
.countdown-unit:hover {
  border-color: rgba(189,119,48,0.35);
  background: rgba(189,119,48,0.06);
}

.countdown-num {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.countdown-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}

.countdown-sep {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: rgba(189,119,48,0.5);
  padding: 0 8px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* ── Services ── */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.15);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
  text-align: left;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.service-card:hover::before {
  transform: translateX(120%);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(189,119,48,0.45);
  background: rgba(189,119,48,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 40px rgba(0,0,0,0.22), 0 0 0 1px rgba(189,119,48,0.18);
}

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.service-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.service-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-top: 4px;
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, #c8852d, #a06620);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(189,119,48,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d08a3f, #b07228);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(189,119,48,0.45), inset 0 1px 0 rgba(255,255,255,0.14);
}

.btn-ghost {
  border: 1px solid rgba(189,119,48,0.4);
  background: rgba(189,119,48,0.06);
}
.btn-ghost:hover {
  background: rgba(189,119,48,0.14);
  border-color: rgba(189,119,48,0.65);
  transform: translateY(-2px);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 900ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}
.reveal-1 { animation-delay: 60ms; }
.reveal-2 { animation-delay: 180ms; }
.reveal-3 { animation-delay: 300ms; }
.reveal-4 { animation-delay: 430ms; }
.reveal-5 { animation-delay: 570ms; }
.reveal-6 { animation-delay: 700ms; }

/* ── Keyframes ── */
@keyframes heroBreath {
  from { filter: saturate(1) brightness(1); }
  to   { filter: saturate(1.15) brightness(1.04); }
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.08); }
}

@keyframes sparkleDrift {
  0%, 100% { opacity: 0.3;  transform: translateY(0) scale(0.8); }
  50%       { opacity: 1;   transform: translateY(-16px) scale(1.1); }
}

@keyframes titleShine {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulsate {
  0%, 100% { box-shadow: 0 0 0 3px rgba(189,119,48,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(189,119,48,0.08); }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .countdown-unit {
    padding: 14px 8px 12px;
    border-radius: 12px;
  }
  .countdown-sep {
    padding: 0 5px;
  }
  .mobile-menu-button {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
  }
}

@media (max-width: 400px) {
  .countdown-sep { padding: 0 3px; }
}

/* ── Accessibility ── */
@media (hover: none) {
  .cursor-glow { opacity: 0.28; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
