/* ============================================================
   BARBER/SALON TEMPLATE — Williamson Automation
   Multi-page premium template. Dark theme, gold accent.
   ============================================================ */

/* ═══ THEME PRESETS — uncomment ONE ═══ */

/* BARBER (default) — Dark, masculine, warm gold */
/* Active preset below in :root */

/* SALON — Elegant, rose gold
:root {
  --color-accent: #B76E79;
  --color-accent-dark: #9C5A63;
  --color-accent-light: #D4919A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}
*/

/* NAIL SPA — Soft, blush pink
:root {
  --color-accent: #D4A5A5;
  --color-accent-dark: #B88A8A;
  --color-accent-light: #E8C4C4;
  --font-display: 'Libre Baskerville', Georgia, serif;
}
*/

/* MED SPA — Minimal, cool sage
:root {
  --color-accent: #8BA888;
  --color-accent-dark: #6F8A6C;
  --color-accent-light: #A8C4A5;
  --font-display: 'DM Serif Display', Georgia, serif;
}
*/

/* ────────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES
   ──────────────────────────────────────────────────────────── */

:root {
  /* SWAP ZONE: Brand colors — change these 3 per business */
  --color-accent: #C9A84C;
  --color-accent-dark: #A68A3E;
  --color-accent-light: #D4B86A;

  /* Fixed dark palette */
  --color-bg: #0C0C0C;
  --color-bg-card: #141414;
  --color-bg-elevated: #1A1A1A;
  --color-text: #F0EDE6;
  --color-text-muted: #8A8578;
  --color-border: #2A2A2A;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15), 0 12px 32px rgba(0,0,0,0.1);
  --shadow-elevated: 0 2px 4px rgba(0,0,0,0.25), 0 8px 20px rgba(0,0,0,0.2), 0 20px 48px rgba(0,0,0,0.15);

  /* Transitions */
  --ease-default: 0.3s ease;
  --ease-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ────────────────────────────────────────────────────────────
   2. CSS RESET
   ──────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

/* Overflow prevention */
[class*="grid"] > * {
  min-width: 0;
}

/* ────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ──────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  max-width: 65ch;
  line-height: 1.7;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-muted);
}

/* ────────────────────────────────────────────────────────────
   4. LAYOUT
   ──────────────────────────────────────────────────────────── */

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

section {
  padding: var(--space-section) 0;
}

/* Section variants */
.section--flush { padding-left: 0; padding-right: 0; }
.section--flush .container { width: 100%; max-width: none; padding: 0; }
.section--tight { padding: 2.5rem 0; }
.section--card-bg { background: var(--color-bg-card); }
.section--accent-gradient { background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%); }

/* ────────────────────────────────────────────────────────────
   5. BUTTONS
   ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: transform var(--ease-default), box-shadow var(--ease-default), background-color var(--ease-default), border-color var(--ease-default);
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

@media (hover: hover) {
  .btn--primary:hover {
    background-color: var(--color-accent-light);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  }
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

@media (hover: hover) {
  .btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
  }
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
  min-height: 40px;
}

/* ────────────────────────────────────────────────────────────
   6. ANIMATION UTILITIES (GSAP-managed)
   ──────────────────────────────────────────────────────────── */

/* Hero text visibility fallback — GSAP overrides when it runs */
.no-js .hero__title .word,
.no-js .hero__badge,
.no-js .hero__subtitle,
.no-js .hero__actions {
  opacity: 1 !important;
  transform: none !important;
}

/* Ken Burns animation */
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

/* ────────────────────────────────────────────────────────────
   7. LIGHTBOX
   ──────────────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease-default), visibility var(--ease-default);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: opacity 0.25s ease;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--ease-default);
  z-index: 2001;
}

@media (hover: hover) {
  .lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--ease-default);
  z-index: 2001;
}

.lightbox__nav--prev {
  left: 1.5rem;
}

.lightbox__nav--next {
  right: 1.5rem;
}

@media (hover: hover) {
  .lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  z-index: 2001;
}

/* ────────────────────────────────────────────────────────────
   8. ACCESSIBILITY
   ──────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-left, .reveal-right,
  .stagger-children > *,
  .hero__badge, .hero__title .word, .hero__subtitle, .hero__actions {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__bg img { animation: none !important; }
  .reviews-marquee__track { animation: none !important; }

}

*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.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;
}

/* ────────────────────────────────────────────────────────────
   9. PRINT
   ──────────────────────────────────────────────────────────── */

@media print {
  .nav, .lightbox, .cta-banner, .nav__toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  section {
    padding: 1rem 0;
    break-inside: avoid;
  }
}

