/* ════════════════════════════════════════════════════════════
   LK LUXURY KREST — STYLESHEET
   Structure mirrors the HTML document order:
   1. Custom Properties (Design Tokens)
   2. Reset
   3. Base
   4. Header & Navigation
   5. Search Overlay
   6. Hero Section
   7. Shared Slider / Card Components
   8. Trust Section
   9. Work Section
   10. Wizard Modal
   11. Support Section
   12. Site Footer
   13. Shared Utilities (Material Icons)
   14. Keyframe Animations
   15. Responsive Breakpoints (Mobile / Tablet / Laptop / Desktop)
   ════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES (DESIGN TOKENS)
   ────────────────────────────────────────────────────────── */
:root {
  /* Colors — Core Palette */
  --color-black: #111;
  --color-white: #fff;
  --color-beige: #f6f2ea;

  /* Colors — Text */
  --color-text: #000000;
  --color-text-body: #444;
  --color-text-muted: #555;
  --color-subtext: #6e6e73;

  /* Colors — Structural */
  --color-border: #e5e5e5;
  --color-line: #e5e5e5;
  --color-bg: #ffffff;

  /* Colors — Overlays */
  --color-overlay-card: rgba(0, 0, 0, 0.4);
  --color-overlay-menu: rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-sans: "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bilbo Swash Caps", cursive;
  --font-system: -apple-system, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-menu: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-video: opacity 0.8s ease;

  /* Layout */
  --navbar-height: 33px;

  /* Card sizing — overridden at narrower breakpoints */
  --card-width: 200px;
  --card-height: 140px;
  --work-card-height: 150px;

  /* Shadows */
  --shadow-card: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ──────────────────────────────────────────────────────────
   2. RESET
   ────────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
}

img,
video {
  max-width: 100%;
  display: block;
}

button,
input {
  font-family: inherit;
}

/* ──────────────────────────────────────────────────────────
   3. BASE
   ────────────────────────────────────────────────────────── */
body {
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-sans);
  overflow-x: hidden;
  width: 100%;
}

main {
  overflow-x: hidden;
}

/* ──────────────────────────────────────────────────────────
   4. HEADER & NAVIGATION
   ────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  height: 32px;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  padding: 0 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.header__search-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 20px;
  height: 20px;
}

.header__search-btn .icon-home {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.header__search-btn.active .icon-search {
  display: none;
}
.header__search-btn.active .icon-home {
  display: block;
}

/* ── Logo ── */
.navbar__logo {
  font-family: var(--font-display);
  font-size: 19px;
}

/* ── Menu (Hamburger) Button ── */
.navbar__menu-btn {
  width: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.navbar__menu-btn span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  transform-origin: center;
  transition: transform var(--transition-menu);
}

.navbar__menu-btn span:first-child {
  transform: translateY(-4px);
}

.navbar__menu-btn span:last-child {
  transform: translateY(4px);
}

.navbar__menu-btn.active span:first-child {
  transform: rotate(45deg);
}

.navbar__menu-btn.active span:last-child {
  transform: rotate(-45deg);
}

.navbar__menu-btn:focus-visible {
  outline: none;
}

/* ── Dropdown Menu ── */
.navbar__dropdown {
  position: absolute;
  top: var(--navbar-height);
  left: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.navbar__dropdown.show {
  display: flex;
}

.navbar__dropdown li {
  list-style: none;
}

.navbar__dropdown li a {
  display: block;
  padding: 10px 20px;
  background: var(--color-overlay-menu);
  color: var(--color-white);
  text-align: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.navbar__dropdown li a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ──────────────────────────────────────────────────────────
   5. SEARCH OVERLAY
   ────────────────────────────────────────────────────────── */
/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  overflow-y: auto;
}

.search-overlay--active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-black);
  cursor: pointer;
  transition: 0.25s;
}

.search-overlay__close:hover {
  transform: rotate(90deg);
  color: #777;
}

.search-overlay__wrapper {
  max-width: 700px;
  margin: 140px auto 80px;
  padding: 0 24px;
}

.search-overlay__input-wrap {
  position: relative;
}

.search-overlay__input {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  border: none;
  border-bottom: 1px solid #777;
  padding: 12px 0;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
  background: transparent;
}

.search-overlay__input:focus {
  border-color: var(--color-black);
}

