/* ==========================================================================
   Vogue Furniture Studio — styles.css
   ==========================================================================
   Table of contents:
     1. Base & typography
     2. Buttons
     3. Navigation
     4. Hero
     5. Service cards
     6. Portfolio (work grid, filters, pagination)
     7. Collaborator carousel
     8. Process timeline
     9. Workshop
    10. Team carousel & cards
    11. Testimonials
    12. Contact & social
    13. Footer & utilities

   Brand colours: cream #FAF7F2 · charcoal #1A1A1A · gold #C9963F
   After CSS changes, bump ?v= on the link in index.html to bust cache.
   ========================================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background-color: #faf7f2;
}

body {
  background-color: #faf7f2;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   Typography — Cormorant Garamond (headings) + Inter (body)
   -------------------------------------------------------------------------- */

.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.pull-quote {
  color: #3d2f1f;
  font-style: italic;
  border-left-color: #c9963f;
}

.process-step__number {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: rgba(217, 182, 138, 0.55);
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn--primary {
  display: inline-block;
  background-color: #c9963f;
  color: #1a1a1a !important;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn--primary:hover {
  background-color: #b8842f;
  color: #1a1a1a !important;
}

.btn--ghost {
  display: inline-block;
  border: 1px solid rgba(250, 247, 242, 0.65);
  color: #faf7f2 !important;
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--ghost:hover {
  background-color: rgba(250, 247, 242, 0.12);
  color: #faf7f2 !important;
  border-color: #faf7f2;
}

/* --------------------------------------------------------------------------
   Navigation — hamburger drawer (all breakpoints)
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 50;
}

.nav--over-hero:not(.nav--open):not(.nav--scrolled) {
  background-color: transparent;
}

.nav--over-hero:not(.nav--open):not(.nav--scrolled) .nav-bar {
  background-color: transparent;
}

.nav--scrolled {
  background-color: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav--open,
.nav--open.nav--scrolled {
  background-color: rgba(250, 247, 242, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 10002;
  pointer-events: auto;
  max-width: 80rem;
  margin: 0 auto;
  min-height: calc(4rem + env(safe-area-inset-top, 0));
  height: auto;
  padding: env(safe-area-inset-top, 0) 1.25rem 0;
}

@media (min-width: 640px) {
  .nav-bar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-bar {
    min-height: calc(4.75rem + env(safe-area-inset-top, 0));
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 0.875rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.625rem;
  height: 1.5px;
  background-color: #c9963f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #c9963f;
  padding-left: 0.375rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10001;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-toggle__lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.375rem;
  pointer-events: none;
}

.nav-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #faf7f2;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.nav--over-hero:not(.nav--open):not(.nav--scrolled) .nav-toggle__line {
  background-color: #faf7f2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.nav--scrolled .nav-toggle__line,
.nav--open .nav-toggle__line {
  background-color: #1a1a1a;
  box-shadow: none;
}

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

.nav--open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

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

.nav-menu {
  position: fixed;
  top: calc(4rem + env(safe-area-inset-top, 0));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex !important;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #faf7f2;
  padding: 0.75rem 1.5rem 2rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .nav-menu {
    top: calc(4.75rem + env(safe-area-inset-top, 0));
  }
}

.nav-menu .nav-link {
  display: block;
  width: 100%;
  opacity: 0;
  transform: translateY(-6px);
}

.nav-menu.nav-menu--open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu.nav-menu--open .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu.nav-menu--open li:nth-child(1) .nav-link { transition-delay: 0.04s; }
.nav-menu.nav-menu--open li:nth-child(2) .nav-link { transition-delay: 0.07s; }
.nav-menu.nav-menu--open li:nth-child(3) .nav-link { transition-delay: 0.1s; }
.nav-menu.nav-menu--open li:nth-child(4) .nav-link { transition-delay: 0.13s; }
.nav-menu.nav-menu--open li:nth-child(5) .nav-link { transition-delay: 0.16s; }
.nav-menu.nav-menu--open li:nth-child(6) .nav-link { transition-delay: 0.19s; }
.nav-menu.nav-menu--open li:nth-child(7) .nav-link { transition-delay: 0.22s; }
.nav-menu.nav-menu--open li:nth-child(8) .nav-link { transition-delay: 0.25s; }

.nav-menu li:last-child .nav-link {
  border-bottom: none;
}

.nav-menu .nav-link {
  border-bottom: 1px solid rgba(232, 226, 213, 0.5);
}

body.nav-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  display: block;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg-img {
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-position: center center;
}

.hero--collage .hero__bg-img {
  object-position: center 45%;
}

.hero--collage .hero__overlay {
  background:
    linear-gradient(
      105deg,
      rgba(26, 26, 26, 0.82) 0%,
      rgba(26, 26, 26, 0.45) 45%,
      rgba(26, 26, 26, 0.12) 70%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(26, 26, 26, 0.88) 0%,
      rgba(26, 26, 26, 0.45) 40%,
      transparent 70%
    );
}

.hero__overlay {
  background:
    radial-gradient(
      ellipse 85% 70% at 50% 48%,
      rgba(26, 26, 26, 0.42) 0%,
      rgba(26, 26, 26, 0.18) 45%,
      transparent 72%
    ),
    linear-gradient(
      to bottom,
      rgba(26, 26, 26, 0.35) 0%,
      rgba(26, 26, 26, 0.12) 42%,
      rgba(26, 26, 26, 0.45) 100%
    );
}

@media (max-width: 767px) {
  .hero__bg-img {
    object-position: center 35%;
  }

  .hero__overlay {
    background:
      radial-gradient(
        ellipse 100% 55% at 50% 22%,
        rgba(26, 26, 26, 0.55) 0%,
        rgba(26, 26, 26, 0.2) 55%,
        transparent 78%
      ),
      linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.45) 0%,
        rgba(26, 26, 26, 0.12) 42%,
        rgba(26, 26, 26, 0.55) 100%
      );
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__bg-img {
    object-position: center 42%;
  }

  .hero__overlay {
    background:
      radial-gradient(
        ellipse 100% 65% at 50% 46%,
        rgba(26, 26, 26, 0.5) 0%,
        rgba(26, 26, 26, 0.22) 50%,
        transparent 75%
      ),
      linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.15) 45%,
        rgba(26, 26, 26, 0.55) 100%
      );
  }
}

@media (max-width: 1023px) {
  .hero__headline {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
  }

  .hero__lead {
    font-size: clamp(1.15rem, 4vw, 1.45rem) !important;
    line-height: 1.45 !important;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 18rem;
    text-align: center;
  }
}

.hero__inner--center {
  justify-content: flex-start;
  min-height: 100%;
  padding-bottom: clamp(2rem, 8vh, 4rem);
}

.hero__intro {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  padding-top: calc(clamp(6.25rem, 21vh, 8.75rem) + env(safe-area-inset-top, 0));
}

.hero__brand {
  width: 100%;
  text-align: center;
}

.hero__copy {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding-top: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__intro {
    max-width: 48rem;
    padding-top: calc(clamp(5rem, 17vh, 9.5rem) + env(safe-area-inset-top, 0));
  }

  .hero__copy {
    max-width: none;
    padding-top: 1.5rem;
  }
}

.hero__content {
  position: relative;
  padding: 1.25rem 0 0.25rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero__content--center {
  width: 100%;
}

/* Hero wordmark — Vogue / ✦ / Furniture Studio */
.hero-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.2vh, 0.5rem);
  margin: 0 auto;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.25s ease;
}