/* ────────────────────────────────────────────────────────────
   10. NAVIGATION
   ──────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--ease-smooth), padding var(--ease-smooth), border-color var(--ease-smooth);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom-color: var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.nav__brand span {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease-default);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--ease-default);
}

@media (hover: hover) {
  .nav__links a:hover {
    color: var(--color-text);
  }

  .nav__links a:hover::after {
    width: 100%;
  }
}

.nav__links a.active {
  color: var(--color-accent);
}

.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-accent);
  border-radius: var(--radius-md);
  transition: background var(--ease-default), transform var(--ease-default);
  min-height: 44px;
  white-space: nowrap;
}

.nav__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (hover: hover) {
  .nav__cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-1px);
  }
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--ease-default), opacity var(--ease-default);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ease-smooth), visibility var(--ease-smooth);
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links a {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    color: var(--color-text);
  }

  .nav__cta--desktop {
    display: none;
  }

  .nav__links .nav__cta--mobile {
    display: inline-flex;
    margin-top: var(--space-md);
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

@media (min-width: 768px) {
  .nav__cta--mobile {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────
   11. HERO
   ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
  animation: kenburns 20s ease-in-out infinite;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.2) 0%,
    rgba(12, 12, 12, 0.1) 30%,
    rgba(12, 12, 12, 0.4) 60%,
    rgba(12, 12, 12, 0.85) 85%,
    rgba(12, 12, 12, 1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 0 clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
}

.hero__title {
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 4px 40px rgba(0,0,0,0.2);
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 0 var(--space-2xl);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 767px) {
  .hero {
    align-items: center;
    justify-content: center;
  }

  .hero__content {
    text-align: center;
    padding: 0 var(--space-lg);
    max-width: 520px;
  }

  .hero__subtitle {
    margin: 0 auto var(--space-2xl);
  }

  .hero__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ────────────────────────────────────────────────────────────
   12. TRUST BAR
   ──────────────────────────────────────────────────────────── */

.trust-bar {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-card);
}

.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-bar__item strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.trust-bar__divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
}

@media (max-width: 767px) {
  .trust-bar__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    justify-items: center;
  }

  .trust-bar__divider {
    display: none;
  }

  .trust-bar__item {
    font-size: 0.8rem;
  }
}

/* Trust Strip (new design) */
.trust-strip {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-card);
}
.trust-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-strip__item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.trust-strip__divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}
@media (max-width: 767px) {
  .trust-strip__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    justify-items: center;
  }
  .trust-strip__divider { display: none; }
}

/* Stats bar (about page) */
.stats {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

/* ────────────────────────────────────────────────────────────
   13. INTRO STATEMENT
   ──────────────────────────────────────────────────────────── */

.intro-statement {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) var(--space-lg);
}
.intro-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: none;
}
.intro-statement .accent { color: var(--color-accent); }
.intro-statement__line {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 2rem auto 0;
}

/* ────────────────────────────────────────────────────────────
   14. ABOUT
   ──────────────────────────────────────────────────────────── */

.about {
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content h2 {
  margin-bottom: var(--space-lg);
}

.about__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.about__highlight svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.about__highlight span,
.about__highlight p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.about__more {
  margin-top: var(--space-lg);
}

.about__more a {
  color: var(--color-accent);
  font-weight: 500;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .about__more a:hover {
    color: var(--color-accent-light);
  }
}

@media (max-width: 1023px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__image {
    aspect-ratio: 16 / 9;
  }
}

/* ────────────────────────────────────────────────────────────
   14b. STORY TIMELINE (about page)
   ──────────────────────────────────────────────────────────── */

/* ── Story Timeline ── */
.timeline {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.timeline__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.timeline__track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Center line (SVG) */
.timeline__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  z-index: 0;
}

/* Timeline items */
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 4rem;
}

/* Left items: content on left, dot in middle, empty right */
.timeline__item--left .timeline__card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-right: 2rem;
}
.timeline__item--left .timeline__dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.timeline__item--left .timeline__date {
  grid-column: 3;
  grid-row: 1;
  padding-left: 2rem;
  align-self: center;
}

/* Right items: empty left, dot in middle, content on right */
.timeline__item--right .timeline__card {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  padding-left: 2rem;
}
.timeline__item--right .timeline__dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.timeline__item--right .timeline__date {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-right: 2rem;
  align-self: center;
}

/* The dot on the line */
.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent);
  z-index: 2;
  position: relative;
  top: 0.5rem;
}

/* Dot pulse animation on scroll reveal */
.timeline__dot.pulse {
  animation: dotPulse 0.6s ease-out;
}
@keyframes dotPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 2px var(--color-accent); }
  50% { transform: scale(1.4); box-shadow: 0 0 0 6px rgba(201,168,76,0.3); }
  100% { transform: scale(1); box-shadow: 0 0 0 2px var(--color-accent); }
}

/* Date label */
.timeline__date {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
}

/* Content card */
.timeline__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}

.timeline__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.timeline__card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.timeline__card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
  aspect-ratio: 16/10;
}

