/* =========================================================
   SHILIQUE — PREMIUM COMING SOON
   Design System & Full Page Styles
   ========================================================= */

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

:root {
  /* Brand Colors */
  --color-bg:          #0B0B0B;
  --color-bg-secondary:#111111;
  --color-gold:        #D4AF37;
  --color-gold-accent: #C9A227;
  --color-gold-muted:  rgba(212, 175, 55, 0.12);
  --color-gold-border: rgba(212, 175, 55, 0.3);
  --color-gold-border-strong: rgba(212, 175, 55, 0.55);
  --color-white:       #F8F8F8;
  --color-gray:        #9A9A9A;
  --color-gray-muted:  rgba(154, 154, 154, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container:  1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ─── UTILITY ───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.gold-line {
  width: 56px;
  height: 1px;
  background: var(--color-gold);
  margin: 28px 0;
  position: relative;
}

.gold-line--center {
  margin: 28px auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.br-desktop {
  display: none;
}

@media (min-width: 768px) {
  .br-desktop { display: inline; }
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease-out), border-color 0.5s var(--ease-out), backdrop-filter 0.5s;
}

.nav.is-scrolled {
  background: rgba(11, 11, 11, 0.92);
  border-bottom-color: var(--color-gold-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  transition: color 0.25s;
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--color-gold);
}

.nav__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-border);
  padding: 10px 22px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.nav__cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__mobile {
  /* Base state: completely invisible, zero dimensions */
  display: none;
  flex-direction: column;
  background: rgba(11, 11, 11, 0.98);
  border-top: 1px solid var(--color-gold-border);
  /* ZERO padding/margin/height so even if display leaks, nothing shows */
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  gap: 0;
}

.nav__mobile.is-open {
  /* Padding and height only appear when JS has opened the menu */
  padding: 20px clamp(20px, 5vw, 60px) 32px;
  max-height: none;
  overflow: visible;
  animation: menuSlideDown 0.32s var(--ease-out) forwards;
}

.nav__mobile-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-gray);
  padding: 14px 0;
  border-bottom: 1px solid rgba(154, 154, 154, 0.1);
  transition: color 0.2s;
  text-transform: uppercase;
  display: block;
}

.nav__mobile-link:last-child {
  border-bottom: none;
}

.nav__mobile-link:hover {
  color: var(--color-gold);
}

.nav__mobile-cta {
  color: var(--color-gold);
  margin-top: 8px;
}

/* Desktop: force-hide everything mobile */
@media (min-width: 768px) {
  .nav__mobile    { display: none !important; }
  .nav__hamburger { display: none !important; }
}

/* Mobile: show hamburger, hide desktop links */
@media (max-width: 767px) {
  .nav__links          { display: none; }
  .nav__hamburger      { display: flex; }
  /* Kill any legacy cached rule that sets display:flex on the closed menu */
  .nav__mobile         { display: none !important; }
  .nav__mobile.is-open { display: flex !important; }
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px clamp(20px, 5vw, 60px) 100px;
  overflow: hidden;
}

/* Subtle radial light from center */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo-wrap {
  margin-bottom: 32px;
}

.hero__logo {
  height: clamp(100px, 15vw, 200px);
  width: auto;
  max-width: min(420px, 85vw);
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Large desktop cap */
@media (min-width: 1200px) {
  .hero__logo {
    height: 200px;
    max-width: 480px;
  }
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero__heading em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subheading {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 40px;
}

.hero__body {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--color-gray);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* CTAs */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
              border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn__icon {
  flex-shrink: 0;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-accent);
  border-color: var(--color-gold-accent);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(248, 248, 248, 0.25);
}

.btn--secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
}

/* Launch Card */
.launch-card {
  border: 1px solid var(--color-gold-border);
  background: var(--color-bg-secondary);
  padding: clamp(36px, 5vw, 56px) clamp(32px, 5vw, 64px);
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
}

.launch-card::before,
.launch-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-gold);
  border-style: solid;
}

.launch-card::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.launch-card::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.launch-card__icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.launch-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
}

.launch-card__body {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.75;
}

/* Corner decorations */
.hero__corner {
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: var(--color-gold-border);
  border-style: solid;
  opacity: 0.6;
}

.hero__corner--tl { top: 100px; left: 40px; border-width: 1px 0 0 1px; }
.hero__corner--tr { top: 100px; right: 40px; border-width: 1px 1px 0 0; }
.hero__corner--bl { bottom: 40px; left: 40px; border-width: 0 0 1px 1px; }
.hero__corner--br { bottom: 40px; right: 40px; border-width: 0 1px 1px 0; }

@media (max-width: 767px) {
  .hero__corner { display: none; }
}

/* ─── SERVICES ──────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1px;
  border: 1px solid var(--color-gold-border);
}

.service-card {
  background: var(--color-bg);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
  border: none;
  position: relative;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s;
  transition-delay: var(--card-delay, 0s);
  cursor: default;
}

/* Grid inner borders */
.service-card + .service-card {
  border-left: 1px solid var(--color-gold-border);
}

