/* ═══════════════════════════════════════════════════
   CARL BRUCE CLOTHING BRAND — style.css
   Premium African Streetwear · Since 2005
═══════════════════════════════════════════════════ */

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

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --coral:   #e05a5a;
  --teal:    #2d7a8a;
  --gold:    #c9a227;
  --cream:   #f5f0e8;
  --white:   #ffffff;
  --gray:    #888888;

  --ff-display: 'Playfair Display', serif;
  --ff-hero:    'Bebas Neue', sans-serif;
  --ff-body:    'Lato', sans-serif;

  --transition-fast:   0.2s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.6s ease;
  --transition-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

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

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

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* Screen reader only */
.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;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast), background var(--transition-fast);
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(224, 90, 90, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  will-change: left, top;
}

@media (hover: none) {
  .cursor,
  .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 90px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-text {
  font-family: var(--ff-hero);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  letter-spacing: 0.5em;
  color: var(--white);
  opacity: 0;
  animation: fadeIn 0.8s 0.4s forwards;
}

.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--coral);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s forwards;
}

.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.5s 1s forwards;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: var(--coral);
  animation: loadBar 1.8s 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── ANIMATIONS ── */
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: 0.8; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes loadBar {
  to { width: 100%; }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes revealLine {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.3); opacity: 0.8; }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9500;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--coral);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.announce-track {
  display: flex;
  gap: 64px;
  animation: scrollLeft 18s linear infinite;
  white-space: nowrap;
}

.announce-track span {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 38px; /* below announce bar */
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, top 0.4s;
}

.navbar.scrolled {
  top: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-brand {
  font-family: var(--ff-hero);
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  color: var(--white);
}

.nav-brand span {
  color: var(--coral);
}

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

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

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

.nav-icon {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
  padding: 6px;
  display: flex;
  border-radius: 4px;
}

.nav-icon:hover,
.nav-icon:focus-visible {
  color: var(--coral);
  outline: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition-base);
}

@media (max-width: 800px) {
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { top: 38px; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 8999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.5rem;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-base), color var(--transition-base);
}

.mobile-close:hover {
  opacity: 1;
  color: var(--coral);
}

.mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu a {
  font-family: var(--ff-hero);
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--coral);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(24px, 8vw, 120px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(45, 122, 138, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(224, 90, 90, 0.12) 0%, transparent 50%),
    var(--black);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.06) 0%, rgba(45, 122, 138, 0.08) 50%, transparent 70%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  opacity: 0;
  animation: revealUp 0.8s 2.4s forwards;
}

.hero-title {
  font-family: var(--ff-hero);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: revealLine 0.9s var(--transition-spring) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 2.5s; }
.hero-title .line:nth-child(2) { animation-delay: 2.7s; }
.hero-title .line:nth-child(3) { animation-delay: 2.9s; }
.hero-title .line.accent       { color: var(--coral); }

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: revealUp 0.8s 3.1s forwards;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: revealUp 0.8s 3.3s forwards;
}

/* ── HERO SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: revealUp 0.8s 3.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}

/* ── HERO STATS ── */
.hero-stats {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  animation: revealUp 0.8s 3.4s forwards;
}

.stat-item { text-align: right; }
.stat-num  { display: block; font-family: var(--ff-hero); font-size: 2.2rem; letter-spacing: 0.05em; }
.stat-label{ display: block; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); }

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  align-self: flex-end;
}

@media (max-width: 900px) {
  .hero-stats  { display: none; }
  .hero-scroll { display: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--ff-body);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224, 90, 90, 0.35);
  outline: none;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--white);
  color: var(--white);
  outline: none;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover,
.btn-teal:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45, 122, 138, 0.35);
  outline: none;
}

