/* ============================================
   Bigdawg Barbershop — Brampton
   Shared Stylesheet — Black / Gold Theme
   Built by LMTLSS · Digital Growth Studio
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111010;
  --bg-3: #171514;
  --surface: #191716;
  --surface-2: #232120;
  --surface-3: #2e2b28;
  --text: #ffffff;
  --text-soft: #f1e9d8;
  --muted: #a89a7c;
  --muted-2: #6b6250;
  --accent: #c9a227;
  --accent-2: #8a6a14;
  --accent-light: #f0cf6e;
  --accent-glow: rgba(201, 162, 39, 0.4);
  --border: rgba(240, 207, 110, 0.1);
  --border-strong: rgba(240, 207, 110, 0.22);
  --gold: #f0cf6e;
  --success: #34d399;
  --danger: #f87171;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(201, 162, 39, 0.05);
  --shadow-glow: 0 8px 28px rgba(201, 162, 39, 0.32);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Fixed film-grain overlay — pointer-events:none, never on a scrolling container */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; text-wrap: balance; }

.display { font-family: 'Anton', sans-serif; font-weight: 800; letter-spacing: 0.005em; }
.num, .price-amt, .stat .num, .banner-stats .num { font-variant-numeric: tabular-nums; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, 92%); margin: 0 auto; }
.text-accent { color: var(--accent); }
.text-accent-light { color: var(--accent-light); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.4);
}
.btn:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text) !important;
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  box-shadow: none;
}
.btn-ghost:hover { background: var(--surface); box-shadow: none; }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

/* ============ Header ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(12, 11, 10, 0.78);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
header.scrolled { background: rgba(12, 11, 10, 0.96); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--border-strong), 0 4px 14px rgba(201, 162, 39, 0.25);
}
.footer-brand .brand .brand-logo { width: 46px; height: 46px; }
.brand-wordmark {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  /* Single wordmark "BIGDAWGBARBERSHOP" — scales down so it never wraps/overflows on small screens */
  font-size: clamp(1.02rem, 4.4vw, 1.5rem);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 10px;
  border-left: 1px solid var(--border-strong);
  line-height: 1;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}
