/*
Theme Name: Haigster
Theme URI: https://haigster.com
Author: Haigster
Author URI: https://haigster.com
Description: Boutique guitar pedals, tube amps, and pedal-building workshops.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: haigster
Tags: dark, custom-colors, custom-logo, custom-menu, featured-images, full-width-template
*/

:root {
  --red: #E31B1B;
  --red-dark: #C41515;
  --red-light: #FEE2E2;
  --cream: #FBF8F4;
  --cream-mid: #F2EDE6;
  --cream-dark: #E8E0D5;
  --ink: #2C2C2B;
  --ink-mid: #555554;
  --ink-light: #8A8A89;
  --tan: #C8A97E;
  --tan-light: #F5EDD9;
  --green: #4A9470;
  --green-light: #E8F5EF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 3rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(227,27,27,0.25);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(227,27,27,0.3) !important;
}
.nav-cta:active { transform: translateY(0); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(227,27,27,0.3), 0 1px 4px rgba(227,27,27,0.15);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227,27,27,0.35), 0 2px 8px rgba(227,27,27,0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--cream-dark);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn-tan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--tan);
  color: #fff;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(200,169,126,0.3);
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.btn-tan:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-tan:active { transform: translateY(0); }

/* ── Hero ── */
.hero {
  background: var(--cream);
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.hero-left {
  padding: 5rem 4rem 5rem 5%;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.8rem;
  color: var(--ink-mid);
  font-weight: 500;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-left: -8px;
}
.hero-trust-avatars span:first-child { margin-left: 0; }

.hero-stars { color: #F59E0B; font-size: 0.875rem; letter-spacing: 0.02em; }

.hero-right {
  position: relative;
  align-self: stretch;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

/* Wavy divider between hero panels */
.hero-right::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 60px;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
  z-index: 2;
}

.hero-right-inner {
  position: relative;
  z-index: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Product card floating in hero */
.hero-product-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow:
    0 1px 2px rgba(44,44,43,0.06),
    0 8px 32px rgba(44,44,43,0.1),
    0 24px 64px rgba(44,44,43,0.08);
  width: 260px;
  position: relative;
  transition: transform 0.3s ease;
}
.hero-product-card:hover { transform: translateY(-4px); }

.hero-product-card.card-pedal { transform: rotate(-3deg); z-index: 2; }
.hero-product-card.card-pedal:hover { transform: rotate(-3deg) translateY(-4px); }
.hero-product-card.card-amp { transform: rotate(2deg) translateX(20px) translateY(20px); z-index: 1; }
.hero-product-card.card-amp:hover { transform: rotate(2deg) translateX(20px) translateY(16px); }

.hero-cards-stack { position: relative; width: 300px; height: 320px; }
.hero-cards-stack .hero-product-card { position: absolute; }
.hero-cards-stack .card-pedal { top: 0; left: 0; }
.hero-cards-stack .card-amp { top: 60px; left: 40px; }

.product-card-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.product-card-tag.tan {
  color: #92692A;
  background: var(--tan-light);
}

.product-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.product-card-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-light);
}

.product-card-illustration {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--cream);
  border-radius: 8px;
}

/* ── Marquee ── */
.marquee-section {
  background: var(--red);
  padding: 0.875rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Stats ── */
.stats-section {
  background: var(--cream-mid);
  border-bottom: 1px solid var(--cream-dark);
  padding: 3rem 5%;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1rem 2rem;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--cream-dark);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ── Section commons ── */
section { position: relative; }

.section-wrap {
  padding: 6rem 5%;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.875rem;
}

.section-eyebrow::before {
  content: '';
  width: 1.25rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 460px;
  font-weight: 400;
}

/* ── Products ── */
.products-section {
  background: var(--cream);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-tile {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 1px 3px rgba(44,44,43,0.05), 0 4px 16px rgba(44,44,43,0.06);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  cursor: pointer;
}

.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(44,44,43,0.06), 0 16px 48px rgba(44,44,43,0.12);
}

.product-tile:focus-within { outline: 2px solid var(--red); outline-offset: 2px; }

.product-tile-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-tile-visual.red-bg {
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.product-tile-visual.tan-bg {
  background: linear-gradient(135deg, #FBF0DC 0%, #F5E0BB 100%);
}

.product-tile-visual.green-bg {
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
}

.product-tile-body {
  padding: 1.5rem;
}

.product-tile-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.tag-red { color: var(--red); background: var(--red-light); }
.tag-tan { color: #92692A; background: var(--tan-light); }
.tag-green { color: #2D6B4F; background: var(--green-light); }

.product-tile-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.product-tile-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.product-tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.product-tile-link:hover { gap: 0.625rem; }
.product-tile-link:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }

.product-tile-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.product-tile:hover .product-tile-arrow {
  background: var(--red);
  color: #fff;
  transform: translateX(3px);
}

/* ── Workshop ── */
.workshop-section {
  background: var(--cream-mid);
}

.workshop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.workshop-visual {
  position: relative;
}

/* Main visual box */
.workshop-main-visual {
  background: linear-gradient(150deg, #FEE2E2 0%, #FBF0DC 100%);
  border-radius: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,44,43,0.1), 0 24px 64px rgba(44,44,43,0.08);
}

.workshop-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 16px rgba(227,27,27,0.35);
}

/* Floating accent card */
.workshop-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(44,44,43,0.12), 0 1px 3px rgba(44,44,43,0.06);
  width: 200px;
}

.workshop-accent-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

.workshop-accent-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.workshop-accent-sub {
  font-size: 0.75rem;
  color: var(--ink-light);
  font-weight: 500;
  margin-top: 0.25rem;
}

.workshop-list {
  list-style: none;
  margin: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.workshop-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-mid);
  font-weight: 400;
}

.workshop-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ── Social proof ── */
.social-proof-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(44,44,43,0.04), 0 4px 16px rgba(44,44,43,0.05);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(44,44,43,0.05), 0 12px 40px rgba(44,44,43,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.testimonial-stars span { color: #F59E0B; font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-mid);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--ink-light);
  font-weight: 500;
}

/* Average rating badge */
.rating-badge {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(44,44,43,0.06);
}

.rating-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ink);
}

.rating-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 0.05em; }
.rating-count { font-size: 0.75rem; color: var(--ink-light); font-weight: 500; }

/* ── Red CTA section ── */
.cta-section {
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Large watermark text */
.cta-watermark {
  position: absolute;
  right: -2%;
  bottom: -10%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 20rem);
  line-height: 1;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-sub {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  max-width: 480px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--red);
  padding: 1rem 2.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-white:active { transform: translateY(0); }
.btn-white:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ── Footer ── */
footer {
  background: var(--ink);
  color: rgba(251,248,244,0.65);
  padding: 4rem 5% 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-logo {
  height: 30px;
  margin-bottom: 1.25rem;
  /* invert to show on dark background */
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 220px;
  font-weight: 400;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251,248,244,0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(251,248,244,0.55);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: rgba(251,248,244,0.9); }

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

.footer-bottom p { font-size: 0.8125rem; }

.footer-socials { display: flex; gap: 0.75rem; }

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,248,244,0.45);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.footer-socials a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(227,27,27,0.1);
}
.footer-socials a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 400px; }
  .hero-right::before { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .workshop-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-left { padding: 3rem 1.5rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--cream-dark); padding-bottom: 1.25rem; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .workshop-accent-card { right: 0; bottom: -1rem; }
}