/* ── Arrow/connector from dot to card (subtle) ── */
.timeline__item--left .timeline__card::after {
  content: '';
  position: absolute;
  top: 1rem;
  right: -1rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--color-border);
}

.timeline__item--right .timeline__card::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -1rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--color-border);
}

/* ══ MOBILE: Single column, line on left ══ */
@media (max-width: 767px) {
  .timeline__item {
    grid-template-columns: 30px 1fr;
    gap: 0;
    margin-bottom: 2.5rem;
  }

  /* All cards go to column 2, regardless of left/right class */
  .timeline__item--left .timeline__card,
  .timeline__item--right .timeline__card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding-left: 1.25rem;
    padding-right: 0;
  }

  /* All dots go to column 1 */
  .timeline__item--left .timeline__dot,
  .timeline__item--right .timeline__dot {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  /* Date moves inside the card on mobile */
  .timeline__item--left .timeline__date,
  .timeline__item--right .timeline__date {
    display: none; /* Hide the standalone date */
  }

  /* Add date as a label inside the card via data attribute */
  .timeline__card::before {
    content: attr(data-year);
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
  }

  /* SVG line moves to left edge */
  .timeline__line {
    left: 15px;
    transform: none;
  }

  /* Remove card arrows on mobile */
  .timeline__item--left .timeline__card::after,
  .timeline__item--right .timeline__card::before {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────
   15. VISUAL BREAK (parallax photo)
   ──────────────────────────────────────────────────────────── */

.visual-break {
  height: 50vh;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.visual-break img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  filter: brightness(0.7);
}
@media (max-width: 767px) {
  .visual-break { height: 35vh; }
}

/* ────────────────────────────────────────────────────────────
   16. SERVICES & PRICING
   ──────────────────────────────────────────────────────────── */

.services {
  background: var(--color-bg-card);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__header h2 {
  margin-bottom: var(--space-md);
}

.services__header p {
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* Homepage services preview: 3 columns */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

.services__more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Service category headers (full services page) */
.service-category {
  margin-bottom: 5rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category__header {
  margin-bottom: var(--space-xl);
}

.service-category__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.service-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.service-category__desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.service-category__accent {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 1rem;
}

.service-category__line {
  display: none;
}

/* Services page: 2 columns per category */
.service-category .services__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-category .services__grid {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .service-category .services__grid {
    grid-template-columns: 1fr;
  }
}

/* Page header decorative icons */
.page-header__icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.page-header__icons svg {
  color: var(--color-accent);
  opacity: 0.4;
}

/* ── Service card redesign ── */
.service-card {
  position: relative;
  padding: 1.75rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    border-color: rgba(201,168,76,0.15);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }
}

.service-card__badge {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 0.3rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
  z-index: 1;
}

.service-card__badge + .service-card__header {
  margin-top: 1.25rem;
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  gap: var(--space-md);
}

.service-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.service-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}

.service-card__duration svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  opacity: 1;
}

/* Pricing note — footnote style */
.services__note {
  margin-top: var(--space-xl);
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  max-width: 500px;
  margin-inline: auto;
}

.services__note p {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-style: italic;
  opacity: 0.7;
  margin-inline: auto;
}

/* Services Teaser (homepage menu strip) */
.services-teaser {
  background: var(--color-bg);
}
.services-teaser__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-3xl);
  align-items: start;
}
.services-teaser__copy .section-label,
.services-teaser__content .section-label { display: block; }
.services-teaser__copy h2,
.services-teaser__content h2 { margin-bottom: var(--space-lg); }
.services-teaser__copy p,
.services-teaser__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}
.services-teaser__copy a,
.services-teaser__content a,
.services-teaser__link {
  color: var(--color-accent);
  font-weight: 500;
}
.menu-strip,
.services-teaser__list { list-style: none; }
.menu-strip li,
.services-teaser__item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 1rem;
}
.menu-strip li span:last-child,
.services-teaser__price {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}
.services-teaser__name { white-space: nowrap; }
.services-teaser__dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-border);
  margin: 0 var(--space-sm);
  min-width: 20px;
  align-self: flex-end;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .services-teaser__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ────────────────────────────────────────────────────────────
   17. GALLERY
   ──────────────────────────────────────────────────────────── */

.gallery {
  background: var(--color-bg);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.gallery__header h2 {
  margin-bottom: var(--space-md);
}

.gallery__header p {
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* Full gallery page grid — uniform squares, 3 col */
.gallery__grid--full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

@media (max-width: 379px) {
  .gallery__grid--full {
    grid-template-columns: 1fr;
  }
}

/* Homepage gallery preview — 3 images in a row */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

  .gallery__grid .gallery__item:nth-child(n+3) {
    display: none;
  }
}

/* Shared gallery item styles */
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity var(--ease-default);
}

@media (hover: hover) {
  .gallery__item:hover img {
    transform: scale(1.03);
  }

  .gallery__item:hover::after {
    opacity: 1;
  }
}