/* ── Ghost-text autocomplete (inline suggestion inside the field) ── */
.search-overlay__ghost {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 12px 0;
  font-size: 13px;
  font-family: inherit;
  text-align: center;
  white-space: pre;
  pointer-events: none;
  color: #bbb;
  overflow: hidden;
}

.search-overlay__ghost span:first-child {
  visibility: hidden;
}

.search-overlay__ghost span:last-child {
  margin-left: -2px;
}

/* ── Popular / Recent Searches ── */
.popular-searches {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popular-searches__title {
  font-size: 20px;
  color: var(--color-black);
  letter-spacing: 7px;
  font-weight: 400;
}

.popular-searches__link {
  text-decoration: none;
  font-size: 16px;
  color: #777;
  display: inline-block;
  width: fit-content;
  transition:
    color 0.25s,
    padding-left 0.25s;
}

.popular-searches__link:hover {
  color: var(--color-black);
  padding-left: 8px;
}

.recent-searches {
  margin-top: 30px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.recent-searches--visible {
  display: flex;
}

.recent-searches__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
}

.recent-searches__item button {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 12px;
}

.recent-searches__item button:hover {
  color: var(--color-black);
}

/* ── Category Filter Tabs ── */
.search-filters {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.search-filters__tab {
  background: none;
  border: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.25s;
}

.search-filters__tab--active,
.search-filters__tab:hover {
  color: var(--color-black);
}

/* ── Featured Projects ── */
.search-overlay__products {
  margin-top: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.product-card {
  text-decoration: none;
  display: block;
  opacity: 0.9;
  transition: 0.3s;
}

.product-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4f4f4;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__info {
  margin-top: 10px;
  text-align: center;
}

.product-card__name {
  font-size: 13px;
  color: var(--color-black);
  font-weight: 400;
  margin: 0;
}

.product-card__price {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  display: block;
}

/* ── Skeleton Loading ── */
.product-card--skeleton .product-card__image {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.product-card--skeleton .product-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 1.3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.product-card--skeleton .product-card__name,
.product-card--skeleton .product-card__price {
  background: #eee;
  color: transparent;
  border-radius: 3px;
  display: inline-block;
}

/* ── Empty State ── */
.search-overlay__empty {
  display: none;
  text-align: center;
  margin-top: 60px;
  color: #777;
}

.search-overlay__empty--visible {
  display: block;
}

.search-overlay__empty p {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 6px;
}

.search-overlay__empty span {
  font-size: 13px;
  color: #999;
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .search-overlay__wrapper {
    margin: 100px auto 60px;
  }
}
/* ──────────────────────────────────────────────────────────
   6. HERO SECTION
   ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 96vh;
  min-height: 480px;
  overflow: hidden;
}

/* ── Background Video Stack ── */
.hero__videos {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: var(--transition-video);
  pointer-events: none;
}

.hero__video.active {
  opacity: 1;
}

/* ── Darkening Overlay (improves text legibility over video) ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Intro Content (heading, tagline, CTA) ── */
.hero__intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 180px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
  animation: fadeInUp 1.5s ease forwards;
  pointer-events: none;
}

.hero__intro h1 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 10px;
  margin-bottom: 14px;
}

.hero__intro p {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0.9;
  margin-bottom: 33px;
}

.hero__intro button {
  pointer-events: all;
  padding: 10px 30px;
  border: 1px solid var(--color-white);
  font-weight: 300;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-base);
}

.hero__intro button:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* ── Body (project cards pinned to the bottom of the hero) ── */
.hero__body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding-bottom: 24px;
}

/* White icon variant for icons sitting on top of the hero video */
.hero__body .material-symbols-outlined {
  color: var(--color-white);
}

.hero__slider-wrap {
  width: 100%;
  overflow: hidden;
}

.hero__slider {
  padding: 10px 16px;
  gap: 10px;
}

/* ── Hero Project Cards ── */
.hero__card {
  flex: 0 0 var(--card-width);
  height: var(--card-height);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.6;
}

.hero__card.active {
  border-color: var(--color-white);
  transform: scale(1.05);
  opacity: 1;
}

.hero__card:hover {
  opacity: 1;
}

/* ── Slide Indicator Dots ── */
.hero__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.hero__dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hero__dot.active {
  background: var(--color-white);
  transform: scale(1);
}

