/*
  CREATIVE.CSS — Kluxe Productions
  Full-screen carousel hero, transparent nav, visual tiles,
  photo-backed page heroes, scroll reveal, mobile responsive.
  Inspired by impressstudio.co.ke + cikunyawira.mypixieset.com
*/

/* ================================================
   SITE HERO CAROUSEL (Home page)
   ================================================ */

:root {
  --hero-min-height: clamp(30rem, 78svh, 60rem);
  --hero-min-height-mobile: clamp(28rem, 72svh, 46rem);
  --hero-content-top: calc(var(--nav-height, 70px) + 5rem);
  --hero-content-bottom: 4.5rem;
}

@supports (height: 100dvh) {
  :root {
    --hero-min-height: clamp(30rem, 78dvh, 60rem);
    --hero-min-height-mobile: clamp(28rem, 72dvh, 46rem);
  }
}

.site-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: clamp(32rem, 92svh, 68rem);
  overflow: hidden;
  background: #1a1512;
}

@supports (height: 100dvh) {
  .site-hero {
    height: 100dvh;
    min-height: clamp(32rem, 92dvh, 68rem);
  }
}

/* Slide track — each slide absolutely fills it */
.slide-track {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  will-change: opacity;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark gradient over every slide so text stays legible */
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.45) 72%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

/* ---- Category links overlaid at carousel bottom ---- */
.hero-cats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.6rem 3.5rem;
  text-decoration: none;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.35s ease, opacity 0.35s ease;
  cursor: pointer;
}

.hero-cat:last-child {
  border-right: none;
}

.hero-cat:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1 !important;
}

.hero-cat h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
}

.hero-cat span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
}

/* ---- Slide counter (bottom-right, like Ciku Nyawira) ---- */
.slide-counter {
  position: absolute;
  right: 2.5rem;
  bottom: 7.5rem;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.slide-counter .sc-line {
  opacity: 0.35;
}

/* ---- Navigation arrows ---- */
.slide-arrow {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 12;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slide-arrow.prev {
  left: 2rem;
}

.slide-arrow.next {
  right: 2rem;
}

.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.06);
}

/* Loading spinner while first slide loads */
.slide-loading {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f1a15 0%, #2a241c 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-loading::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 2px solid rgba(212, 165, 116, 0.25);
  border-top-color: var(--accent-warm, #d4a574);
  border-radius: 50%;
  animation: carouselSpin 0.85s linear infinite;
}

@keyframes carouselSpin {
  to { transform: rotate(360deg); }
}

/* ================================================
   TRANSPARENT NAV when overlaid on hero carousel
   ================================================ */

.navbar--on-hero {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  transition: background 0.4s ease, border-color 0.4s ease !important;
}

.navbar--on-hero .logo-text,
.navbar--on-hero .nav-links a,
.navbar--on-hero .nav-links button {
  color: #fff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.navbar--on-hero .nav-links a:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Logo brightness fix on transparent nav */
.navbar--on-hero .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Mobile menu button on transparent nav */
.navbar--on-hero .mobile-menu-btn span {
  background-color: #fff !important;
}

/* ================================================
   HOME INTRO STRIP (below carousel)
   ================================================ */

.home-intro {
  text-align: center;
  padding-block: 4.5rem 3.5rem;
}

.home-intro .eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm, #d4a574);
  margin-bottom: 1.25rem;
  font-family: 'Work Sans', sans-serif;
}

.home-intro h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.home-intro p {
  max-width: 55ch;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ================================================
   VISUAL CATEGORY TILES (replaces emoji icon cards)
   ================================================ */

.visual-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 58vh;
}

.visual-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
}

.visual-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visual-tile:hover .visual-tile__bg {
  transform: scale(1.04);
}

.visual-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.05) 100%
  );
  transition: background 0.4s ease;
}

.visual-tile:hover .visual-tile__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.80) 0%,
    rgba(0, 0, 0, 0.28) 55%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

.visual-tile__label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
}

.visual-tile__label h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.visual-tile__label span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Work Sans', sans-serif;
}

