/* ==========================================================================
   VZ CONCIERGE SERVICE — PAGE SECTIONS
   Hero · stats · services · how it works · why · about · categories ·
   testimonials · faq · contact · cta
   ========================================================================== */

/* ————— HERO ————— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 4rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: brightness(0.55) saturate(0.8);
  transform: scale(1.06);
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.72) 0%, rgba(9, 9, 9, 0.25) 40%, rgba(9, 9, 9, 0.92) 92%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.7) 0%, rgba(9, 9, 9, 0.1) 60%);
}

.hero-inner {
  padding-bottom: clamp(4rem, 9vh, 7rem);
  width: 100%;
}

.hero .eyebrow {
  margin-bottom: var(--sp-6);
}

.hero .display {
  max-width: 17ch;
  margin-bottom: var(--sp-6);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: var(--sp-7);
}

.hero-copy p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}

.hero-chips .chip {
  background: rgba(9, 9, 9, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted-2);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue .line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cueDrop 2.2s var(--ease-io) infinite;
}

@keyframes cueDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: top;
  }
  56% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ————— STATS band ————— */
.stats {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  position: relative;
  text-align: center;
  padding: clamp(2.2rem, 4vw, 3.4rem) 1.2rem;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background: var(--line);
}

.stat .value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.stat .value .suffix {
  color: var(--gold);
}

.stat .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ————— SERVICES ————— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

/* ————— HOW IT WORKS ————— */
.how {
  background: var(--bg-2);
}

.how .timeline-wrap {
  padding: 0.5rem 0 1rem;
}

/* ————— WHY CHOOSE US ————— */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}

.why-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.why-sticky .section-title {
  margin-bottom: var(--sp-5);
}

.why-sticky p {
  color: var(--muted);
  margin-bottom: var(--sp-6);
}

/* ————— ABOUT ————— */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}

.about-media .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-gold);
  pointer-events: none;
}

.about-media .offset {
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  z-index: 2;
  padding: 1.6rem 1.9rem;
  background: rgba(9, 9, 9, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  max-width: 250px;
}

.about-media .offset .num {
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.about-media .offset p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-content .section-title {
  margin-bottom: var(--sp-5);
}

.about-content .lead {
  margin-bottom: var(--sp-5);
}

.about-content p {
  color: var(--muted);
  margin-bottom: var(--sp-4);
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.6rem;
  margin: var(--sp-6) 0;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--white);
}

.about-points svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  stroke-width: 1.5;
  flex: 0 0 auto;
}

/* ————— CATEGORIES ————— */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

/* ————— TESTIMONIALS ————— */
.testimonials {
  background: var(--bg-2);
}

.carousel {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.75s var(--ease-out);
}

.t-quote {
  flex: 0 0 100%;
  padding: 0.5rem 1rem;
  text-align: center;
}

.t-quote .mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: 1.6rem;
}

.t-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto var(--sp-6);
  font-style: italic;
}

.t-quote .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.t-quote .avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}

.t-quote .author .who {
  text-align: left;
}

.t-quote .author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.t-quote .author span {
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: var(--sp-7);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: border-color 0.4s, color 0.4s, background-color 0.4s, transform 0.4s var(--ease-out);
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.carousel-btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
}

.carousel-dots {
  display: flex;
  gap: 0.55rem;
}

.carousel-dots button {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  transition: background-color 0.5s var(--ease-out), width 0.5s var(--ease-out);
}

.carousel-dots button.active {
  background: var(--gold);
  width: 44px;
}

/* ————— FAQ ————— */
.faq-wrap {
  max-width: 820px;
  margin-inline: auto;
}

/* ————— CONTACT ————— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--sp-5);
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: var(--sp-6);
}

.contact-methods {
  margin-bottom: var(--sp-7);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-method .ic {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
}

.contact-method .ic svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.3;
}

.contact-method .k {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.15rem;
}

.contact-method .v {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
}

.contact-method a:hover .v {
  color: var(--gold-light);
}

.contact-form-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius);
  position: relative;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-form-wrap h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.contact-form-wrap .sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: var(--sp-6);
}

.contact-form-wrap .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ————— CTA band ————— */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(200, 169, 106, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(9, 9, 9, 0), rgba(9, 9, 9, 0.9));
  pointer-events: none;
}

.cta .display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 16ch;
  margin: 0 auto var(--sp-6);
}

.cta p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto var(--sp-7);
}

.cta .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

/* ————— Media queries ————— */
@media (max-width: 1080px) {
  .services-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat:nth-child(2)::after {
    display: none;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .why-sticky {
    position: static;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 1.4rem;
  }

  .timeline-track {
    display: none;
  }

  .about-media .offset {
    left: 1rem;
    bottom: -1.5rem;
  }
}

@media (max-width: 760px) {
  /* Nav collapses to drawer */
  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(9, 9, 9, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.05rem;
    letter-spacing: 0.24em;
  }

  .nav-links .nav-cta-mobile {
    display: inline-flex;
    margin-top: 1.4rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .services-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 1.8rem 0.6rem;
  }

  .stat .value {
    font-size: 2.2rem;
  }
}
