/*
Theme Name: Veluria
Theme URI: https://veluria.com
Description: Plataforma premium de acompanhantes — elegante, sofisticada e discreta
Author: Veluria Dev
Version: 1.0.0
Text Domain: veluria
Tags: adult, escorts, premium, dark, luxury
*/

/* ============================================================
   VELURIA — Design System
   Estética: Luxury Dark / Editorial noir / Sofisticado
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Cores base */
  --clr-bg:          #080808;
  --clr-bg-2:        #0f0f0f;
  --clr-bg-3:        #161616;
  --clr-bg-4:        #1e1e1e;
  --clr-surface:     #121212;
  --clr-border:      rgba(255,255,255,0.07);
  --clr-border-2:    rgba(255,255,255,0.12);

  /* Texto */
  --clr-text:        #f0ede8;
  --clr-text-2:      #a09890;
  --clr-text-3:      #605850;

  /* Accent — ouro envelhecido */
  --clr-gold:        #c9a96e;
  --clr-gold-light:  #e8cfa0;
  --clr-gold-dark:   #8a6d3e;
  --clr-gold-glow:   rgba(201,169,110,0.15);

  /* Feedback */
  --clr-success:     #4caf7d;
  --clr-error:       #cf6679;
  --clr-warn:        #d4a44c;

  /* Tipografia */
  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-serif:      'Playfair Display', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  /* Espaçamentos */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2.5rem;
  --space-2xl:  4rem;
  --space-3xl:  6rem;

  /* Layout */
  --container:      1280px;
  --container-sm:   860px;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.6);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 30px rgba(201,169,110,0.12);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   150ms;
  --dur-mid:    300ms;
  --dur-slow:   600ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

body.admin-bar { padding-top: 32px; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--clr-text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 500; }

p { margin-bottom: var(--space-md); color: var(--clr-text-2); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--clr-gold-light); }

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: var(--clr-gold-dark);
  border-radius: var(--radius-full);
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.container--sm { max-width: var(--container-sm); }

/* ── Gold Divider ──────────────────────────────────────────── */
.divider-gold {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-block: var(--space-xl);
}
.divider-gold::before,
.divider-gold::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-dark), transparent);
}
.divider-gold span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--clr-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  white-space: nowrap;
}

/* ── Section Labels ────────────────────────────────────────── */
.label-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.7em 2em;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

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

/* Primary — ouro sólido */
.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: #080808;
  box-shadow: 0 2px 20px rgba(201,169,110,0.25);
}
.btn-primary::before { background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%); }
.btn-primary:hover { color: #080808; transform: translateY(-1px); box-shadow: 0 6px 30px rgba(201,169,110,0.35); }

/* Ghost — borda ouro */
.btn-ghost {
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold-dark);
}
.btn-ghost::before { background: var(--clr-gold-glow); }
.btn-ghost:hover { color: var(--clr-gold-light); border-color: var(--clr-gold); }

/* Dark */
.btn-dark {
  background: var(--clr-bg-4);
  color: var(--clr-text);
  border: 1px solid var(--clr-border-2);
}
.btn-dark:hover { background: var(--clr-bg-3); color: var(--clr-text); }

.btn-lg { padding: 0.9em 2.6em; font-size: 0.9rem; }
.btn-sm { padding: 0.5em 1.4em; font-size: 0.75rem; }
.btn-full { width: 100%; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-gold-dark);
  box-shadow: var(--shadow-gold);
}

/* ── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(201,169,110,0.15);
  color: var(--clr-gold);
  border: 1px solid rgba(201,169,110,0.25);
}
.badge-verified {
  background: rgba(76,175,125,0.12);
  color: var(--clr-success);
  border: 1px solid rgba(76,175,125,0.2);
}
.badge-online {
  background: rgba(76,175,125,0.15);
  color: var(--clr-success);
}
.badge-online::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-success);
  animation: pulse-online 2s infinite;
}
@keyframes pulse-online {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Form Elements ─────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-lg); }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-2);
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  padding: 0.75em 1em;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  outline: none;
}
.form-control::placeholder { color: var(--clr-text-3); }
.form-control:focus {
  border-color: var(--clr-gold-dark);
  box-shadow: 0 0 0 3px var(--clr-gold-glow);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
  cursor: pointer;
}

/* ── Age Verification Gate ─────────────────────────────────── */
#age-gate {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.age-gate__inner {
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.age-gate__logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--clr-gold);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-xl);
}