/* Gallery page header extra breathing room */
.page-header--gallery {
  padding-bottom: var(--space-3xl);
}

.page-header__intro {
  max-width: 600px;
  margin-inline: auto;
}


/* ── Gallery Carousel ── */
.gallery-carousel-wrapper { position: relative; }

.gallery-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 2rem 1rem calc(max(5%, (100vw - 1200px) / 2));
}

.gallery-carousel::-webkit-scrollbar { display: none; }

.gallery-carousel__item {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

@media (hover: hover) {
  .gallery-carousel__item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 35px rgba(0,0,0,0.4);
  }

  .gallery-carousel__item:hover img {
    transform: scale(1.03);
  }
}

/* Carousel navigation arrows */
.gallery-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  cursor: pointer;
  transition: all 0.25s ease;
}

@media (hover: hover) {
  .gallery-carousel__nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.05);
  }
}

.gallery-carousel__nav--prev {
  left: max(1rem, calc((100vw - 1200px) / 2));
}

.gallery-carousel__nav--next {
  right: 2rem;
}

/* Carousel progress bar */
.carousel-progress {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 5%;
}

.carousel-progress__track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.carousel-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.1s ease;
}

/* Responsive carousel */
@media (min-width: 1024px) {
  .gallery-carousel__item {
    width: calc((100vw - calc(max(5%, (100vw - 1200px) / 2)) - 2rem - 1.25rem * 3) / 3.5);
    min-width: 280px;
    max-width: 340px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-carousel__item {
    width: calc((100vw - 10% - 1.25rem * 2) / 2.5);
    min-width: 240px;
  }

  .gallery-carousel {
    padding-left: 5%;
  }
}

@media (max-width: 767px) {
  .gallery-carousel__item {
    width: 85vw;
    min-width: 0;
  }

  .gallery-carousel__nav { display: none; }

  .gallery-carousel {
    padding-left: 5%;
    padding-right: 5%;
  }

  .carousel-progress {
    padding: 0 5%;
  }
}


/* Photo Teaser (homepage) */
.photo-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.photo-teaser__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.photo-teaser__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-teaser__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .photo-teaser__item:hover img { transform: scale(1.05); }
  .photo-teaser__item:hover .photo-teaser__overlay { opacity: 1; }
}
@media (max-width: 767px) {
  .photo-teaser__grid { grid-template-columns: repeat(2, 1fr); }
  .photo-teaser__item:nth-child(3) { display: none; }
}

/* ────────────────────────────────────────────────────────────
   18. REVIEWS
   ──────────────────────────────────────────────────────────── */

