/* ===========================
   CatTurns.com — Modern Editorial Redesign
   Inspired by Strevora aesthetic
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Dark palette */
  --dark:       #0D1A10;
  --dark-2:     #162119;
  --dark-3:     #1E2D22;
  --dark-card:  #192620;

  /* Accents */
  --pink:       #FF6B9D;
  --lime:       #B8F04A;
  --cream:      #F2EDE6;
  --warm-white: #FAF8F4;

  /* Text */
  --text-light: #F2EDE6;
  --text-muted: #7A9080;
  --text-dark:  #111816;

  /* Utility */
  --border:     rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --radius:     4px;
  --radius-lg:  12px;
  --shadow:     0 24px 60px rgba(0,0,0,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Utility ── */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 780px;  margin: 0 auto; padding: 0 2rem; }

/* ── Label tag ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--pink);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
}
.btn-primary:hover { background: #e85c8d; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-dark {
  background: var(--dark);
  color: var(--text-light);
  border: 1.5px solid var(--border);
}
.btn-dark:hover { border-color: var(--pink); color: var(--pink); }

.btn-lime {
  background: var(--lime);
  color: var(--dark);
}
.btn-lime:hover { background: #a4da36; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--pink);
  padding: 0;
  font-size: 0.88rem;
  gap: 0.4rem;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1.4rem 0;
  transition: background 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(13, 26, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(242,237,230,0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }
.nav-links .btn { padding: 0.6rem 1.6rem; font-size: 0.82rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text-light); transition: all 0.3s; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Textured background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(30, 60, 35, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 100%, rgba(255, 107, 157, 0.08) 0%, transparent 60%);
}

/* Decorative grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-top {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 9rem 0 4rem;
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--pink);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-btns { display: flex; gap: 1rem; }

/* Hero right panel */
.hero-panel {
  position: relative;
  height: 460px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,60,35,0.6) 0%, rgba(255,107,157,0.1) 100%);
}
.hero-photo-emoji { position: relative; z-index: 1; }

.hero-stat-pill {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.7rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  backdrop-filter: blur(10px);
}
.hero-stat-pill .pill-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
}
.hero-stat-pill .pill-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
}
.pill-1 { bottom: 2rem; left: -2rem; }
.pill-2 { top: 2.5rem; right: -1.5rem; }

/* Hero bottom — big text brand stamp */
.hero-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-brand-stamp {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-muted);
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 2rem;
  border-right: 1px solid var(--border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-num span { color: var(--pink); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Section base ── */
.section { padding: 7rem 0; }
.section-light { background: var(--warm-white); color: var(--text-dark); }
.section-dark  { background: var(--dark-2); }
.section-darker{ background: var(--dark); }

.section-header { margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.section-light .section-header h2 { color: var(--text-dark); }
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-cell {
  background: var(--dark-card);
  padding: 2.5rem;
  transition: background 0.25s;
}
.feature-cell:hover { background: var(--dark-3); }
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--pink);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.feature-cell h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.feature-cell p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Tips grid ── */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.tip-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  transition: border-color 0.25s;
}
.tip-card:hover { border-color: rgba(255,107,157,0.4); }
.tip-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.tip-content .tip-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.4rem;
}
.tip-content h3 {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.tip-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

/* ── Big feature split ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-visual {
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  position: relative;
  overflow: hidden;
}
.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,60,35,0.5) 0%, rgba(255,107,157,0.08) 100%);
}
.split-visual-emoji { position: relative; z-index: 1; }
.split-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}
.split-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.split-content .btn { margin-top: 1.5rem; align-self: flex-start; }

/* Light split */
.split-section.light .split-content { background: var(--warm-white); }
.split-section.light .split-content h2 { color: var(--text-dark); }

/* ── Marquee / logo bar ── */
.marquee-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.marquee-item::after { content: '✦'; color: var(--pink); font-size: 0.5rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Newsletter ── */
.newsletter-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.newsletter-inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.newsletter-inner p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter-form input {
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 1rem 1.4rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: var(--radius);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--pink); }
.newsletter-form .btn { width: 100%; justify-content: center; }
.newsletter-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ── Product cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.product-card:hover {
  border-color: rgba(255,107,157,0.35);
  transform: translateY(-4px);
}
.product-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
}
.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.product-body h3 {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.product-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-light);
}
.product-stars { color: #F59E0B; font-size: 0.85rem; }
.product-card .btn { width: 100%; justify-content: center; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  transition: transform 0.4s ease;
}
.gallery-item.tall .gallery-thumb { aspect-ratio: auto; height: 100%; }
.gallery-item:hover .gallery-thumb { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 0.9rem; font-weight: 600; }

/* Gallery filter */
.gallery-filter {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  width: fit-content;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.65rem 1.4rem;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { color: var(--text-light); background: var(--dark-3); }
.filter-btn.active { background: var(--pink); color: #fff; }

/* ── About page specifics ── */
.about-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(30,60,35,0.5) 0%, transparent 70%);
}
.about-hero-content { position: relative; z-index: 1; }
.about-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.03em;
  color: var(--text-light);
  line-height: 1;
  max-width: 700px;
}
.about-hero h1 em { font-style: italic; color: var(--pink); }
.about-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-top: 1.5rem;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.value-cell {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
}
.value-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.value-cell h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.value-cell p { font-size: 0.88rem; color: #6B7280; line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: rgba(255,107,157,0.35); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
  border: 2px solid var(--border);
}
.team-card h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.team-card .role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.team-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Products page hero ── */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(30,60,35,0.4) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* Affiliate note */
.affiliate-note {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  border-left: 3px solid var(--pink);
}
.affiliate-note strong { color: var(--text-light); }

/* Category divider */
.cat-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.cat-divider h2 { font-size: 1.5rem; color: var(--text-light); }

/* Product pros list */
.pros-list { margin-bottom: 0.75rem; }
.pros-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.18rem 0 0.18rem 1.2rem;
  position: relative;
}
.pros-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.7rem;
}

/* Rating bar */
.rating-bar { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.rating-bar .stars { color: #F59E0B; letter-spacing: 1px; }
.rating-bar .count { font-size: 0.75rem; color: var(--text-muted); }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
}
.lightbox-emoji { font-size: 6rem; margin-bottom: 1.5rem; }
.lightbox-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.lightbox-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--pink); }

/* ── Footer ── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 1.2rem;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(242,237,230,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--pink); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .stat-item { padding: 1.5rem 2rem; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-visual { min-height: 300px; }
  .split-content { padding: 3.5rem 2rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .hero-btns { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .tip-card { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall .gallery-thumb { aspect-ratio: 1; height: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 260px; background: var(--dark-2); padding: 5rem 2rem 2rem; gap: 1.5rem; border-left: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-brand-stamp { font-size: 3rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