.age-gate__title {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.age-gate__text {
  font-size: 0.9rem;
  color: var(--clr-text-2);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.age-gate__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate__divider {
  width: 60px;
  height: 1px;
  background: var(--clr-gold-dark);
  margin: var(--space-xl) auto;
  opacity: 0.5;
}

/* ── Site Header ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur-slow) var(--ease),
              backdrop-filter var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease);
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--clr-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  height: 72px;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--clr-gold);
  letter-spacing: 0.18em;
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--dur-fast) var(--ease);
}
.site-logo:hover { color: var(--clr-gold-light); }
.site-logo span {
  font-style: italic;
  font-weight: 300;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-2);
  text-decoration: none;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav-link:hover,
.nav-link.active { color: var(--clr-text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--clr-text);
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: all var(--dur-mid) var(--ease);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--clr-bg);
  padding: var(--space-xl) var(--space-xl);
  flex-direction: column;
  gap: var(--space-lg);
  z-index: 999;
  border-top: 1px solid var(--clr-border);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--clr-border);
}

/* ── Category Tabs ─────────────────────────────────────────── */
.category-tabs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cat-tab {
  padding: 0.45em 1.2em;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1px solid var(--clr-border-2);
  background: transparent;
  color: var(--clr-text-2);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}
.cat-tab:hover {
  border-color: var(--clr-gold-dark);
  color: var(--clr-gold);
}
.cat-tab.active {
  background: var(--clr-gold-glow);
  border-color: var(--clr-gold-dark);
  color: var(--clr-gold);
}

/* ── Profile Card ──────────────────────────────────────────── */
.profile-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
  cursor: pointer;
  aspect-ratio: 3/4;
}
.profile-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--clr-gold-dark);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.profile-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
  display: block;
}
.profile-card:hover .profile-card__img { transform: scale(1.04); }

.profile-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.35) 45%,
    transparent 70%
  );
  transition: opacity var(--dur-mid) var(--ease);
}

.profile-card__badges {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.profile-card__info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: var(--space-lg);
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2px;
  display: block;
}
.profile-card__age {
  font-size: 0.85rem;
  color: var(--clr-gold);
}
.profile-card__location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 4px;
}
.profile-card__location svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
}

/* Favoritar */
.profile-card__fav {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.7);
}
.profile-card__fav:hover,
.profile-card__fav.active { color: #e05c7a; background: rgba(224,92,122,0.15); border-color: rgba(224,92,122,0.3); }

/* ── Grid ──────────────────────────────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}
@media (max-width: 480px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
}

/* ── Sections ──────────────────────────────────────────────── */
.section { padding-block: var(--space-3xl); }
.section--sm { padding-block: var(--space-2xl); }
.section--dark { background: var(--clr-bg-2); }
.section--surface { background: var(--clr-surface); }

.section__header {
  margin-bottom: var(--space-2xl);
}
.section__header--center {
  text-align: center;
}
.section__header--between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border-2);
  background: transparent;
  color: var(--clr-text-2);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}
.page-btn:hover { border-color: var(--clr-gold-dark); color: var(--clr-gold); }
.page-btn.active { background: var(--clr-gold-glow); border-color: var(--clr-gold-dark); color: var(--clr-gold); }

/* ── Site Footer ───────────────────────────────────────────── */
#site-footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-gold);
  letter-spacing: 0.18em;
  margin-bottom: var(--space-lg);
  display: block;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--clr-text-3);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--clr-text-3);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.footer__links a:hover { color: var(--clr-text-2); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-block: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--clr-text-3);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-lg);
}
.footer__legal-links a {
  font-size: 0.78rem;
  color: var(--clr-text-3);
}
.footer__legal-links a:hover { color: var(--clr-text-2); }

/* ── Toast Notifications ───────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}
.toast {
  background: var(--clr-bg-4);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.85rem;
  color: var(--clr-text);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: toast-in var(--dur-mid) var(--ease-out);
  max-width: 340px;
}
.toast--success { border-left: 3px solid var(--clr-success); }
.toast--error { border-left: 3px solid var(--clr-error); }
.toast--gold { border-left: 3px solid var(--clr-gold); }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Loading Skeleton ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--clr-bg-3) 25%, var(--clr-bg-4) 50%, var(--clr-bg-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Utility ───────────────────────────────────────────────── */
.text-gold { color: var(--clr-gold); }
.text-muted { color: var(--clr-text-2); }
.text-center { text-align: center; }
.italic { font-style: italic; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ── Responsive Header ─────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header__cta .btn { display: none; }
  .header__cta .btn-primary { display: inline-flex; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

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