/* =============================================
   PARAGON DESIGNS — Main Stylesheet
   ============================================= */

:root {
  --black:    #080808;
  --dark:     #111111;
  --dark-2:   #1a1a1a;
  --dark-3:   #252525;
  --gold:     #c9a84c;
  --gold-lt:  #e0c06e;
  --white:    #ffffff;
  --gray:     #888888;
  --gray-lt:  #cccccc;
  --nav-h:    80px;
  --font-body: 'Montserrat', sans-serif;
  --font-head: 'Playfair Display', serif;
  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--gray-lt);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__logo img { height: 58px; width: auto; }
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Nav CTA — stays gold */
.nav__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-lt) !important; color: var(--black) !important; }

/* Services dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__dropdown > a .nav__chevron {
  font-size: 9px;
  opacity: 0.6;
  transition: transform var(--transition);
}
.nav__dropdown:hover > a .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 200px;
  padding: 16px 0 8px; /* top padding bridges the gap so mouse stays in hover zone */
  display: none;
  flex-direction: column;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav__dropdown:hover .nav__dropdown-menu { display: flex; }
.nav__dropdown-menu a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 20px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  padding: 32px 48px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .nav__mobile-sub {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: -8px;
}
.nav__mobile .nav__mobile-sub a {
  font-size: 12px;
  color: var(--gray);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 40px;
  letter-spacing: 0.02em;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
/* Gold button — used for nav CTA only */
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: var(--gold-lt); }

/* White/outline buttons for most CTAs */
.btn--white {
  background: var(--white);
  color: var(--black);
}
.btn--white:hover { background: var(--gray-lt); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn--dark:hover { background: var(--dark-2); border-color: rgba(255,255,255,0.25); }

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


/* =============================================
   SECTIONS / LAYOUT
   ============================================= */
section { padding: 100px 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.divider {
  width: 48px; height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px 0 32px;
}
.divider--center { margin: 20px auto 32px; }


/* =============================================
   ABOUT STRIP (Home)
   ============================================= */
.about-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip__image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-strip__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-strip__image:hover img { transform: scale(1.03); }
.about-strip__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 1;
  pointer-events: none;
}
.about-strip__text .section-sub { max-width: none; }


/* =============================================
   SERVICES OVERVIEW (Home)
   ============================================= */
.services-overview { background: var(--black); }
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card--floor img { position: absolute; bottom: 0; left: 0; width: 100%; height: 120%; object-fit: cover; }
.service-card--floor:hover img { transform: scale(1.06); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 60%);
  transition: background var(--transition);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 60%);
}
.service-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}
.service-card__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover .service-card__desc { max-height: 80px; opacity: 1; }
.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-card__arrow { opacity: 1; transform: translateX(0); }


/* =============================================
   SERVICE SUB-PAGE (Floor Wraps, Signage, etc.)
   ============================================= */
.service-subcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.service-subcard {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
}
.service-subcard__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-3);
}
.service-subcard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}.service-subcard:hover .service-subcard__img img { transform: scale(1.05); }
/* Placeholder when no image yet */
.service-subcard__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-subcard__img-placeholder i { font-size: 28px; opacity: 0.4; }
.service-subcard__body {
  padding: 24px;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.service-subcard__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.service-subcard__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}
.service-subcard__detail {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  text-transform: uppercase;
}

/* Services overview page — category cards */
.services-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.services-category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  display: block;
}
.services-category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.services-category-card:hover img { transform: scale(1.05); }
.services-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.15) 55%);
  transition: background var(--transition);
}
.services-category-card:hover .services-category-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 55%);
}
.services-category-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}
.services-category-card__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.services-category-card__title {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
}
.services-category-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.services-category-card__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.services-category-card:hover .services-category-card__link {
  opacity: 1;
  transform: translateX(0);
}


/* =============================================
   COLLABORATIONS (Home)
   ============================================= */
.collabs { background: #fff; padding: 72px 0; }
.collabs__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
.collabs__logos img {
  height: 64px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 1;
}


/* =============================================
   TESTIMONIALS (Home)
   ============================================= */
.testimonials { background: var(--black); overflow: hidden; }

/* Carousel wrapper */
.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}
.testimonials-carousel__track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 8px 0 8px 40px;
  scroll-behavior: smooth;
  flex: 1;
}
.testimonials-carousel__btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
  margin: 0 12px;
}
.testimonials-carousel__btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