/* ──────────────────────────────────────────────────────────
   7. SHARED SLIDER / CARD COMPONENTS
   Used by both the Hero slider and the Work slider
   ────────────────────────────────────────────────────────── */
.slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 15px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.slider::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 var(--card-width);
  height: var(--card-height);
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: var(--shadow-card);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1);
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16%;
  background: var(--color-overlay-card);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card__overlay {
  opacity: 1;
}

.card__link {
  color: var(--color-white);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ──────────────────────────────────────────────────────────
   8. TRUST SECTION
   ────────────────────────────────────────────────────────── */
.trust {
  background: var(--color-white);
  color: var(--color-text);
  padding: 40px 20px;
  text-align: center;
  font-family: var(--font-sans);
}

.about__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.about__headline {
  font-size: 20px;
  font-weight: 300;

  margin: 0 0 20px;
  letter-spacing: 0.2px;
}

.about__lead {
  font-size: 15px;

  color: #555;

  margin: 0 0 44px;
}

/* ── Stat Counters ── */
.trust__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust__stat {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  padding: 0 32px;
  position: relative;
  cursor: default;
}

/* Vertical divider between stats (omitted after the last one) */
.trust__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.trust__number {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: opacity 0.25s ease;
}

.trust__stat:hover .trust__number {
  opacity: 0.55;
}

.trust__label {
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--color-text);
  transition: opacity 0.25s ease;
}

.trust__stat:hover .trust__label {
  opacity: 0.55;
}

/* ──────────────────────────────────────────────────────────
   9. WORK SECTION
   ────────────────────────────────────────────────────────── */
.work-section {
  background: var(--color-beige);
  padding: 40px 5px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Category Filters ── */
.work__filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 12px;
}

.work__filter {
  position: relative;
  cursor: pointer;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 5px;
  transition: opacity 0.2s ease;
}

.work__filter.dimmed {
  opacity: 0.35;
}

.work__filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.3s ease;
}

.work__filter.active::after {
  width: 100%;
}

/* ── Project Slider ── */
.work__slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.work__slider::-webkit-scrollbar {
  display: none;
}

/* ── Project Card ── */
.work__card {
  flex: 0 0 var(--card-width);
  height: var(--work-card-height);
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: var(--shadow-card);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.work__card:hover {
  transform: scale(1);
}

.work__card.hidden {
  display: none;
}

.work__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16%;
  background: var(--color-overlay-card);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work__card:hover .work__card-overlay {
  opacity: 1;
}

.work__card-link {
  color: var(--color-white);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── "Your Project" CTA Card (last slide in the Work slider) ── */
.work__card--cta {
  flex: 0 0 var(--card-width);
  height: var(--work-card-height);
  scroll-snap-align: center;
  box-shadow: var(--shadow-card);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  background: transparent;
  border: 1px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.work__card--cta:hover {
  transform: scale(1);
  border-color: rgba(0, 0, 0, 0.5);
}

.work__cta-plus {
  font-size: 28px;
  font-weight: 200;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1;
  transition: color 0.3s ease;
}

.work__cta-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  transition: color 0.3s ease;
}

.work__card--cta:hover .work__cta-plus,
.work__card--cta:hover .work__cta-label {
  color: rgba(0, 0, 0, 0.5);
}

/* ── Slider Controls (progress bar + arrows) ── */
.work__controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}

.work__controls-right {
  display: flex;
  gap: 100px;
  flex-shrink: 0;
}

.work__arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work__progress-wrap {
  width: 100%;
  max-width: 303px;
  min-width: 0;
  flex: 1 1 auto;
}

.work__progress-track {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  position: relative;
}

.work__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-black);
  width: 0%;
  transition: width 0.2s ease;
}

/* ── Bottom CTA Group (link + divider + button) ── */
.work__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 16px 0;
  flex-wrap: wrap;
}

.work__cta-link {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: opacity 0.3s ease;
}

.work__cta-link:hover {
  opacity: 0.55;
}

.work__cta-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.2);
}

.work__cta-btn {
  background: transparent;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  padding: 8px 26px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.work__cta-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ──────────────────────────────────────────────────────────
   10. WIZARD MODAL ("New Project" request flow)
   ────────────────────────────────────────────────────────── */
.wizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 20px;
}

.wizard-overlay.open {
  opacity: 1;
  visibility: visible;
}

