/* ============================================
   PRINORA WEAR — Light Theme Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #B8922A;
  --gold-light: #D4AF62;
  --gold-pale:  #F0E4C4;
  --dark:       #1A1712;
  --charcoal:   #3A3630;
  --text:       #6B6258;
  --muted:      #A09A92;
  --cream:      #FAF7F2;
  --cream-2:    #F3EDE2;
  --cream-3:    #EDE5D8;
  --white:      #FFFFFF;
  --border:     rgba(184,146,42,0.18);
  --shadow:     rgba(26,23,18,0.08);
  --nav-h:      84px;
  --max-w:      1600px;
  --gap-x:      64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

/* ── Max-width container ──────────────────────────────
   Constrains inner content on wide / 4K screens while
   letting section backgrounds bleed full-width.        */
.inner {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ===================== CURSOR ===================== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(184,146,42,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s ease, border-color 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.hover  { transform: translate(-50%,-50%) scale(2.5); }
.cursor-ring.hover { transform: translate(-50%,-50%) scale(1.6); border-color: var(--gold); }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px var(--shadow);
  transition: box-shadow 0.4s;
}
nav.scrolled {
  box-shadow: 0 4px 30px var(--shadow);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  padding: 0 var(--gap-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 11px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  cursor: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover::before { transform: translateX(0); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  margin-top: var(--nav-h);
  overflow: hidden;
}

/* Layer 1 — slides fill the hero */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* Layer 2 — gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(26,23,18,0.72) 0%,
    rgba(26,23,18,0.40) 55%,
    rgba(26,23,18,0.15) 100%
  );
}

/* Layer 3 — text content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) 0 56px;
}
.hero-content-inner {
  max-width: var(--max-w);
  width: 100%;
  padding: 0 var(--gap-x);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* Layer 4 — dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  right: 48px;
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: none;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-light);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Stat badge */
.hero-stat-badge {
  background: rgba(250,247,242,0.10);
  border: 1px solid rgba(184,146,42,0.45);
  backdrop-filter: blur(14px);
  padding: 22px 28px;
  text-align: right;
  flex-shrink: 0;
  align-self: flex-end;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-stat-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-badge-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 15px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  cursor: none;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }

.btn-secondary {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  transition: color 0.3s;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 24px;
}
.btn-secondary .arrow { transition: transform 0.3s; }
.btn-secondary:hover { color: var(--gold-light); border-color: var(--gold-light); }
.btn-secondary:hover .arrow { transform: translateX(5px); }

/* ===================== MARQUEE ===================== */
.marquee-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: '\25C6';
  font-size: 7px;
  color: var(--gold);
}

/* ===================== SECTIONS ===================== */
section:not(.hero) {
  padding: 112px var(--gap-x);
}
section:not(.hero) > *,
section:not(.hero) > .categories-header,
section:not(.hero) > .cat-grid,
section:not(.hero) > .why-inner,
section:not(.hero) > .custom-inner,
section:not(.hero) > .testi-header,
section:not(.hero) > .testi-grid,
section:not(.hero) > .contact-inner {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ===================== CATEGORIES ===================== */
.categories {
  background: var(--cream-2);
}
.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.categories-header-right p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  max-width: 360px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 var(--gap-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.cat-card {
  position: relative;
  height: 540px;
  overflow: hidden;
  cursor: none;
  background: var(--cream-3);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(26,23,18,0.10);
  transition: box-shadow 0.4s, transform 0.4s;
}
.cat-card:hover {
  box-shadow: 0 16px 48px rgba(26,23,18,0.18);
  transform: translateY(-4px);
}
.cat-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.07); }
.cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.82);
  transition: filter 0.5s;
}
.cat-card:hover .cat-card-img img { filter: saturate(0.75) brightness(0.78); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26,23,18,0.94) 0%,
    rgba(26,23,18,0.38) 55%,
    transparent 100%
  );
  transition: opacity 0.4s;
}
.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cat-number {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.35s 0.1s;
}
.cat-card:hover .cat-number { opacity: 1; }
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-bottom 0.4s ease;
}
.cat-card:hover .cat-desc {
  max-height: 60px;
  margin-bottom: 10px;
}

/* Feature bullet list inside cards */
.cat-features {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-bottom 0.4s ease;
  margin-bottom: 0;
}
.cat-card:hover .cat-features {
  max-height: 120px;
  margin-bottom: 14px;
}
.cat-features li {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.cat-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 1px;
  background: var(--gold-light);
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  opacity: 0;
  transition: opacity 0.35s 0.15s, color 0.3s;
}
.cat-card:hover .cat-link { opacity: 1; }
.cat-link:hover { color: var(--white); }

/* Gold bottom border sweep */
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
  z-index: 2;
}
.cat-card:hover::after { width: 100%; }