/* Individual card */
.testimonial-card {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 24px;
  min-width: 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-card__stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial-card__google {
  width: 24px; height: 24px;
  flex-shrink: 0;
}
.testimonial-card__text {
  font-size: 13px;
  color: var(--gray-lt);
  line-height: 1.7;
  flex: 1;
}
.testimonial-card__bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
.testimonial-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-card__date {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}


/* =============================================
   FAQ (Home)
   ============================================= */
.faq { background: var(--dark); }
.faq__list { margin-top: 60px; }
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}
.faq__q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.faq__item.open .faq__q-text { color: var(--white); }
.faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray);
  transition: var(--transition);
}
.faq__item.open .faq__icon {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.open .faq__a { max-height: 200px; padding-top: 16px; }
.faq__a p { font-size: 14px; color: var(--gray); line-height: 1.8; }


/* =============================================
   FEATURED ON (Home)
   ============================================= */
.featured { background: var(--black); padding: 80px 0; }
.featured__list {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.featured__item {
  font-family: var(--font-head);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.featured__item:hover { color: rgba(255,255,255,0.7); }


/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 40px);
  color: var(--white);
  font-weight: 700;
}
.cta-banner__sub {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
}


/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 50vh;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.2) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}


/* =============================================
   SERVICES DETAIL PAGE
   ============================================= */
.services-section { background: var(--black); }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }
.service-block__image {
  position: sticky;
  top: 120px;
  overflow: hidden;
  border-radius: 2px;
}
.service-block__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-block__image:hover img { transform: scale(1.03); }

.service-items { margin-top: 40px; }
.service-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-item:last-child { border-bottom: none; }
.service-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.service-item__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.service-addons {
  margin-top: 32px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 24px;
  border-radius: 2px;
}
.service-addons__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.service-addons__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-addons__tag {
  font-size: 12px;
  color: var(--gray-lt);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
}
.service-includes {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
}


/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section { background: var(--black); }
.gallery-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 48px 0 40px;
}
.gallery-filter__btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter__btn:hover,
.gallery-filter__btn.active {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__close {
  position: fixed;
  top: 24px; right: 32px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none; border: none;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.12); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--black); overflow-x: hidden; }
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
  align-items: start;
}
.contact-info-strip .contact-info__item { margin-bottom: 0; }
.contact-info-strip .contact-social { margin-top: 0; }
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-info__value { font-size: 14px; color: var(--gray-lt); }
.contact-social { margin-top: 48px; }
.contact-social__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-lt);
  font-size: 16px;
  transition: var(--transition);
}
.social-links a:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* Form */
.quote-form { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.4); }
.form-group select option { background: var(--dark-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input[type="file"] { padding: 10px 16px; cursor: pointer; color: var(--gray); }
.form-note { font-size: 12px; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }


/* =============================================
   INSTAGRAM CTA
   ============================================= */
.ig-cta { display: flex; justify-content: center; }
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  font-family: var(--font-body);
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}
.ig-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.ig-btn > .fa-brands { font-size: 32px; flex-shrink: 0; }
.ig-btn__text { display: flex; flex-direction: column; text-align: left; }
.ig-btn__handle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ig-btn__sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.ig-btn__ext { font-size: 13px; opacity: 0.7; margin-left: 4px; align-self: flex-start; }


/* =============================================
   HONEYBOOK EMBED
   ============================================= */
.honeybook-embed {
  width: 100%;
}
.honeybook-embed iframe { width: 100% !important; border: none; }
.honeybook-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 40px 32px;
  color: var(--gray);
  gap: 12px;
}
.honeybook-placeholder i { font-size: 28px; color: rgba(255,255,255,0.25); }
.honeybook-placeholder p { font-size: 14px; line-height: 1.7; }


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer__logo img { height: 40px; margin-bottom: 20px; }
.footer__tagline {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: var(--transition);
}
.footer__social a:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 13px; color: var(--gray); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 12px; color: rgba(255,255,255,0.2); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--gray-lt); }


/* =============================================
   ANIMATIONS & UTILITIES
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .container { padding: 0 32px; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 48px; }
  .services-overview__grid { grid-template-columns: 1fr 1fr; }
  .services-category-grid { grid-template-columns: 1fr 1fr; }
  .service-subcards { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block--reverse { direction: ltr; }
  .service-block__image { position: static; }
  .contact-info-strip { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .services-overview__grid { grid-template-columns: 1fr; }
  .services-category-grid { grid-template-columns: 1fr; }
  .service-subcards { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-strip { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .page-hero__content { padding: 0 24px 48px; }
  .nav__mobile { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .collabs__logos { gap: 24px 40px; }
}