/* ── MARQUEE ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  background: var(--dark);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--ff-hero);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
}

.marquee-track .dot {
  color: var(--coral);
}

/* ── SECTION UTILITIES ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 56px;
}

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

/* ── FADE-UP REVEAL ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── COLLECTIONS ── */
.collections {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 8vw, 120px);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 16px;
}

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

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

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.collection-card:first-child {
  grid-row: span 2;
}

.collection-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--dark2);
}

.collection-card:first-child .collection-img {
  height: 100%;
  min-height: 640px;
}

.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-card:hover .collection-img img {
  transform: scale(1.04);
}

.collection-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-info {
  transform: none;
}

.collection-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--coral);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.collection-tag.teal { background: var(--teal); }
.collection-tag.gold { background: var(--gold); color: var(--black); }

.collection-info h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 6px;
}

.collection-info p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.collection-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.collection-link svg {
  transition: transform var(--transition-base);
}

.collection-card:hover .collection-link svg {
  transform: translateX(4px);
}

/* ── NEW ARRIVALS ── */
.new-arrivals {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--dark);
}

.arrivals-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-base);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn.active {
  color: var(--white);
  border-bottom-color: var(--coral);
}

.tab-btn:hover {
  color: var(--white);
}

.products-panel {
  display: none;
}

.products-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--dark2);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #111;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}

.badge-new     { background: var(--teal); color: var(--white); }
.badge-limited { background: var(--gold); color: var(--black); }
.badge-sale    { background: var(--coral); color: var(--white); }

.quick-add {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(224, 90, 90, 0.92);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px;
  text-align: center;
  transition: bottom var(--transition-base);
}

.product-card:hover .quick-add {
  bottom: 0;
}

.product-info {
  padding: 18px 18px 22px;
}

.product-name {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.4;
}

.product-type {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-price {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--white);
}

.product-colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

/* ── EDITORIAL ── */
.editorial {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.editorial-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(45, 122, 138, 0.12) 0%, transparent 70%);
}

.editorial-adinkra {
  font-family: serif;
  font-size: clamp(8rem, 20vw, 18rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.03;
  pointer-events: none;
  color: var(--gold);
  white-space: nowrap;
}

.editorial-content {
  position: relative;
  z-index: 2;
}

.editorial-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 20px;
}

.editorial-attr {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--dark);
}

.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.test-card {
  background: var(--dark2);
  padding: 32px;
  border-left: 3px solid var(--coral);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.test-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.test-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.test-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  font-style: italic;
}

.test-author strong {
  font-size: 0.82rem;
  display: block;
  margin-bottom: 4px;
}

.test-author span {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* ── GALLERY ── */
.gallery {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 8vw, 120px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(224, 90, 90, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── SOCIAL STRIP ── */
.social-strip {
  background: var(--dark2);
  padding: 24px clamp(24px, 8vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-base);
}

.social-link:hover {
  color: var(--white);
}

.social-link.wa {
  color: #25D366;
}

.social-link.wa:hover {
  color: #4adf80;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.social-link:hover .social-icon {
  border-color: var(--coral);
  background: rgba(224, 90, 90, 0.1);
}

.social-link.wa .social-icon {
  border-color: #25D366;
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 8vw, 120px);
  text-align: center;
  background: var(--coral);
}

.newsletter h2 {
  font-family: var(--ff-hero);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.nl-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 16px;
}

.nl-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  font-family: var(--ff-body);
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.nl-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
}

.nl-btn {
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background var(--transition-base);
  border: 1px solid transparent;
}

.nl-btn:hover,
.nl-btn:focus-visible {
  background: var(--dark2);
  outline: none;
}

.nl-confirm {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  min-height: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: clamp(48px, 8vw, 80px) clamp(24px, 8vw, 120px) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

.footer-brand-col .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-col .logo-wrap img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}

.footer-brand-name {
  font-family: var(--ff-hero);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-slogan {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--coral);
  font-size: 1.1rem;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--gray);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  transition: color var(--transition-base);
}

.footer-socials a:hover {
  color: var(--coral);
}

/* ── FOCUS VISIBLE ── */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}