.wizard {
  background: var(--color-beige);
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 36px 28px 28px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.wizard-overlay.open .wizard {
  transform: translateY(0);
}

.wizard__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
  transition: color 0.2s;
}

.wizard__close:hover {
  color: var(--color-black);
}

/* ── Step Visibility ── */
.wizard__step {
  display: none;
}

.wizard__step.active {
  display: block;
}

/* ── Step Progress Indicator ── */
.wizard__indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.wizard__dot {
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.wizard__dot.done {
  background: var(--color-black);
}

.wizard__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

.wizard__title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--color-black);
}

/* ── Step 1: Project Type Picker ── */
.wizard__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.wizard__type {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}

.wizard__type:hover {
  border-color: rgba(0, 0, 0, 0.4);
}

.wizard__type.selected {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.wizard__type-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}

.wizard__type-name {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
}

/* ── Step 2: Contact Details Form ── */
.wizard__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  margin-bottom: 20px;
  font-family: inherit;
  color: var(--color-black);
  transition: border-color 0.2s ease;
}

.wizard__input:focus {
  border-color: var(--color-black);
}

.wizard__input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/* ── Shared "Next" Button ── */
.wizard__next {
  width: 100%;
  padding: 12px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  font-weight: 300;
  transition: opacity 0.2s ease;
}

.wizard__next:hover {
  opacity: 0.75;
}

.wizard__next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Step 3: Success Confirmation ── */
.wizard__success {
  text-align: center;
  padding: 20px 0;
}

.wizard__success-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.wizard__success-title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 8px;
}

.wizard__success-text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   11. SUPPORT SECTION
   ────────────────────────────────────────────────────────── */
.support {
  padding: var(--space-xl) 10px;
}

.support__contact {
  padding: 16px 16px 0 16px;
}

.support__contact h3 {
  font-weight: 400;

  font-size: 16px;
  margin-bottom: 5px;
}

.support__contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.support__contact a {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 13px;
  text-decoration: underline;
}

/* ── Guarantee List ── */
.guarantee {
  position: relative;
  padding-left: 20px;
}

.guarantee::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 1px;
  background: var(--color-black);
  opacity: 0.15;
}

.guarantee__item {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-left: 26px;
  transition: 0.2s;
}

.guarantee__item:hover {
  transform: translateX(4px);
}

.guarantee__marker {
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--color-text-muted);
}

.guarantee__item p {
  color: var(--color-text-body);
  font-size: 13px;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   12. SITE FOOTER
   ────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 70px 24px 30px;
}

.site-footer__wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer__eyebrow {
  display: block;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.site-footer__tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
  margin: 0;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  width: fit-content;
  transition:
    color 0.25s,
    padding-left 0.25s;
}

.site-footer__nav a:hover {
  color: var(--color-white);
  padding-left: 6px;
}

.site-footer__socials {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__socials a {
  display: flex;
  color: rgba(255, 255, 255, 0.75);
  transition:
    color 0.25s,
    transform 0.25s;
}

.site-footer__socials a:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
  display: flex;
  gap: 20px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}

.site-footer__legal a:hover {
  color: var(--color-white);
}

@media (max-width: 640px) {
  .site-footer {
    padding: 50px 20px 24px;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 30px;
  }
  .site-footer__socials {
    gap: 18px;
  }
}
/* ──────────────────────────────────────────────────────────
   13. SHARED UTILITIES
   ────────────────────────────────────────────────────────── */
.material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 220,
    "GRAD" 0,
    "opsz" 24;
  color: var(--color-black);
}

/* ──────────────────────────────────────────────────────────
   14. KEYFRAME ANIMATIONS
   ────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════════
   15. RESPONSIVE BREAKPOINTS
   Mobile-first overrides layered on top of the desktop-default
   rules above. Each breakpoint only changes what needs to change
   at that width — sizing, spacing, and layout direction.

   Breakpoints used:
   - ≤ 1024px  → small laptops / tablets landscape
   - ≤ 768px   → tablets / large phones
   - ≤ 480px   → phones
   - ≤ 360px   → very small phones
   - ≥ 1440px  → large desktop screens
   ════════════════════════════════════════════════════════════ */