.brand-text small {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active {
  color: var(--accent-light);
  background: rgba(201, 162, 39, 0.1);
}
.nav-cta { margin-left: 12px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero.hero-lg { min-height: 100vh; display: flex; align-items: center; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.72) 70%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.72) 50%, rgba(10, 10, 10, 0.97) 100%),
    url('/images/hero-bg.jpg') center/cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(201, 162, 39, 0.16), transparent 60%),
    radial-gradient(700px 400px at 0% 90%, rgba(138, 106, 20, 0.12), transparent 60%);
  z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-inner.single { grid-template-columns: 1fr; text-align: center; max-width: 820px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 100px;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-inner.single p.lead { margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-inner.single .hero-cta { justify-content: center; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat .num {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
}
.stat .num .accent { color: var(--accent-light); }
.stat .label { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.hero-card-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--accent-light);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.hero-card p { color: var(--muted); margin-bottom: 22px; font-size: 0.96rem; }
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.info-row:first-of-type { border-top: none; padding-top: 4px; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--accent-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-row .label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.info-row .value { color: var(--text); font-weight: 500; }
.info-row a.value:hover { color: var(--accent-light); }

/* ============ Section Base ============ */
section { padding: 110px 0; position: relative; }
section.tight { padding: 70px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-head.left { text-align: left; margin: 0 0 50px; }
.section-tag {
  display: inline-block;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.06rem; }

.bg-alt { background: var(--bg-2); }
.bg-darker { background: var(--bg); }

/* ============ Cards (Generic) ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(138, 106, 20, 0.08));
  color: var(--accent-light);
  display: grid; place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(201, 162, 39, 0.15);
}
.service-card h3 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.32rem; letter-spacing: 0.01em; margin-bottom: 10px; }
.service-card .price {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 4px;
}
.service-card .price small { font-size: 0.9rem; color: var(--muted); font-family: 'Hanken Grotesk', sans-serif; }
.service-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.service-card .duration {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.85rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s var(--ease);
}
.service-link:hover { gap: 10px; color: var(--accent); }

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual {
  aspect-ratio: 4/5;
  background: var(--surface);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-visual iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.9) grayscale(0.35) brightness(0.85) contrast(1.05) sepia(0.12) hue-rotate(-8deg);
}
.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-badge .big {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  color: var(--accent-light);
  line-height: 1;
}
.about-badge .small { color: var(--text); font-size: 0.9rem; line-height: 1.3; }
.about-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 22px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }
.feature-list { margin-top: 28px; display: grid; gap: 16px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--accent-light);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature h4 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.05rem; letter-spacing: 0.01em; margin-bottom: 2px; color: var(--text); }
.feature p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ============ Why Choose ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.3);
}
.why-num {
  font-family: 'Anton', sans-serif;
  font-size: 3.6rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.why-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.92rem; }

/* ============ Reviews ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.3);
}
.stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text-soft);
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.review-author { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.contact-panel h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.9rem;
  margin-bottom: 22px;
}
.contact-list { display: grid; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .info-icon { width: 44px; height: 44px; }
.contact-item .label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-item .value { color: var(--text); font-weight: 500; font-size: 1rem; }
.contact-item a.value:hover { color: var(--accent-light); }
.hours-list { display: grid; gap: 6px; margin-top: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 4px 0;
  gap: 14px;
}
.hours-row .day { color: var(--muted); }
.hours-row .time { color: var(--text); font-weight: 500; }
.hours-row.closed .time { color: var(--muted-2); }
.hours-row.today { background: rgba(201, 162, 39, 0.1); margin: 0 -8px; padding: 6px 8px; border-radius: 6px; }
.hours-row.today .day, .hours-row.today .time { color: var(--accent-light); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 480px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 480px; filter: invert(0.9) grayscale(0.35) brightness(0.85) contrast(1.05) sepia(0.12) hue-rotate(-8deg); }

/* ============ Forms ============ */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 6px; }
.form-field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.form-field label .req { color: var(--accent-light); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}
.form-field .err-msg {
  color: var(--danger);
  font-size: 0.82rem;
  display: none;
}
.form-field.has-error .err-msg { display: block; }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 10px;
  color: #6ee7b7;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.form-success.show { display: flex; gap: 12px; align-items: center; }
.form-success svg { flex-shrink: 0; }

/* ============ FAQ Accordion ============ */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item.open { border-color: rgba(201, 162, 39, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.faq-q:hover { background: rgba(201, 162, 39, 0.05); }
.faq-q .chev {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--accent-light);
}
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ============ Barbers / Team ============ */
.barber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
}
.barber-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.barber-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.6);
}
.barber-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.barber-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 19, 18, 0.96) 100%);
}
.barber-rating {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(12, 11, 10, 0.78);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
}
.barber-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.barber-name-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.barber-body h3 { font-size: 1.5rem; font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 2px; }
.barber-exp {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.barber-photo--logo {
  background-size: 74% auto;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
}
.barber-photo--logo::after { display: none; }
.barber-body .role { color: var(--accent-light); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.barber-body p { color: var(--muted); font-size: 0.94rem; margin-bottom: 22px; flex: 1; }
.barber-body .btn { width: 100%; }
.barber-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.barber-ig:hover { color: var(--accent-light); border-color: var(--accent); background: rgba(201, 162, 39, 0.06); }
.barber-ig svg { flex-shrink: 0; }
.barber-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.barber-tags span {
  font-size: 0.76rem;
  color: var(--text-soft);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============ CTA Banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.cta-banner h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p { color: rgba(255, 255, 255, 0.92); margin-bottom: 26px; font-size: 1.05rem; position: relative; font-weight: 500; }
.cta-banner .btn {
  background: #ffffff;
  color: var(--accent-2) !important;
  font-weight: 700;
  padding: 14px 28px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.cta-banner .btn:hover { background: #f1f5f9; }

/* ============ Process Steps ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  color: rgba(240, 207, 110, 0.18);
  line-height: 1;
}
.process-step .step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(138, 106, 20, 0.08));
  color: var(--accent-light);
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 162, 39, 0.15);
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

/* ============ Page Hero (smaller) ============ */
.page-hero {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.92) 100%),
    url('/images/hero-bg.jpg') center/cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 400px at 50% 0%, rgba(201, 162, 39, 0.16), transparent 60%);
  z-index: -1;
}
.page-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}
.page-hero p { color: var(--text-soft); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--accent-light); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span.sep { color: var(--muted-2); }

/* ============ Back to Top ============ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  border: none;
  border-radius: 50%;
  color: #ffffff;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s var(--ease);
  z-index: 90;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ============ Toast Notification ============ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 999;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s var(--ease);
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }

/* ============ Footer ============ */
footer {
  background: #070706;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--muted); font-size: 0.94rem; max-width: 320px; margin-top: 18px; }
.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent-light); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  display: grid; place-items: center;
  transition: all 0.2s var(--ease);
}
.social-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--accent-light); }