.hero-wordmark:hover,
.hero-wordmark:focus-visible {
  opacity: 0.9;
}

.hero-wordmark__primary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.75rem, 11vw, 6.5rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #faf7f2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 4px 28px rgba(0, 0, 0, 0.35);
  padding-right: 0.16em;
}

.hero-wordmark__mark {
  font-size: clamp(0.75rem, 2vw, 1.125rem);
  line-height: 1;
  color: #e8c878;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-wordmark__secondary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.8125rem, 2.4vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #e8c878;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  padding-right: 0.34em;
}

@media (min-width: 768px) {
  .hero-wordmark__primary {
    letter-spacing: 0.2em;
    padding-right: 0.2em;
  }

  .hero-wordmark__secondary {
    letter-spacing: 0.38em;
    padding-right: 0.38em;
  }
}

.hero__eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(0.75rem, 2.2vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #e8c878 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
}

.hero__headline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500;
  color: #faf7f2 !important;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}

.hero__lead {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.2rem, 3.6vw, 1.85rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: rgba(250, 247, 242, 0.94) !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  max-width: 28em;
  margin: 0 auto;
}

.hero .btn--ghost {
  text-shadow: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */

.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .services-grid .service-card {
    grid-column: span 2;
  }

  .services-grid .service-card:nth-child(4) {
    grid-column: 2 / 4;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

/* --------------------------------------------------------------------------
   Work grid & filter
   -------------------------------------------------------------------------- */

.filter-chip {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #e8e2d5;
  background: transparent;
  color: #1a1a1a;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.filter-chip:hover {
  border-color: #c9963f;
  color: #c9963f;
}

.filter-chip--active {
  background-color: #c9963f;
  border-color: #c9963f;
  color: #1a1a1a;
}

.filter-chip--active:hover {
  background-color: #b8842f;
  border-color: #b8842f;
  color: #1a1a1a;
}

.work-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.4s ease;
}

.work-tile:hover img {
  opacity: 0.92;
}

.work-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(61, 47, 31, 0.85) 0%,
    rgba(61, 47, 31, 0.35) 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-tile:hover .work-tile__overlay {
  opacity: 1;
}

.work-tile.is-hiding {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.work-tile.is-hidden {
  display: none;
}

.work-tile.is-page-hidden {
  display: none !important;
}

.work-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.work-pagination__btn {
  padding: 0.625rem 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #e8e2d5;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.work-pagination__btn:hover:not(:disabled) {
  border-color: #c9963f;
  color: #c9963f;
}

.work-pagination__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.work-pagination__status {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  min-width: 5rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Collaborator carousel
   -------------------------------------------------------------------------- */

.collab-carousel {
  position: relative;
  padding: 0 3rem;
}

@media (max-width: 767px) {
  .collab-carousel {
    padding: 0;
  }
}

.collab-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.collab-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.collab-carousel__track.no-transition {
  transition: none;
}

.collab-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 1023px) {
  .collab-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 767px) {
  .collab-card {
    flex: 0 0 calc((100% - 0.75rem) / 1.5);
  }
}

@media (min-width: 768px) {
  .collab-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  }
}

.collab-card__image {
  width: 100%;
  height: 140px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto 1.25rem;
  background: #faf7f2;
  border-radius: 4px;
  padding: 0.5rem;
}

.collab-card__image--placeholder {
  object-fit: cover;
  background: #1a1a1a;
  padding: 0;
}

.collab-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #c9963f;
  color: #1a1a1a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
}