.reviews {
  background: var(--color-bg-card);
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.reviews__header h2 {
  margin-bottom: var(--space-md);
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.reviews__stars {
  display: flex;
  gap: 2px;
}

.reviews__stars svg {
  width: 22px;
  height: 22px;
  fill: var(--color-accent);
}

.reviews__score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.reviews__count {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  padding: var(--space-xl);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
}

.review-card__text {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

/* Reviews Marquee */
.reviews-marquee { overflow: hidden; padding: var(--space-section) 0; }
.reviews-marquee__track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.reviews-marquee__track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-card {
  flex: 0 0 auto;
  width: 320px;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.marquee-card__stars { display: flex; gap: 2px; margin-bottom: var(--space-sm); }
.marquee-card__stars svg { width: 14px; height: 14px; fill: var(--color-accent); }
.marquee-card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.marquee-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}
.reviews-marquee__summary {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ────────────────────────────────────────────────────────────
   19. WHY CHOOSE US
   ──────────────────────────────────────────────────────────── */

.why-us {
  background: var(--color-bg);
}

.why-us__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.why-us__header h2 {
  margin-bottom: var(--space-md);
}

.why-us__header p {
  color: var(--color-text-muted);
  margin-inline: auto;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

@media (max-width: 480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

.why-us__card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease-default), transform var(--ease-default);
}

@media (hover: hover) {
  .why-us__card:hover {
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
  }
}

.why-us__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
}

.why-us__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.why-us__card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.why-us__card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-inline: auto;
}

/* ────────────────────────────────────────────────────────────
   20. HOURS & LOCATION
   ──────────────────────────────────────────────────────────── */

.location {
  background: var(--color-bg);
}

.location__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.location__header h2 {
  margin-bottom: var(--space-md);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Open/closed status indicator */
.hours-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

.hours-status--open .hours-status__dot {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
}

.hours-status--open .hours-status__text {
  color: #4ade80;
}

.hours-status--closed .hours-status__dot {
  background: var(--color-text-muted);
  opacity: 0.6;
}

.hours-status--closed .hours-status__text {
  color: var(--color-text-muted);
}

.hours-table {
  width: 100%;
  margin-bottom: var(--space-xl);
}

.hours-table__row {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}

.hours-table__row:last-child {
  border-bottom: none;
}

.hours-table__day {
  font-weight: 600;
  color: var(--color-text);
}

.hours-table__time {
  color: var(--color-text-muted);
  text-align: right;
}

.hours-table__time--closed {
  opacity: 0.5;
}

.hours-table__row.today {
  border-left: 3px solid var(--color-accent);
  padding-left: 0.75rem;
}

.hours-table__row.today .hours-table__day {
  color: var(--color-accent);
  font-weight: 700;
}

.hours-table__row.today .hours-table__time {
  color: var(--color-accent);
}

/* Location info card */
.location__info-card {
  margin-top: var(--space-lg);
  padding: 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.location__info {
  margin-top: var(--space-lg);
}

.location__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.location__info-item:last-child {
  margin-bottom: 0;
}

.location__info-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.location__info-item a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .location__info-item a:hover {
    color: var(--color-accent);
  }
}

/* Map enhanced */
.location__map--enhanced {
  border-radius: 16px;
  overflow: hidden;
  min-height: 450px;
  margin-bottom: var(--space-3xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-top: 2px solid var(--color-accent);
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  margin-bottom: var(--space-3xl);
}

.location__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: brightness(0.8) contrast(1.1);
}

@media (max-width: 767px) {
  .location__map--enhanced {
    min-height: 300px;
  }

  .location__map iframe {
    height: 300px;
  }

  .location__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Directions card */
.directions {
  max-width: 700px;
}

.directions--card {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.directions h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.directions__icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.directions p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.directions__btn {
  margin-top: 0;
}

/* What to Expect */
.what-to-expect {
  background: var(--color-bg);
}

.what-to-expect__card {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--color-bg-card);
  border-radius: 20px;
  border-left: 3px solid var(--color-accent);
}

.what-to-expect__card .section-label {
  color: var(--color-accent);
}

.what-to-expect__card h2 {
  margin-bottom: var(--space-xl);
}

/* 3-step visual */
.expect-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.expect-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.expect-step__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.expect-step__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 100px;
  line-height: 1.3;
}

.expect-step__line {
  width: 50px;
  height: 1px;
  background: var(--color-border);
  flex-shrink: 0;
  margin: 0 0.75rem;
  margin-bottom: 2rem;
}

.what-to-expect__content {
  max-width: 700px;
}

.what-to-expect__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.what-to-expect__content p:last-child {
  margin-bottom: 0;
}

/* ────────────────────────────────────────────────────────────
   21. CTA BANNER
   ──────────────────────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--color-text-muted);
  margin: 0 auto var(--space-xl);
}

.cta-banner__address {
  margin-top: var(--space-md);
  font-size: 0.85rem;
}

/* ────────────────────────────────────────────────────────────
   22. FOOTER
   ──────────────────────────────────────────────────────────── */

.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--ease-default);
}

@media (hover: hover) {
  .footer__links a:hover {
    color: var(--color-accent);
  }
}

.footer__credit {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer__credit a {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ────────────────────────────────────────────────────────────
   23. PAGE HEADER (inner pages)
   ──────────────────────────────────────────────────────────── */

.page-header {
  padding-top: clamp(8rem, 15vw, 12rem);
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-md);
}

.page-header p {
  color: var(--color-text-muted);
  margin: 0 auto;
}

.page-header .section-label {
  display: block;
}

/* ────────────────────────────────────────────────────────────
   24. CONTACT PAGE
   ──────────────────────────────────────────────────────────── */

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-3xl);
}

.contact-form__card {
  background: var(--color-bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.contact-form__card h2 {
  margin-bottom: var(--space-xl);
}

.contact-form {
  max-width: 600px;
}

.contact-form__group {
  margin-bottom: var(--space-lg);
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  outline: none;
}

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

.contact-form__submit {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ────────────────────────────────────────────────────────────
   25. TEAM MEMBERS (shared card styles)
   ──────────────────────────────────────────────────────────── */

.team {
  background: var(--color-bg-card);
}

.team__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.team__header h2 {
  margin-bottom: var(--space-md);
}

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

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

/* ── Team card (clickable link) ── */
.team-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.team-card__photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: var(--space-md);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__photo img {
  transform: scale(1.03);
}

/* Hover overlay */
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card__overlay span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
}

.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.team-card__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* ────────────────────────────────────────────────────────────
   26. TEAM PAGE — Card Grid + Profile Pages
   ──────────────────────────────────────────────────────────── */

/* Team grid — center incomplete rows */
.team-page .team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 100%;
  justify-items: center;
}

/* When 4 members: 3 on top, 1 centered below */
.team-page .team__grid .team-card:nth-child(4):last-child {
  grid-column: 2;
}

@media (max-width: 1023px) {
  .team-page .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-page .team__grid .team-card:nth-child(4):last-child { grid-column: auto; }
}

@media (max-width: 767px) {
  .team-page .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-page .team__grid .team-card:nth-child(4):last-child { grid-column: auto; }
}

/* Clickable team cards on team page */
.team-page .team-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--ease-default), transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