/* ============ Banner Hero ============ */
/* Fill the viewport and vertically centre the hero block so the logo sits mid-screen,
   not crammed under the header. dvh avoids the iOS Safari URL-bar jump. */
.hero.hero-banner { padding: 0; min-height: 100dvh; display: flex; align-items: center; }
.hero.hero-banner .container { padding-top: clamp(96px, 12vw, 150px); padding-bottom: clamp(64px, 8vw, 100px); }
.banner-inner { text-align: center; max-width: 920px; margin: 0 auto; }
.banner-inner .eyebrow { margin-bottom: 22px; }
.banner-logo {
  display: block;
  width: min(330px, 66%);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin: 6px auto 22px;
  box-shadow:
    0 0 0 1px rgba(240, 207, 110, 0.38),
    0 0 0 9px rgba(201, 162, 39, 0.06),
    0 26px 70px rgba(0, 0, 0, 0.75),
    0 0 80px rgba(201, 162, 39, 0.2);
}
.banner-logo-wrap { margin: 0; line-height: 0; }
.banner-title {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 15vw, 12.5rem);
  line-height: 0.84;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.65);
}
.banner-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(0.86rem, 1.2vw, 1.02rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 18px 0 14px;
  padding-left: 0.45em;
}
.banner-slogan {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: #ffffff;
  letter-spacing: -0.005em;
  margin: 0 auto 26px;
  max-width: 36ch;
  text-wrap: balance;
}
.hero.hero-banner .lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero.hero-banner .hero-cta { justify-content: center; }
.banner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.banner-stats > div { display: flex; flex-direction: column; gap: 4px; }
.banner-stats .num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #ffffff;
  line-height: 1;
}
.banner-stats .label { color: var(--muted); font-size: 0.84rem; letter-spacing: 0.06em; }

/* Gold divider band — thin lit ribbon echoing the shop's gold badge & LED shelving */
.divider-band {
  height: 5px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-2) 18%, var(--accent-light) 50%, var(--accent-2) 82%, transparent 100%);
  box-shadow: 0 0 22px var(--accent-glow);
  position: relative;
}
.divider-band--thin { height: 3px; box-shadow: 0 0 14px var(--accent-glow); }

/* ============ Shop Showcase ============ */
.shop-showcase { padding: 0; background: #0a0a0a; position: relative; }
.shop-showcase__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}
.shop-showcase__media img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.shop-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}