.collab-carousel__btn:hover {
  opacity: 1;
  background-color: #b8842f;
}

.collab-carousel__btn--prev {
  left: 0;
}

.collab-carousel__btn--next {
  right: 0;
}

@media (max-width: 767px) {
  .collab-carousel__btn {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */

.process-timeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.process-step {
  flex: 1;
  min-width: 0;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.75rem 0;
  color: #c9963f;
  opacity: 0.6;
}

.process-arrow svg,
.process-arrow i {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .process-arrow {
    padding: 2.75rem 0.5rem 0;
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .process-arrow--vertical {
    transform: rotate(90deg);
  }
}

/* --------------------------------------------------------------------------
   Workshop
   -------------------------------------------------------------------------- */

.workshop-gallery {
  position: relative;
}

.workshop-gallery__viewport {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

@media (min-width: 768px) {
  .workshop-gallery__viewport {
    overflow: visible;
  }
}

.workshop-gallery__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.workshop-gallery__track.no-transition {
  transition: none;
}

@media (min-width: 768px) {
  .workshop-gallery__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    transform: none !important;
    transition: none;
    will-change: auto;
  }
}

@media (min-width: 1024px) {
  .workshop-gallery__track {
    gap: 1.5rem;
  }
}

.workshop-gallery__item {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #fff;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .workshop-gallery__item {
    flex: unset;
    aspect-ratio: 3 / 4;
  }
}

.workshop-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.workshop-gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

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

.workshop-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e8e2d5;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.workshop-gallery__dot--active {
  background-color: #c9963f;
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   Team carousel & cards
   -------------------------------------------------------------------------- */

.team-carousel {
  position: relative;
}

.team-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

@media (min-width: 640px) {
  .team-carousel__viewport {
    overflow: visible;
  }
}

.team-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.team-carousel__track.no-transition {
  transition: none;
}

@media (min-width: 640px) {
  .team-carousel__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    transform: none !important;
    transition: none;
    will-change: auto;
  }
}

@media (min-width: 1024px) {
  .team-carousel__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

.team-carousel .team-card {
  flex: 0 0 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .team-carousel .team-card {
    flex: unset;
  }
}

.team-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .team-carousel__dots {
    display: none;
  }
}

.team-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e8e2d5;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.team-carousel__dot--active {
  background-color: #c9963f;
  transform: scale(1.2);
}

.team-carousel__dot:hover {
  background-color: #d9b68a;
}

.team-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 640px) {
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  }
}