@media (hover: hover) {
  .team-page .team-card:hover {
    border-color: var(--color-accent-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
}

.team-page .team-card .team-card__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  margin-bottom: var(--space-lg);
}

/* ── Profile Hero ── */
.profile-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
}

.profile-hero__inner {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.profile-hero__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.profile-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accent shadow offset behind photo */
.profile-hero__photo::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  opacity: 0.2;
  z-index: -1;
}

.profile-hero__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.profile-hero__title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.profile-hero__experience {
  font-size: 0.8125rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.profile-hero__intro {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* Specialty pills */
.profile-hero__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.profile-hero__pill {
  padding: 0.375rem 1rem;
  border: 1px solid var(--color-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* ── Profile About ── */
.profile-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.profile-about__content {
  max-width: 700px;
  margin: 0 auto;
}

.profile-about__content p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ── Profile Work Gallery (carousel) ── */
.profile-gallery {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-card);
}

.profile-gallery .gallery-carousel__item {
  width: 260px;
  aspect-ratio: 1/1;
}

/* ── Quick Hits ── */
.quick-hits {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.quick-hits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.quick-hit {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.quick-hit__emoji {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.quick-hit__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.quick-hit__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

/* ── Profile Reviews ── */
.profile-reviews {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--color-bg-card);
}

.profile-reviews .reviews__grid {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Back link ── */
.profile-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.profile-back:hover {
  color: var(--color-accent);
}

/* ── Mobile profile ── */
@media (max-width: 767px) {
  .profile-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-hero__photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .profile-hero__specialties {
    justify-content: center;
  }

  .profile-hero__intro {
    max-width: 100%;
  }

  .quick-hits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .profile-hero__photo {
    max-width: 250px;
  }
}

/* ────────────────────────────────────────────────────────────
   27. TEAM PREVIEW (about page — circular photos)
   ──────────────────────────────────────────────────────────── */

.team-preview .team-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
}

.team-preview .team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.team-preview .team-card__bio {
  display: none;
}

.team__more {
  text-align: center;
  margin-top: var(--space-xl);
}

.team__more a {
  color: var(--color-accent);
  font-weight: 500;
}

@media (hover: hover) {
  .team__more a:hover {
    color: var(--color-accent-light);
  }
}

@media (max-width: 767px) {
  .team-preview .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team-preview .team-card__photo { width: 100px; height: 100px; }
}

/* ────────────────────────────────────────────────────────────
   28. SHOP VALUES (about page)
   ──────────────────────────────────────────────────────────── */

.values {
  background: var(--color-bg);
}

.values__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.values__header h2 {
  margin-bottom: var(--space-md);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.values__card {
  text-align: center;
  padding: var(--space-xl);
}

.values__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg);
  color: var(--color-accent);
}

.values__icon svg {
  width: 100%;
  height: 100%;
}

.values__card h3 {
  margin-bottom: var(--space-sm);
}

.values__card p {
  color: var(--color-text-muted);
  margin: 0 auto;
}

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

/* ────────────────────────────────────────────────────────────
   29. PHOTO STRIP (about page full-bleed)
   ──────────────────────────────────────────────────────────── */

.photo-strip {
  padding: 0;
}

.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.photo-strip__grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

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

/* ────────────────────────────────────────────────────────────
   30. FAQ HELP CENTER
   ──────────────────────────────────────────────────────────── */

/* ── Phone link in header ── */
.faq-header__phone {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.faq-header__phone:hover { opacity: 0.8; }

/* ── FAQ Category Navigation (sticky pills) ── */
.faq-nav {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  margin-bottom: 3rem;
}

.faq-nav__inner {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.faq-nav__inner::-webkit-scrollbar { display: none; }

.faq-nav__pill {
  flex: 0 0 auto;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  scroll-snap-align: start;
  text-decoration: none;
}

.faq-nav__pill:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.faq-nav__pill.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
}

/* ── FAQ Category Section ── */
.faq-category {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  scroll-margin-top: 140px;
}

.faq-category__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
}

.faq-category__header svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  flex-shrink: 0;
}

.faq-category__header h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0;
}

/* ── FAQ Item ── */
.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  user-select: none;
}

.faq-item__question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-item__question:hover h3 {
  color: var(--color-accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 300;
  line-height: 1;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  height: 0;
  overflow: hidden;
}

.faq-item__answer-inner {
  padding: 0 0 1.5rem 0;
}

.faq-item__answer-inner p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.faq-item__answer-inner a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.faq-item__answer-inner a:hover {
  border-bottom-color: var(--color-accent);
}

/* ── Still Need Help ── */
.faq-help {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.faq-help h2 { margin-bottom: var(--space-md); }
.faq-help p { color: var(--color-text-muted); margin-bottom: var(--space-xl); }

.faq-help__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .faq-nav { top: 60px; }
  .faq-help__buttons { flex-direction: column; }
  .faq-help__buttons .btn { width: 100%; justify-content: center; }
}

/* ────────────────────────────────────────────────────────────
   31. "NOT SURE" & "JOIN CTA" CARDS
   ──────────────────────────────────────────────────────────── */

.not-sure, .join-cta {
  background: var(--color-bg);
}

.not-sure__card, .join-cta__card {
  padding: var(--space-3xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.not-sure__card--enhanced {
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(
    180deg,
    var(--color-bg-card) 0%,
    color-mix(in srgb, var(--color-bg-card) 92%, var(--color-accent)) 100%
  );
}

.not-sure__card--enhanced h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.not-sure__card h2, .join-cta__card h2 {
  margin-bottom: var(--space-md);
}

.not-sure__card p, .join-cta__card p {
  color: var(--color-text-muted);
  margin: 0 auto var(--space-xl);
}

/* ────────────────────────────────────────────────────────────
   32. CAREERS PAGE
   ──────────────────────────────────────────────────────────── */

.benefits__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.benefit-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

.positions__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Position cards — expandable */
.positions__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.position-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  cursor: pointer;
  position: relative;
  transition: border-color var(--ease-default);
}

@media (hover: hover) {
  .position-card:not(.expanded):hover {
    border-color: var(--color-accent-dark);
  }
}

.position-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.position-card__header h3 {
  font-size: 1.15rem;
}

.position-card__type {
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.position-card__toggle {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.position-card.expanded .position-card__toggle {
  transform: rotate(45deg);
}

.position-card__details {
  display: none;
  padding-top: var(--space-lg);
}

.position-card.expanded .position-card__details {
  display: block;
}

.position-card__details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  margin-top: var(--space-md);
}

.position-card__details h4:first-child {
  margin-top: 0;
}

.position-card__details p {
  color: var(--color-text-muted);
}

.position-card__details a {
  color: var(--color-accent);
}

.positions__empty {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

/* Careers full-width shop photo */
.careers-photo {
  position: relative;
  padding: 0;
  line-height: 0;
}

.careers-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.careers-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--color-bg) 100%);
}

/* ────────────────────────────────────────────────────────────
   33. (reserved — still-questions merged into FAQ help center)
   ──────────────────────────────────────────────────────────── */

/* ────────────────────────────────────────────────────────────
   34. SHOWSTOPPERS
   ──────────────────────────────────────────────────────────── */

/* Hero grain/noise texture overlay */
.hero__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

/* CTA button glow pulse */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
  50% { box-shadow: 0 0 20px 4px rgba(201, 168, 76, 0.25); }
}

.cta-banner .btn--primary {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Decorative quotation mark on review cards */
.review-card::after {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.07;
  pointer-events: none;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  z-index: 9999;
  transition: none;
}

/* ────────────────────────────────────────────────────────────
   35. ANIMATION ENHANCEMENTS
   ──────────────────────────────────────────────────────────── */

/* Parallax image container — clip overflow */
.parallax-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Button hover enhanced — all buttons */
@media (hover: hover) {
  .btn:hover {
    transform: scale(1.02) translateY(-2px);
  }
}

/* CTA glow pulse on ALL primary buttons */
.btn--primary {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Nav link hover letter-spacing */
@media (hover: hover) {
  .nav__links a:hover {
    letter-spacing: 0.12em;
  }
}

/* ────────────────────────────────────────────────────────────
   36. DISABLE SHOWSTOPPERS FOR REDUCED MOTION
   ──────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .cta-banner .btn--primary,
  .btn--primary {
    animation: none;
  }

  .hero__overlay::before {
    display: none;
  }

  .scroll-progress {
    display: none;
  }

  .timeline__dot.pulse { animation: none; }
  .timeline__line-path { stroke-dashoffset: 0 !important; }
}

/* ═══════════════════════════════════════
   TEAM PREVIEW
   ═══════════════════════════════════════ */
.team-preview {
  padding: var(--space-section) 0;
  background: var(--color-bg);
  text-align: center;
}

.team-preview__heading {
  margin-bottom: 3rem;
}

.team-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.team-preview__card {
  text-decoration: none;
  color: var(--color-text);
  display: block;
  transition: transform 0.3s ease;
}

.team-preview__card:hover {
  transform: translateY(-4px);
}

.team-preview__photo {
  overflow: hidden;
  border-radius: var(--radius-md, 8px);
  margin-bottom: 1rem;
  aspect-ratio: 4/5;
}

.team-preview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-preview__card:hover .team-preview__photo img {
  transform: scale(1.03);
}

.team-preview__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--color-heading, var(--color-text));
}

.team-preview__role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.team-preview__cta {
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .team-preview__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .team-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════
   TEAM STORY
   ═══════════════════════════════════════ */
.team-story {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.team-story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-story__content h2 {
  margin-bottom: 1.5rem;
}

.team-story__content p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.team-story__content p:last-child {
  margin-bottom: 0;
}

.team-story__photo {
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
}

.team-story__photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .team-story__layout {
    grid-template-columns: 1fr;
  }
  .team-story__photo {
    order: -1;
  }
}

/* ═══════════════════════════════════════
   TEAM STATS
   ═══════════════════════════════════════ */
.team-stats {
  padding: var(--space-section) 0;
  background: var(--color-bg-elevated, var(--color-bg));
}

.team-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.team-stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.team-stats__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* ═══════════════════════════════════════
   SHOP RULES
   ═══════════════════════════════════════ */
.shop-rules {
  padding: var(--space-section) 0;
  background: var(--color-bg);
  text-align: center;
}

.shop-rules__heading {
  margin-bottom: 3rem;
}

.shop-rules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.shop-rules__card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border, rgba(255,255,255,0.08));
  border-radius: var(--radius-md, 8px);
  text-align: center;
  transition: border-color 0.3s ease;
}