.visual-tile__arrow {
  position: absolute;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.visual-tile:hover .visual-tile__arrow {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.12);
}

/* ================================================
   FULL-BLEED QUOTE SECTION
   ================================================ */

.home-quote {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.home-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 5, 0.65);
}

.quote-inner {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 5rem 2rem;
}

.quote-inner blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: #fffaf5;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 2.5rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.quote-inner blockquote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -2rem;
  color: var(--accent-warm, #d4a574);
  opacity: 0.5;
  margin-right: 0.2rem;
  font-family: Georgia, serif;
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.42s; }
.reveal-delay-5 { transition-delay: 0.54s; }

/* ================================================
   PHOTO HERO — non-home pages
   ================================================ */

.photo-hero {
  position: relative;
  /* starts at top of viewport — nav overlaps it */
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  background-size: cover;
  background-position: center;
}

.gallery-hero {
  min-height: var(--hero-min-height);
}

.photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.38) 50%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

/* Subtle Ken Burns motion */
.photo-hero::after {
  content: '';
  position: absolute;
  inset: -4%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.04) translateX(0); }
  100% { transform: scale(1.00) translateX(-1%); }
}

.photo-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  /* top padding absorbs nav height + breathing room */
  padding: var(--hero-content-top) clamp(1.25rem, 4vw, 3rem) var(--hero-content-bottom);
  color: #fff;
  text-align: center;
}

.gallery-hero__inner {
  max-width: var(--container-max, 1200px);
}

/* ── Scroll-down cue arrow ── */
.photo-hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: 'Work Sans', sans-serif;
  animation: cuePulse 2.2s ease-in-out infinite;
}

.photo-hero__scroll-cue::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes cuePulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(5px); }
}

.photo-hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-warm, #d4a574);
  margin-bottom: 0.85rem;
  font-family: 'Work Sans', sans-serif;
}

.photo-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.photo-hero__subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 55ch;
  line-height: 1.8;
  margin: 0 auto;
}

/* ================================================
   PROCESS STEPS — horizontal numbered flow
   ================================================ */

.work-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 3rem;
  gap: 0;
}

/* Horizontal connecting line across all steps */
.work-steps::before {
  content: '';
  position: absolute;
  top: 0.85rem; /* aligns with center of dot markers */
  left: calc(12.5% + 7px);
  right: calc(12.5% + 7px);
  height: 1px;
  background: linear-gradient(
    to right,
    var(--accent-warm, #d4a574),
    rgba(212, 165, 116, 0.2)
  );
  z-index: 0;
  pointer-events: none;
}

.work-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem 2rem;
  position: relative;
}