.team-card--founder {
  border-bottom: 2px solid #c9963f;
  padding-bottom: 0.25rem;
}

.team-card--founder .team-card__image-wrap {
  aspect-ratio: 3 / 4;
}

.team-card__image-wrap {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
}

.team-card__social a {
  color: #1a1a1a;
  transition: color 0.25s ease;
}

.team-card__social a:hover {
  color: #c9963f;
}

/* --------------------------------------------------------------------------
   Reviews carousel
   -------------------------------------------------------------------------- */

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: #d4a24c;
  stroke: #d4a24c;
  color: #d4a24c;
}

.review-stars i {
  display: inline-flex;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonial-slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.testimonial-slide__text {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .testimonial-slide__text {
    font-size: 1.375rem;
  }
}

.testimonial-slide__via {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e8e2d5;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dot--active {
  background-color: #c9963f;
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background-color: #d9b68a;
}

.testimonial-nav {
  transition: border-color 0.25s ease;
}

.testimonial-nav:hover {
  border-color: #c9963f;
}

.google-reviews-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #c9963f;
  transition: color 0.25s ease;
}

.google-reviews-link:hover {
  color: #1a1a1a;
}

/* --------------------------------------------------------------------------
   Contact & social
   -------------------------------------------------------------------------- */

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #faf7f2;
  border: 1px solid #e8e2d5;
  color: #1a1a1a;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-btn:hover {
  background-color: #c9963f;
  border-color: #c9963f;
  color: #1a1a1a;
}

.social-btn--placeholder {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.social-btn--sm {
  width: 32px;
  height: 32px;
}

.social-btn--sm svg {
  width: 16px;
  height: 16px;
}

.contact-grid__details {
  padding: 0.5rem 0;
}

.contact-workshops {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-workshops__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.contact-map__frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #c9963f;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
}

@media (max-width: 1023px) {
  .contact-grid__map .contact-map__frame {
    min-height: 320px;
  }
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.form-input {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus {
  border-color: #c9963f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 150, 63, 0.25);
}

.form-input::placeholder {
  color: rgba(26, 26, 26, 0.35);
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: #1a1a1a;
  color: #faf7f2;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.2);
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
  max-width: calc(100vw - 2rem);
}

.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

footer a {
  transition: color 0.25s ease;
}

footer a:hover {
  color: #c9963f;
}

/* --------------------------------------------------------------------------
   AOS & accessibility
   -------------------------------------------------------------------------- */

[data-aos] {
  pointer-events: auto;
}

::selection {
  background-color: rgba(201, 150, 63, 0.25);
  color: #1a1a1a;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c9963f;
  outline-offset: 2px;
}