.shop-rules__card:hover {
  border-color: var(--color-accent);
}

.shop-rules__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.shop-rules__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.shop-rules__card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

@media (max-width: 480px) {
  .shop-rules__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ═══════════════════════════════════════
   SERVICES NAV (category jump links)
   ═══════════════════════════════════════ */
.services-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border, rgba(255,255,255,0.08));
  padding: 1rem 0;
}

.services-nav__row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-nav__pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border, rgba(255,255,255,0.12));
  border-radius: 100px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.services-nav__pill:hover,
.services-nav__pill.active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

@media (max-width: 480px) {
  .services-nav__row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .services-nav__row::-webkit-scrollbar {
    display: none;
  }
}

/* ═══════════════════════════════════════
   GALLERY EDITORIAL SECTIONS
   ═══════════════════════════════════════ */
.gallery-editorial {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--color-border, rgba(255,255,255,0.06));
}

.gallery-editorial:last-of-type {
  border-bottom: none;
}

.gallery-editorial__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Flipped: text first (left), carousel second (right) */
.gallery-editorial--flipped .gallery-editorial__layout {
  direction: rtl;
}
.gallery-editorial--flipped .gallery-editorial__layout > * {
  direction: ltr;
}

.gallery-editorial__text h2 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.gallery-editorial__text p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.gallery-editorial__count {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* Mobile: stack vertically, carousel always on top */
@media (max-width: 768px) {
  .gallery-editorial__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-editorial--flipped .gallery-editorial__layout {
    direction: ltr;
  }
  .gallery-editorial__carousel {
    order: -1;
  }
}

/* ═══════════════════════════════════════
   MINI CAROUSEL (per editorial section)
   ═══════════════════════════════════════ */
.gallery-carousel-mini {
  width: 100%;
}

.gallery-carousel-mini__track {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  aspect-ratio: 7/9;
  background: var(--color-bg-elevated, #111);
}

/* Landscape aspect ratio for shop photos */
.gallery-editorial--shop .gallery-carousel-mini__track {
  aspect-ratio: 7/5;
}

.gallery-carousel-mini__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-carousel-mini__slide.active {
  opacity: 1;
}

.gallery-carousel-mini__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

.gallery-carousel-mini__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border, rgba(255,255,255,0.15));
  background: transparent;
  color: var(--color-text);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.gallery-carousel-mini__btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.gallery-carousel-mini__counter {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  min-width: 40px;
  text-align: center;
}

/* ═══════════════════════════════════════
   BEFORE & AFTER
   ═══════════════════════════════════════ */
.before-after {
  padding: clamp(4rem, 8vw, 8rem) 0;
  text-align: center;
}

.before-after__heading {
  margin-bottom: 3rem;
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.before-after__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
}

.before-after__img {
  position: relative;
  overflow: hidden;
}

.before-after__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.before-after__label--after {
  background: var(--color-accent);
  color: var(--color-bg);
}

@media (max-width: 900px) {
  .before-after__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }
}

/* ═══════════════════════════════════════
   SOCIAL NUDGE
   ═══════════════════════════════════════ */
.social-nudge {
  padding: clamp(4rem, 8vw, 8rem) 0;
  text-align: center;
}

.social-nudge__inner {
  text-align: center;
}

.social-nudge__text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ═══════════════════════════════════════
   GALLERY NAV (category jump links)
   ═══════════════════════════════════════ */
.gallery-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border, rgba(255,255,255,0.08));
  padding: 1rem 0;
}

.gallery-nav__row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-nav__pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border, rgba(255,255,255,0.12));
  border-radius: 100px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.gallery-nav__pill:hover,
.gallery-nav__pill.active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

@media (max-width: 480px) {
  .gallery-nav__row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-nav__row::-webkit-scrollbar { display: none; }
}