/* Ghost number watermark behind each step */
.work-step__bg-num {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 7rem;
  font-weight: 400;
  color: var(--accent-warm, #d4a574);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Dot on the connecting line */
.work-step__dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent-warm, #d4a574);
  border-radius: 50%;
  background: var(--bg-primary, #1f1a15);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  margin-top: 0.15rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.work-step:hover .work-step__dot {
  background: var(--accent-warm, #d4a574);
  box-shadow: 0 0 0 5px rgba(212, 165, 116, 0.18);
}

/* Small numeric label */
.work-step__num {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-warm, #d4a574);
  margin-bottom: 0.6rem;
}

.work-step__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.work-step__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 22ch;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .work-steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
  }
  .work-steps::before { display: none; }
}

@media (max-width: 480px) {
  .work-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ================================================
   VISUAL STATS CARDS (About page — replace emoji)
   ================================================ */

.visual-box {
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent-warm, #d4a574);
  border-radius: 0 0 4px 4px;
  padding: 2rem 1.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.visual-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Hide the emoji icon in about visual boxes */
.visual-box .box-icon {
  display: none;
}

.visual-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  color: var(--accent-warm, #d4a574);
  margin-bottom: 0.25rem;
  line-height: 1;
  font-weight: 500;
}

.visual-box p {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0;
  font-family: 'Work Sans', sans-serif;
}

/* ================================================
   VALUE CARDS — accent line instead of emoji
   ================================================ */

.value-card {
  border-left: 2px solid var(--accent-warm, #d4a574);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  background: var(--bg-secondary);
  border-radius: 0 4px 4px 0;
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Hide emoji icons in value cards */
.value-card .value-icon {
  display: none;
}

.value-card h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

/* ================================================
   PHILOSOPHY NUMBERS — circle style
   ================================================ */

.philosophy-number {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent-warm, #d4a574);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: 'Work Sans', sans-serif;
  color: var(--accent-warm, #d4a574);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* ================================================
   SERVICES SECTION — visual instead of icon
   ================================================ */

.service-item {
  position: relative;
  border-top: 2px solid var(--accent-warm, #d4a574);
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: var(--bg-secondary);
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.service-item::after {
  content: attr(data-num);
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: var(--text-muted);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

/* Hide emoji icon in service items */
.service-item .service-icon {
  display: none;
}

.service-item h3 {
  margin-bottom: 0.75rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.service-features li::before {
  content: '—';
  color: var(--accent-warm, #d4a574);
  opacity: 0.55;
  flex-shrink: 0;
}

/* ================================================
   GALLERY TEASER SECTION (Home)
   ================================================ */

.gallery-teaser {
  background: var(--bg-secondary);
}

/* Hide old emoji lock icon */
.gallery-teaser .gallery-lock {
  display: none;
}

.gallery-content {
  text-align: center;
}

/* ================================================
   SOCIAL LINKS ICONS
   ================================================ */

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.3rem;
  opacity: 0.65;
  transition: opacity 0.3s ease, transform 0.2s ease;
  line-height: 1;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ================================================
   SCHEDULE SERVICE OPTIONS — visual
   ================================================ */

.service-option {
  text-align: center;
}

/* Remove/hide the large emoji in service options */
.service-option .service-icon {
  font-size: 1.6rem;
  opacity: 0.7;
}

/* ================================================
   HOME TESTIMONIAL STRIP
   ================================================ */

.home-testimonial {
  background: var(--bg-secondary);
}

/* ── Testimonial Carousel ── */
.testimonial-car {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  min-height: 160px;
}

.tcar-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.tcar-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tcar-slide blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  quotes: none;
}

.tcar-slide cite {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-style: normal;
  font-family: 'Work Sans', sans-serif;
}

.tcar-slide cite::before {
  content: '— ';
  color: var(--accent-warm);
  opacity: 0.7;
}

.tcar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.tcar-arrow {
  background: none;
  border: 1px solid var(--accent-warm);
  color: var(--accent-warm);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.tcar-arrow:hover {
  background: var(--accent-warm);
  color: #fff;
}

.tcar-dots {
  display: flex;
  gap: 0.5rem;
}

.tcar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.35;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: opacity 0.3s, background 0.3s;
}

.tcar-dot.is-active {
  background: var(--accent-warm);
  opacity: 1;
}

/* legacy single-strip alias (kept for other pages) */
.testimonial-strip {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-strip blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.testimonial-strip cite {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-style: normal;
  font-family: 'Work Sans', sans-serif;
}

.testimonial-strip cite::before {
  content: '— ';
  color: var(--accent-warm);
  opacity: 0.7;
}

/* ================================================
   HOME WORK "LOAD MORE" PREVIEW GRID
   ================================================ */

.home-work-grid {
  columns: 3 240px;
  column-gap: 0.75rem;
}

.home-work-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.home-work-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 2px;
}

.home-work-item:hover img {
  transform: scale(1.03);
}

.center-row {
  text-align: center;
  margin-top: 2.5rem;
}

/* ================================================
   PROCESS TIMELINE SECTION (About)
   ================================================ */

.timeline-marker .marker-icon {
  font-size: 1.4rem;
  opacity: 0.7;
}

/* ================================================
   MOBILE RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
  .hero-cat {
    padding: 1.25rem 2rem;
  }

  .hero-cat h2 {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }

  .visual-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .home-quote {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .site-hero {
    min-height: clamp(34rem, 100svh, 100svh);
  }

  .hero-cats {
    flex-direction: column;
    bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-cat {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-cat:last-child {
    border-bottom: none;
  }

  .hero-cat h2 {
    font-size: clamp(1.15rem, 5vw, 1.5rem);
  }

  .slide-counter {
    right: 1.25rem;
    bottom: auto;
    top: 5.5rem;
  }

  .slide-arrow {
    top: 42%;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .slide-arrow.prev {
    left: 0.75rem;
  }

  .slide-arrow.next {
    right: 0.75rem;
  }

  .visual-tiles {
    grid-template-columns: 1fr;
  }

  .visual-tile {
    min-height: 240px;
  }

  .photo-hero {
    min-height: var(--hero-min-height-mobile);
  }

  .gallery-hero {
    min-height: var(--hero-min-height-mobile);
  }

  .home-intro {
    padding-block: 3rem 2.5rem;
  }
}

/* ================================================
   ADMIN HERO SLIDESHOW — Redesigned
   ================================================ */

/* ── Header row ── */
.hero-ss-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.hero-ss-header__text h3 { margin-bottom: 0.25rem; }
.hero-ss-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.12);
  color: var(--accent-warm, #d4a574);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Slides list ── */
.hero-slides-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-slide-item {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: var(--bg-tertiary, #2a241c);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, transform 0.15s;
}
.hero-slide-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-slide-thumb {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 5px;
  background: var(--bg-secondary);
}

.hero-slide-thumb-placeholder {
  width: 72px;
  height: 48px;
  border-radius: 5px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0.4;
}

.hero-slide-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.hero-slide-label strong {
  font-size: 0.85rem;
  color: var(--text-primary);
}
.hero-slide-label span {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-slide-move {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-slide-move button {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.65rem;
  color: var(--text-secondary);
  transition: background 0.2s, border-color 0.2s;
  background: transparent;
}
.hero-slide-move button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-slide-move button:disabled { opacity: 0.3; cursor: default; }

.hero-slide-delete {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 80, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: #ff6060;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.hero-slide-delete:hover {
  background: rgba(255, 80, 80, 0.12);
  color: #ff3333;
}

.hero-slide-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  border: 2px dashed rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
}

/* ── Action bar ── */
.hero-ss-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.hero-ss-browse-btn,
.hero-ss-url-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text-secondary, #aaa);
}
.hero-ss-browse-btn {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.05));
  border-color: rgba(212, 165, 116, 0.3);
  color: var(--accent-warm, #d4a574);
}
.hero-ss-browse-btn:hover {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.25), rgba(212, 165, 116, 0.1));
  border-color: var(--accent-warm, #d4a574);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.15);
}
.hero-ss-url-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}
.hero-ss-save-btn { margin-left: auto; }

/* ================================================
   HERO PICKER / MANUAL URL — MODALS
   ================================================ */

/* Overlay */
.hero-picker-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.hero-picker-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Modal shell */
.hero-picker-modal {
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary, #1a1610);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-picker-modal-overlay.is-open .hero-picker-modal {
  transform: translateY(0) scale(1);
}

/* Manual URL modal is narrower */
.hero-manual-modal { max-width: 480px; }

/* Header */
.hero-picker-modal__header {
  position: relative;
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-picker-modal__header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.2rem;
}
.hero-picker-modal__header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.hero-picker-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hero-picker-modal__close:hover {
  background: rgba(255, 80, 80, 0.12);
  color: #ff6060;
}

/* Toolbar (source tabs + search) */
.hero-picker-modal__toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.hero-picker-source {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}
.picker-source-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted, #888);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.picker-source-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
}
.picker-source-btn.active {
  background: var(--accent-warm, #d4a574);
  color: #fff;
  border-color: var(--accent-warm, #d4a574);
}
.picker-source-btn svg { flex-shrink: 0; }

/* Search */
.hero-picker-search-wrap {
  flex: 1;
  min-width: 180px;
  position: relative;
}
.hero-picker-search-icon {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.hero-picker-search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.1rem;
  background: var(--bg-tertiary, #2a241c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.hero-picker-search-input::placeholder { color: var(--text-muted, #888); }
.hero-picker-search-input:focus {
  outline: none;
  border-color: var(--accent-warm, #d4a574);
}

/* Filter chips */
.hero-picker-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 1.75rem;
  padding-top: 0.6rem;
}
.hero-picker-filters:empty { display: none; }

.picker-filter-chip {
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted, #888);
  font-size: 0.72rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.picker-filter-chip:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
}
.picker-filter-chip.active {
  background: rgba(212, 165, 116, 0.15);
  color: var(--accent-warm, #d4a574);
  border-color: rgba(212, 165, 116, 0.4);
}

/* Status / loading */
.hero-picker-status {
  font-size: 0.85rem;
  color: var(--text-muted, #888);
  text-align: center;
  padding: 2rem 1rem;
  font-style: italic;
}

.hero-picker-empty {
  font-size: 0.85rem;
  color: var(--text-muted, #888);
  text-align: center;
  padding: 2rem 1rem;
  grid-column: 1 / -1;
}

/* ── Media grid ── */
.hero-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  max-height: calc(88vh - 260px);
}
.hero-picker-grid::-webkit-scrollbar { width: 5px; }
.hero-picker-grid::-webkit-scrollbar-track { background: transparent; }
.hero-picker-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.hero-picker-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-tertiary, #2a241c);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
}
.hero-picker-card:hover {
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.hero-picker-card.is-added {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(0.3);
}

.hero-picker-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--bg-secondary, #1a1a1a);
}

.hero-picker-card__thumb--video {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary, #1a1a1a), rgba(212, 165, 116, 0.08));
  color: var(--accent-warm, #d4a574);
  font-size: 1.4rem;
}
.hero-picker-card__thumb--broken {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary, #1a1a1a);
  color: #ff6060;
  font-size: 1rem;
}

.hero-picker-card__info {
  padding: 0.4rem 0.5rem 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.hero-picker-card__cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--accent-warm, #d4a574);
}
.hero-picker-card__title {
  font-size: 0.7rem;
  color: var(--text-muted, #888);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-picker-card__add {
  width: 100%;
  padding: 0.35rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  color: var(--text-secondary, #aaa);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hero-picker-card__add:hover:not(:disabled) {
  background: rgba(212, 165, 116, 0.12);
  color: var(--accent-warm, #d4a574);
}
.hero-picker-card__add:disabled {
  color: var(--accent-warm, #d4a574);
  cursor: default;
  opacity: 0.7;
}

/* ── Modal footer ── */
.hero-picker-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.hero-picker-modal__selected {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Manual URL body */
.hero-manual-body {
  padding: 1.25rem 1.75rem;
  display: grid;
  gap: 1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-picker-modal {
    max-width: 100%;
    max-height: 94vh;
    border-radius: 12px;
  }
  .hero-picker-modal-overlay { padding: 0.75rem; }
  .hero-picker-modal__toolbar { padding: 0.6rem 1rem; }
  .hero-picker-filters { padding: 0 1rem; padding-top: 0.5rem; }
  .hero-picker-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    padding: 0.6rem 1rem;
    gap: 0.5rem;
  }
  .hero-picker-modal__header { padding: 1.25rem 1rem 0.75rem; }
  .hero-picker-modal__footer { padding: 0.6rem 1rem; }
  .hero-ss-actions { gap: 0.4rem; }
  .hero-ss-browse-btn,
  .hero-ss-url-btn { flex: 1; justify-content: center; font-size: 0.78rem; padding: 0.55rem 0.6rem; }
  .hero-ss-save-btn { margin-left: 0; width: 100%; }
}

@media (max-width: 480px) {
  .hero-picker-grid { grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); }
  .hero-picker-modal__toolbar { flex-direction: column; align-items: stretch; }
  .hero-picker-source { width: 100%; }
  .picker-source-btn { flex: 1; justify-content: center; font-size: 0.75rem; }
  .hero-slide-item { grid-template-columns: 56px 1fr auto auto; gap: 0.5rem; }
  .hero-slide-thumb,
  .hero-slide-thumb-placeholder { width: 56px; height: 38px; }
}