/* ── Laptops & Tablets (≤ 1024px) ── */
@media (max-width: 1024px) {
  .work__progress-wrap {
    max-width: 220px;
  }

  .trust__stat {
    padding: 0 22px;
  }

  .trust__logos-row {
    gap: 28px;
  }
}

/* ── Tablets & Large Phones (≤ 768px) ── */
@media (max-width: 768px) {
  :root {
    --card-width: 170px;
    --card-height: 120px;
    --work-card-height: 130px;
  }

  /* Header */
  .header__container {
    padding: 0 12px;
  }

  /* Hero */
  .hero {
    height: 100vh;
    min-height: 560px;
  }

  .hero__intro h1 {
    font-size: 24px;
    letter-spacing: 6px;
  }

  .hero__intro p {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .hero__intro button {
    padding: 9px 24px;
    font-size: 13px;
  }

  .hero__slider {
    padding: 10px 12px;
  }

  /* Trust */
  .trust {
    padding: 32px 16px;
  }

  .trust__stats {
    gap: 8px;
  }

  .trust__stat {
    padding: 0 16px;
  }

  .trust__guarantee {
    flex-direction: column;
    gap: 10px;
  }

  .trust__guarantee-divider {
    display: none;
  }

  .trust__logos-row {
    gap: 24px;
  }

  /* Work */
  .work__filters {
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
  }

  .work__filters::-webkit-scrollbar {
    display: none;
  }

  .work__filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .work__controls {
    padding: 0 12px;
  }

  .work__progress-wrap {
    max-width: none;
  }

  .work__cta-group {
    gap: 16px;
  }

  /* Wizard */
  .wizard {
    padding: 28px 20px 22px;
  }

  .wizard__title {
    font-size: 16px;
  }
}

/* ── Phones (≤ 480px) ── */
@media (max-width: 480px) {
  :root {
    --card-width: 78vw;
    --card-height: 130px;
    --work-card-height: 150px;
  }

  /* Header */
  .navbar__logo {
    font-size: 17px;
  }

  /* Search overlay */
  .search-overlay__wrapper {
    margin: 120px auto;
    padding: 0 16px;
  }

  .popular-searches__title {
    letter-spacing: 4px;
    font-size: 17px;
  }

  /* Hero */
  .hero__intro {
    height: calc(100% - 150px);
    padding: 0 14px;
  }

  .hero__intro h1 {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 10px;
  }

  .hero__intro p {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .hero__card {
    height: var(--card-height);
  }

  /* Trust */
  .trust__eyebrow {
    margin-bottom: 28px;
  }

  .trust__stats {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .trust__stat {
    padding: 0 14px;
  }

  .trust__text {
    font-size: 14px;
    padding: 0 8px;
  }

  .trust__logos-row {
    gap: 18px;
  }

  .trust__logo {
    font-size: 12px;
  }

  /* Work */
  .work-section {
    gap: 24px;
    padding: 8px 0;
  }

  .work__controls {
    padding: 0 12px;
    gap: 10px;
  }

  .work__cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .work__cta-divider {
    display: none;
  }

  .work__cta-btn {
    width: 100%;
  }

  /* Support */
  .support {
    padding: 28px 16px;
  }

  /* Wizard */
  .wizard {
    padding: 24px 18px 20px;
  }

  .wizard__types {
    gap: 8px;
  }

  .wizard__type {
    padding: 12px 6px;
  }

  .wizard__type-icon {
    font-size: 18px;
  }
}

/* ── Very Small Phones (≤ 360px) ── */
@media (max-width: 360px) {
  .hero__intro h1 {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .trust__stat {
    padding: 0 10px;
  }

  .trust__number {
    font-size: 14px;
  }

  .trust__label {
    font-size: 9px;
  }

  .wizard__types {
    grid-template-columns: 1fr;
  }
}

/* ── Large Desktop (≥ 1440px) ── */
@media (min-width: 1440px) {
  :root {
    --card-width: 230px;
    --card-height: 160px;
    --work-card-height: 170px;
  }

  .trust__text {
    font-size: 18px;
  }

  .hero__intro h1 {
    font-size: 38px;
  }

  .hero__intro p {
    font-size: 16px;
  }
}

/* ── Short / Landscape Screens ── */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 380px;
  }

  .hero__intro {
    height: calc(100% - 110px);
  }

  .hero__intro h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .hero__intro p {
    margin-bottom: 12px;
  }
}
