/* ============================================
   KAYJAH DESIGN STUDIO — Home Page
   ============================================ */

/* ---- HERO ---- */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-0);
}

.hero-images {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 1.2s var(--ease);
  touch-action: pan-y;
}

.hero-images img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 14s var(--ease-soft) infinite alternate;
}

@keyframes ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

/* Top gradient for nav readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(15, 13, 10, 0.4), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Dim overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 13, 10, 0.7) 0%,
    rgba(15, 13, 10, 0.35) 40%,
    rgba(15, 13, 10, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem var(--gutter) 100px;
  max-width: min(800px, 100%);
  width: 100%;
}

.hero-overline {
  margin-bottom: 0.6rem;
  color: var(--light-2);
  font-weight: 600;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 0.6rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-authority {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--light-2);
  max-width: min(420px, 100%);
  margin-bottom: var(--space-sm);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Vertical side label on hero */
.hero-side-label {
  position: absolute;
  right: var(--gutter);
  bottom: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 232, 219, 0.25);
  z-index: 2;
  white-space: nowrap;
}

/* Hero slide navigation */
.hero-nav {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 232, 219, 0.25);
  background: rgba(15, 13, 10, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-2);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.hero-nav-btn:hover {
  border-color: rgba(240, 232, 219, 0.5);
  background: rgba(15, 13, 10, 0.5);
  color: var(--light);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-dot {
  width: 20px;
  height: 1px;
  background: rgba(240, 232, 219, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s, width 0.4s;
  position: relative;
}

/* 44px touch area via invisible pseudo-element (Apple HIG) */
.hero-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}

.hero-dot.active {
  background: var(--light);
  width: 36px;
}

.hero-dot:hover {
  background: rgba(240, 232, 219, 0.5);
}


/* ---- PHILOSOPHY TEASER ---- */

.philosophy {
  padding: var(--space-md) 0 var(--space-lg);
  background: var(--surface-0);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.philosophy-image-wrap {
  overflow: hidden;
}

.philosophy-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-image-caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.philosophy-caption-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.philosophy-text-col {
  display: flex;
  flex-direction: column;
}

.philosophy-heading {
  margin-bottom: var(--space-sm);
}

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

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--accent);
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  margin-bottom: var(--space-md);
}

.philosophy-text {
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: var(--space-md);
}


/* ---- WORKS SHOWCASE SLIDER ---- */

.works-section {
  background: var(--dark-0);
  padding: var(--space-sm) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}

.works-section .container {
  position: relative;
  z-index: 2;
}

.works-sec-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.works-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.85rem;
}

.works-gold-bar {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--accent-light);
  margin-bottom: 1.4rem;
}

.works-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--light);
}

.works-heading em {
  font-style: italic;
  color: var(--accent-light);
}

.works-slider-outer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-left: 4vw;
  padding-right: 4vw;
}

.works-track {
  display: flex;
  transition: transform 0.9s var(--ease);
  touch-action: pan-y;
}

.work-slide {
  flex: 0 0 100%;
  position: relative;
}

.work-card {
  display: block;
  position: relative;
  width: 100%;
  height: clamp(480px, 70vh, 660px);
  overflow: hidden;
  text-decoration: none;
  border-radius: 4px;
}

.work-img {
  position: absolute;
  inset: 0;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.work-card:hover .work-img img {
  transform: scale(1.04);
  filter: brightness(0.58);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.work-overlay-body {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.work-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--light);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.work-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 232, 219, 0.65);
}

.work-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  transition: color 0.3s, gap 0.3s;
}

.work-card:hover .work-cta {
  color: var(--accent-light);
  gap: 0.8rem;
}

.works-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 232, 219, 0.06);
}

.works-sl-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 54, 69, 0.35);
  background: rgba(10, 9, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.works-sl-btn:hover {
  border-color: var(--accent-light);
  background: rgba(0, 54, 69, 0.12);
}

.works-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.works-dot {
  width: 20px;
  height: 1px;
  background: rgba(0, 54, 69, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  position: relative;
}

.works-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}

.works-dot.active {
  background: var(--accent-light);
  width: 36px;
}

.works-counter {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-muted);
}

.works-cta {
  text-align: center;
  margin-top: var(--space-lg);
}


/* ---- COLLECTION PREVIEW ---- */

.collection-preview {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--surface-1);
}

.collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.collection-preview-heading {
  margin-bottom: var(--space-xs);
}

.collection-preview-text {
  color: var(--ink-2);
  max-width: 380px;
}

.collection-preview-text strong {
  font-weight: 600;
  color: var(--accent);
}

/* Product grid — 3 cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-0);
  border: 1px solid var(--surface-3);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 54, 69, 0.1);
}

/* Image gallery slider */
.product-card-gallery {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
}

.product-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.product-gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery indicator dots */
.product-gallery-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.product-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 246, 241, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.product-gallery-dot.active {
  background: var(--surface-0);
  transform: scale(1.3);
}

.product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface-0);
  background: var(--accent);
  padding: 0.35rem 0.75rem;
  z-index: 2;
}

/* Card body */
.product-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.product-card-cat {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card-name {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.product-card-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-top: 0.15rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--surface-3);
}