/* ===================== WHY CHOOSE US ===================== */
.why { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; height: 580px; }
.why-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 78%;
  overflow: hidden;
}
.why-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.9);
}
.why-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%; height: 52%;
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 12px 48px var(--shadow);
}
.why-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.9);
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 45%; height: 45%;
  border-top: 2px solid var(--gold-pale);
  border-right: 2px solid var(--gold-pale);
  pointer-events: none;
  z-index: 0;
}
.why-badge {
  position: absolute;
  top: 52%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--white);
  padding: 22px 26px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(184,146,42,0.35);
}
.why-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}
.why-badge-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.85;
}
.why-points { margin-top: 40px; }
.why-point {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--cream-3);
  transition: transform 0.3s, padding-left 0.3s;
}
.why-point:first-of-type { border-top: 1px solid var(--cream-3); }
.why-point:hover { padding-left: 6px; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 3px;
  min-width: 28px;
}
.why-point h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-point p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.72;
}

/* ===================== CUSTOMIZATION ===================== */
.custom-section {
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.custom-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184,146,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.custom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.custom-steps { margin-top: 44px; }
.custom-step {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  position: relative;
}
.custom-step::after {
  content: '';
  position: absolute;
  left: 19px; top: 42px;
  width: 1px; bottom: -32px;
  background: var(--gold-pale);
}
.custom-step:last-child::after { display: none; }
.step-circle {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--gold);
  background: var(--cream-2);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.custom-step:hover .step-circle {
  background: var(--gold);
  color: var(--white);
}
.step-body { padding-top: 8px; }
.step-body h4 {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.72;
}
.custom-visual { position: relative; height: 520px; }
.custom-visual-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.custom-visual-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.88);
}
.custom-visual-frame {
  position: absolute;
  bottom: -14px; right: -14px;
  width: 60%; height: 60%;
  border-right: 2px solid var(--gold-pale);
  border-bottom: 2px solid var(--gold-pale);
  pointer-events: none;
}
.custom-visual-caption {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  background: rgba(250,247,242,0.95);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.custom-visual-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--white); }
.testi-header { text-align: center; margin-bottom: 64px; }
.testi-header p {
  font-size: 15px;
  color: var(--text);
  max-width: 420px;
  margin: 16px auto 0;
  line-height: 1.8;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testi-card {
  background: var(--cream);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--shadow);
  border-color: var(--border);
  background: var(--white);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 22px;
}
.star { color: var(--gold); font-size: 13px; }
.testi-text {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  line-height: 1.82;
  margin-bottom: 30px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ===================== CONTACT ===================== */
.contact { background: var(--cream-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.contact-intro {
  font-size: 15px;
  color: var(--text);
  line-height: 1.82;
  margin: 22px 0 44px;
}
.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-3);
}
.contact-detail:first-of-type { border-top: 1px solid var(--cream-3); }
.contact-icon {
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
a.contact-detail-value:hover { color: var(--gold); }

/* Form */
.contact-form { background: var(--white); padding: 48px 44px; border: 1px solid var(--border); }
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-bottom: 1.5px solid var(--cream-3);
  color: var(--charcoal);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { height: 110px; resize: none; }
.form-group select { appearance: none; cursor: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  transition: all 0.3s;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.submit-btn span { position: relative; z-index: 1; }
.submit-btn:hover::before { transform: translateX(0); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 72px var(--gap-x) 40px;
}
.footer-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 20px; display: block; }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  cursor: none;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold-light); }

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 600;
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.45);
}
.whatsapp-fab svg { width: 26px; height: 26px; fill: white; }


/* ===================== INSTAGRAM FAB ===================== */
.instagram-fab {
  position: fixed;
  bottom: 100px; right: 36px;
  width: 54px; height: 54px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 600;
  box-shadow: 0 6px 28px rgba(214,36,159,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.instagram-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(214,36,159,0.5);
}
.instagram-fab svg { width: 24px; height: 24px; fill: white; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { height: 480px; }
}

@media (max-width: 1024px) {
  :root { --gap-x: 32px; }
  nav { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  section:not(.hero) { padding: 80px var(--gap-x); }
  .hero-content { padding-bottom: 48px; }
  .hero-content-inner { padding: 0 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --gap-x: 24px; }
  .nav-links { display: none; }
  nav { padding: 0; }
  .nav-inner { padding: 0 24px; }
  .hero-content { padding-bottom: 36px; }
  .hero-content-inner { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stat-badge { align-self: flex-start; }
  .hero-dots { right: 20px; bottom: 16px; }
  section:not(.hero) { padding: 72px var(--gap-x); }
  .categories-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { height: 420px; }
  .why-inner, .custom-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 380px; }
  .custom-visual { height: 340px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  footer { padding: 60px var(--gap-x) 32px; }
}