.services__grid .service-card:nth-child(n+4) {
  border-top: 1px solid var(--color-gold-border);
}

/* Mobile: 1-col, tablet: 2-col */
@media (max-width: 639px) {
  .service-card + .service-card { border-left: none; border-top: 1px solid var(--color-gold-border); }
  .services__grid .service-card:nth-child(n+4) { border-top: 1px solid var(--color-gold-border); }
}

@media (min-width: 640px) and (max-width: 979px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(even) { border-left: 1px solid var(--color-gold-border); }
  .service-card:nth-child(n+3) { border-top: 1px solid var(--color-gold-border); }
  .services__grid .service-card:nth-child(n+4) { border-top: 1px solid var(--color-gold-border); }
}

@media (min-width: 980px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card:hover {
  background: var(--color-bg-secondary);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--color-gold-border-strong);
  z-index: 2;
}

.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover .service-card__icon-wrap {
  border-color: var(--color-gold);
  background: var(--color-gold-muted);
}

.service-card__icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__body {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--color-bg);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

@media (max-width: 767px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.about__body {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--color-white);
}

.about__pillar-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.about__visual {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about__logo-frame {
  border: 1px solid var(--color-gold-border);
  background: var(--color-bg-secondary);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about__logo-frame::before,
.about__logo-frame::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--color-gold);
  border-style: solid;
}

.about__logo-frame::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}
.about__logo-frame::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.about__logo-img {
  max-width: 240px;
  margin: 0 auto;
}

.about__stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--color-gold-border);
}

.about__stat {
  background: var(--color-bg-secondary);
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--color-gold-border);
}

.about__stat:last-child {
  border-right: none;
}

.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.about__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
}

/* ─── CONTACT ───────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
}

.contact__card {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--color-gold-border);
  background: var(--color-bg);
  overflow: hidden;
}

.contact__items {
  display: flex;
  flex-direction: column;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 32px) clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--color-gold-border);
  transition: background 0.3s var(--ease-out);
  cursor: pointer;
}

.contact__item:last-child {
  border-bottom: none;
}

.contact__item:hover {
  background: var(--color-bg-secondary);
}

.contact__item:hover .contact__item-icon {
  border-color: var(--color-gold);
  background: var(--color-gold-muted);
}

.contact__item:hover .contact__item-arrow {
  transform: translateX(4px);
  color: var(--color-gold);
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.contact__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact__item-value {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
}

.contact__item-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-gray);
  transition: transform 0.25s var(--ease-out), color 0.25s;
  flex-shrink: 0;
}

.contact__item-arrow svg {
  width: 20px;
  height: 20px;
}

/* ─── NEWSLETTER ────────────────────────────────────────── */
.newsletter {
  padding: var(--section-py) 0;
  background: var(--color-bg);
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
}

.newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__body {
  font-size: 16px;
  color: var(--color-gray);
  margin-top: 12px;
  margin-bottom: 44px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.newsletter__input-wrap {
  display: flex;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--color-gold-border);
  background: var(--color-bg-secondary);
  overflow: hidden;
  transition: border-color 0.3s;
}

.newsletter__input-wrap:focus-within {
  border-color: var(--color-gold);
}

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
  min-width: 0;
}

.newsletter__input::placeholder {
  color: var(--color-gray);
}

.newsletter__btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-bg);
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter__btn:hover {
  background: var(--color-gold-accent);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.newsletter__note {
  font-size: 12px;
  color: rgba(154, 154, 154, 0.6);
  letter-spacing: 0.04em;
}

.newsletter__success {
  font-size: 14px;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border: 1px solid var(--color-gold-border);
  background: var(--color-gold-muted);
  width: 100%;
  max-width: 480px;
  text-align: center;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-secondary);
  padding: clamp(60px, 8vw, 100px) 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: 13px;
  color: var(--color-gray);
  letter-spacing: 0.04em;
}

.footer__made {
  font-size: 13px;
  color: rgba(154, 154, 154, 0.6);
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-gray);
  transition: color 0.25s;
}

.footer__nav-link:hover {
  color: var(--color-gold);
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-border), transparent);
  margin-bottom: 28px;
}

.footer__bottom {
  padding-bottom: 40px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(154, 154, 154, 0.5);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ─── FOCUS STYLES (accessibility) ─────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-border);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ─── RESPONSIVE TWEAKS ─────────────────────────────────── */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .launch-card {
    padding: 32px 24px;
  }

  .contact__item {
    padding: 20px 20px;
    gap: 16px;
  }

  .contact__item-value {
    font-size: 14px;
  }

  .newsletter__input-wrap {
    flex-direction: column;
  }

  .newsletter__btn {
    width: 100%;
    padding: 14px;
  }
}

@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

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

/* ─── PRINT ─────────────────────────────────────────────── */
@media print {
  .nav, .hero__corner { display: none; }
  body { background: white; color: black; }
}