.product-card-price {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.product-card-action {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.product-card:hover .product-card-action {
  color: var(--accent-light);
}

/* Collection header button */
.collection-header-btn {
  flex-shrink: 0;
}


/* ---- VIDEO SHOWCASE (Apple-style) ---- */

.video-showcase {
  background: var(--surface-0);
  padding: var(--space-lg) 0 var(--space-lg);
}

.video-showcase-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.video-showcase-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.video-showcase-sub {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0 auto;
}

.video-showcase-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-1);
  aspect-ratio: 16 / 9;
}

.video-showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button — frosted glass circle (Apple style) */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 13, 10, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.4s var(--ease);
  z-index: 2;
}

.video-play-btn:hover {
  background: rgba(15, 13, 10, 0.15);
}

.video-play-btn svg {
  transition: transform 0.3s var(--ease);
}

.video-play-btn:hover svg {
  transform: scale(1.08);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

/* Progress bar — thin, Apple-style */
.video-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(248, 246, 241, 0.12);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-showcase-player:hover .video-progress-bar,
.video-showcase-player.playing .video-progress-bar {
  opacity: 1;
}

.video-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-light);
  transition: width 0.1s linear;
}


/* ---- TESTIMONIAL ---- */

/* ---- QUOTE + CTA CLOSER ---- */

.cta-closer {
  background: var(--dark-1);
  padding: var(--space-xl) 0;
  text-align: center;
  border-top: 1px solid rgba(200, 169, 126, 0.08);
}

.cta-closer-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* Vertical gold thread above the quote */
.cta-closer-inner::before {
  content: '';
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold-muted));
  margin: 0 auto 3rem;
}

.cta-closer-mark {
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(200, 169, 126, 0.05);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
}

.cta-quote {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--light);
  position: relative;
  z-index: 1;
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}

.cta-attribution {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.cta-divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
  margin: 3rem auto;
  opacity: 1;
}

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 300;
  color: var(--light);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.cta-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--light-2);
  margin-bottom: 2.5rem;
}


/* ---- COMPACT CONTACT (kept for other pages) ---- */

.cc-fg {
  margin-bottom: 1.1rem;
}

.cc-fg label {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.cc-fg input,
.cc-fg select,
.cc-fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--surface-3);
  padding: 0.78rem 1rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.87rem;
  font-weight: 400;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.cc-fg input:focus-visible,
.cc-fg select:focus-visible,
.cc-fg textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cc-fg input:focus:not(:focus-visible),
.cc-fg select:focus:not(:focus-visible),
.cc-fg textarea:focus:not(:focus-visible) {
  outline: none;
}

.cc-fg input:focus,
.cc-fg select:focus,
.cc-fg textarea:focus {
  border-color: var(--accent);
  background: rgba(0, 54, 69, 0.03);
}

.cc-fg textarea {
  resize: vertical;
  min-height: 110px;
}

.cc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Info column */
.cc-info-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

.cc-detail {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.cc-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-detail-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.16rem;
}

.cc-detail-value {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.cc-detail-value a {
  color: var(--ink-2);
  transition: color 0.3s;
}

.cc-detail-value a:hover {
  color: var(--accent);
}

/* Mini map */
.cc-map {
  margin-top: 1.8rem;
  aspect-ratio: 16 / 7;
  background: var(--surface-2);
  border: 1px solid var(--accent-border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--accent-muted) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-muted) 1px, transparent 1px);
  background-size: 34px 34px;
}

.cc-map-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cc-map-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 54, 69, 0.15), 0 0 0 8px rgba(0, 54, 69, 0.06);
}

.cc-map-label {
  margin-top: 0.65rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-2);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--accent-border);
}

/* Map embed variant */
.cc-map--embed {
  flex-direction: column;
}

.cc-map--embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cc-map-directions {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  z-index: 3;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--accent-border);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}

.cc-map-directions:hover {
  background: var(--accent-muted);
  border-color: var(--accent);
}

/* Socials */
.cc-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.cc-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.cc-social-btn svg {
  display: block;
  flex-shrink: 0;
}

.cc-social-btn:hover {
  border-color: var(--accent);
  background: var(--accent-muted);
  color: var(--accent);
}


/* ---- FOCUS-VISIBLE (home-specific elements not covered by components.css) ---- */

.hero-nav-btn:focus-visible,
.hero-dot:focus-visible,
.works-sl-btn:focus-visible,
.works-dot:focus-visible,
.product-gallery-dot:focus-visible,
.video-play-btn:focus-visible,
.work-cta:focus-visible,
.cc-social-btn:focus-visible,
.cc-map-directions:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}


/* ---- REDUCED MOTION ---- */

@media (prefers-reduced-motion: reduce) {
  .hero-images img {
    animation: none;
  }

  .hero-images {
    transition: none;
  }

  .works-track {
    transition: none;
  }

  .testimonial-slide {
    transition: none;
  }

  .product-gallery-track {
    transition: none;
  }

  .product-gallery-dot {
    transition: none;
  }

  .product-card {
    transition: none;
  }

  .work-img img {
    transition: none;
  }
}
