/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg-primary:    #0f0f0f;
  --bg-secondary:  #f5f5f5;
  --bg-surface:    #1a1a1a;
  --bg-elevated:   #262626;
  --accent:        #dc2626;
  --accent-hover:  #ef4444;
  --accent-dark:   #b91c1c;
  --text-primary:  #ffffff;
  --text-dark:     #1a1a1a;
  --text-muted:    #9ca3af;
  --text-light:    #6b7280;
  --border:        #2a2a2a;
  --border-light:  #e5e7eb;
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.5);
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-full:   9999px;
  --nav-height:    72px;
  --max-width:     1200px;
  --font-body:     'Outfit', system-ui, sans-serif;
  --transition:    0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes toastIn {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.animate-fade-in  { animation: fadeIn  0.5s ease-out; }
.animate-slide-up { animation: slideUp 0.5s ease-out; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 12px auto 0; font-size: 1.05rem; }

/* Light sections (alternating) */
.section-light {
  background: var(--bg-secondary);
  color: var(--text-dark);
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--text-dark); }
.section-light p   { color: var(--text-light); }
.section-light .section-label { color: var(--accent); }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,38,38,0.4);
}

.btn-dark {
  background: #000000;
  color: #ffffff;
}
.btn-dark:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.btn-white {
  background: #ffffff;
  color: #000000;
}
.btn-white:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid #1a1a1a;
}
.btn-outline-dark:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

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

.btn-sm  { padding: 8px 20px;  font-size: 0.78rem; }
.btn-lg  { padding: 18px 40px; font-size: 0.95rem; }
.btn-icon {
  width: 44px; height: 44px; padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  background: #ffffff; color: #000000;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-icon:hover { background: var(--accent); color: #ffffff; }

/* ── Navigation ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #000000;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.6); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
}
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

#nav-user-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  display: none;
}

.nav-icon-btn {
  position: relative;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  transition: color var(--transition);
  line-height: 1;
}
.nav-icon-btn:hover { color: var(--accent); }

#nav-wishlist-count {
  position: absolute;
  top: -6px; right: -6px;
  width: 16px; height: 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #ffffff; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: #000000;
  border-top: 1px solid #1f1f1f;
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid #1f1f1f;
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--accent); }

/* ── Page offset ───────────────────────────────────────────────────────────── */
.page-content { padding-top: var(--nav-height); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000000;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: fadeIn 0.8s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  opacity: 1;
  transform: none;
  animation: slideUp 0.6s ease-out 0.2s forwards;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #ffffff;
  background: linear-gradient(to right, #ffffff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Page hero (inner pages) ───────────────────────────────────────────────── */
.page-hero {
  padding: 28px 0 20px;
  text-align: center;
  background: #000000;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { letter-spacing: -0.02em; margin-bottom: 12px; }
.page-hero p  { color: var(--text-muted); font-size: 1rem; }

/* ── Product cards ─────────────────────────────────────────────────────────── */
.card {
  position: relative;
  cursor: pointer;
}

.card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: grayscale(20%);
}
.card:hover .card-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Floating action button */
.card-action {
  position: absolute;
  bottom: 16px; right: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}
.card:hover .card-action {
  opacity: 1;
  transform: translateY(0);
}

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 10px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.card-body {}

.card-category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.card-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.card:hover .card-title { color: var(--accent); }

.card-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Cards on light sections */
.section-light .card-category { color: var(--text-light); }
.section-light .card-title    { color: var(--text-dark); }
.section-light .card-price    { color: var(--text-light); }
.section-light .card:hover .card-title { color: var(--accent); }

/* ── Grid layouts ──────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }

/* ── Gallery ───────────────────────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: grayscale(100%);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(220,38,38,0);
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(220,38,38,0.1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox-img  { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none; border: none; line-height: 1;
}
.lightbox-close:hover { color: var(--accent); }

/* ── Forms ─────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.section-light .form-label { color: var(--text-light); }

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: #f9f9f9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control::placeholder { color: #aaaaaa; }
.form-control:focus {
  outline: none;
  border-color: #000000;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

/* Dark form variant */
.form-control-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
}
.form-control-dark::placeholder { color: rgba(255,255,255,0.4); }
.form-control-dark:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  box-shadow: none;
}

textarea.form-control { resize: vertical; min-height: 140px; }

/* ── Filter bar ────────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.section-light .filter-btn.active { background: var(--accent); border-color: var(--accent); }

/* ── Divider ───────────────────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border-light);
}
.divider-icon { color: var(--accent); }

/* ── Toasts ────────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 3000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  min-width: 280px; max-width: 380px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease;
  color: var(--text-dark);
}
.toast.success { border-left: 3px solid #16a34a; }
.toast.error   { border-left: 3px solid var(--accent); }
.toast-msg { font-size: 0.88rem; flex: 1; }

/* ── Tables ────────────────────────────────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; }
.table th {
  text-align: left; padding: 12px 16px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.table td {
  padding: 16px; border-bottom: 1px solid var(--border);
  color: var(--text-primary); vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg-elevated); }

/* ── Profile ───────────────────────────────────────────────────────────────── */
.auth-guard-message { text-align: center; padding: 80px 24px; }
.auth-guard-message h2 { margin-bottom: 16px; }
.auth-guard-message p  { color: var(--text-muted); margin-bottom: 28px; }

.profile-header {
  display: flex; align-items: center; gap: 24px;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
}
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700;
  color: var(--accent); flex-shrink: 0;
}

/* ── Spinner ───────────────────────────────────────────────────────────────── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 40px auto;
}

/* ── Newsletter strip ──────────────────────────────────────────────────────── */
.newsletter-strip {
  background: #000000;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 80px;
}
.newsletter-text h3 { color: #ffffff; margin-bottom: 8px; }
.newsletter-text p  { color: rgba(255,255,255,0.55); margin: 0; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 12px; flex-shrink: 0; }
.newsletter-form .form-control-dark { width: 280px; border-radius: var(--radius-full); padding: 14px 24px; }

/* ── Info cards (about / values) ───────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.value-card {
  padding: 40px 32px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.value-card h4 { color: var(--text-dark); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p  { color: var(--text-light); font-size: 0.9rem; margin: 0; }

.value-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent);
  margin: 0 auto 20px;
}

/* ── Contact layout ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }

.contact-info {
  padding: 36px;
  background: #000000;
  border-radius: var(--radius-xl);
  color: #ffffff;
}
.contact-info h3       { color: #ffffff; margin-bottom: 28px; }
.contact-info-item     { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon     { width: 42px; height: 42px; border-radius: var(--radius); background: rgba(220,38,38,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--accent); }
.contact-info-text h4  { font-size: 0.85rem; margin-bottom: 2px; font-family: var(--font-body); color: rgba(255,255,255,0.9); }
.contact-info-text p   { font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.55); }
.contact-info-text a   { color: var(--accent); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: #000000;
  border-top: 1px solid #1a1a1a;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 14px;
}
.footer-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.footer-social  { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-heading {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.45); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── Utility ───────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-strip { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form .form-control-dark { width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  #nav-user-name { display: none !important; }
  .hamburger { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .profile-header { flex-direction: column; text-align: center; }
  .newsletter-strip { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { columns: 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; opacity: 1; transform: none; }
  .hero-bg-img  { animation: none; opacity: 1; }
  .animate-fade-in, .animate-slide-up { animation: none; opacity: 1; }
}