/* ============ Price List (homepage) ============ */
.price-list {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 30px;
}
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 1.08rem; font-weight: 600; color: var(--text); }
.price-dot {
  height: 1px;
  background-image: linear-gradient(90deg, var(--muted-2) 50%, transparent 50%);
  background-size: 6px 1px;
  opacity: 0.6;
}
.price-amt {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.price-amt span { font-family: 'Hanken Grotesk', sans-serif; font-size: 0.82rem; color: var(--muted); margin-left: 6px; letter-spacing: 0; }

/* ============ Cuts Marquee (image-led) ============ */
.cuts-marquee {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.cuts-marquee .marquee-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 0 5%;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.cuts-marquee .marquee-head .title {
  font-family: 'Anton', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.cuts-marquee .marquee-head .title em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent-light);
}
.cuts-marquee .marquee-head p {
  color: var(--muted);
  max-width: 38ch;
  font-size: 0.98rem;
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 80s linear infinite;
  will-change: transform;
}
.marquee-track.reverse { animation-direction: reverse; animation-duration: 95s; }
.marquee-row { display: block; margin-bottom: 18px; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.marquee-tile {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 290px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
}
.marquee-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.marquee-tile:hover img { transform: scale(1.05); }
.marquee-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.5) 100%);
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-row { overflow-x: auto; }
}

/* ============ Products (in-store showcase — no cart) ============ */
.instore-note {
  max-width: 760px;
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 16px 22px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.96rem;
}
.instore-note svg { color: var(--accent-light); flex-shrink: 0; }
.instore-note strong { color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.6);
}
.product-photo {
  aspect-ratio: 4 / 5;
  background: #0d0c0b;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(13, 12, 11, 0.55) 100%);
}
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--border-strong);
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.product-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.product-body h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.product-price {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--accent-light);
  line-height: 1;
  white-space: nowrap;
}
.product-body p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(12, 11, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-cta { width: 100%; text-align: center; margin-left: 0; }
  .nav-toggle { display: inline-flex; }
  .hero-inner, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero { padding: 110px 0 60px; }
  .hero.hero-lg { min-height: auto; }
  .hero::before { background-attachment: scroll; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  section { padding: 70px 0; }
  .section-head { margin-bottom: 50px; }
  .cta-banner { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .banner-stats { grid-template-columns: 1fr; gap: 22px; max-width: 360px; }
  .banner-stats > div { align-items: center; }
  .banner-sub { letter-spacing: 0.4em; }
  .price-list { padding: 4px 22px; }
  .price-row { padding: 18px 0; gap: 14px; }
  .price-amt { font-size: 1.55rem; }
  /* 2x2 barber grid collapses to a single column — two columns get too cramped here */
  .barber-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 520px) {
  .hero-card, .contact-panel { padding: 26px 22px; }
  .brand-logo { width: 34px; height: 34px; }
  .brand { gap: 8px; }
  .hero h1, .banner-title { font-size: clamp(3.2rem, 16vw, 5rem); }
  .services-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .product-grid { grid-template-columns: 1fr; max-width: 340px; }
  .back-to-top { width: 44px; height: 44px; bottom: 18px; right: 18px; }
}


/* ============================================================
   GRAFFITI DISPLAY LAYER
   Loaded last on purpose: the component rules above re-declare
   font-family (Anton) on these same selectors, so this override
   must come after them in the cascade to win.
   Permanent Marker ships a single 400 weight — the explicit
   font-weight/font-style reset stops the browser synthesising a
   faux-bold/italic from the inherited h1..h5 and .banner-slogan rules.
   ============================================================ */
.section-head h2,
.page-hero h1,
.about-content h2,
.cta-banner h2,
.cuts-marquee .marquee-head .title,
.banner-slogan {
  font-family: 'Permanent Marker', 'Anton', cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.005em;
  line-height: 1.16;
}
/* The brush face reads larger than Anton at the same px — pull the big titles back a touch */
.section-head h2 { font-size: clamp(1.95rem, 3.9vw, 3.05rem); }
.page-hero h1    { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.about-content h2{ font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.cta-banner h2   { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.cuts-marquee .marquee-head .title { font-size: clamp(2rem, 4.2vw, 3.4rem); }
.banner-slogan   { font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: var(--accent-light); }
/* The accent word keeps the gold pop but drops Anton's faux-italic */
.cuts-marquee .marquee-head .title em { font-style: normal; color: var(--accent-light); }
