/* ============================================
   Crystarlite CREATIVE HOUSE - MAIN STYLESHEET
   ============================================ */

:root {
  --gold: #C63438;
  --gold-light:#C63438;
  --gold-dark:#C63438;
  --dark: #0D0D0D;
  --dark2: #151515;
  --dark3: #1E1E1E;
  --dark4: #252525;
  --white: #FFFFFF;
  --white-80: rgba(255,255,255,0.8);
  --white-50: rgba(255,255,255,0.5);
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --text-dim: #999;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 10px 40px rgba(201,168,76,0.3);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- GRADIENT TEXT ---- */
.grad-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn-prim {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.btn-prim::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s;
}
.btn-prim:hover::before { left: 100%; }
.btn-prim:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark2);
  border-bottom: 1px solid var(--white-10);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  z-index: 1000;
  position: relative;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar a { color: var(--white-80); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-right a {
  width: 26px; height: 26px;
  background: var(--white-10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}
.topbar-right a:hover { background: var(--gold); color: var(--dark); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-c { color: var(--gold); }
.logo-l { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-80);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.nav-active { color: var(--white); background: var(--white-5); }
.nav-links > li > a i { font-style: normal; font-size: 0.7rem; transition: transform 0.3s; }
.nav-links > li.has-drop:hover > a i { transform: rotate(180deg); }

/* NAV CTA */
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 50px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); opacity: 0.9; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MEGA DROPDOWN ---- */
.mega-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  min-width: 640px;
  opacity: 0;
  visibility: hidden;
  /* Delay hiding so mouse can travel across the gap without losing hover */
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.25s;
  pointer-events: none;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  overflow: hidden;
}

/* Invisible bridge over the gap between nav link and dropdown panel.
   Keeps the hover state alive as the mouse travels downward. */
.has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10%;
  width: 120%;
  height: 14px;
  background: transparent;
}

@media (min-width: 769px) {
  .has-drop:hover .mega-drop,
  .has-drop.touch-open .mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
    /* Remove delay when showing */
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }
}
.mega-inner {
  display: grid;
  grid-template-columns: 1fr 200px;
}
.mega-list {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.mega-item:hover { background: var(--white-5); }
.mi-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--white-5);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.mega-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.15rem; }
.mega-item p { font-size: 0.75rem; color: var(--text-dim); line-height: 1.4; }
.mega-img-col {
  background: var(--dark3);
  overflow: hidden;
}
.mega-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: var(--transition);
}
@media (min-width: 769px) {
  .has-drop:hover .mega-img-col img { opacity: 1; transform: scale(1.05); }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }
.hp {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--s);
  height: var(--s);
  background: radial-gradient(circle, rgba(201,168,76,var(--o)) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatPart var(--d) ease-in-out infinite alternate;
}
@keyframes floatPart {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -30px) scale(1.15); }
}

.hero-content { z-index: 2; }
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  animation: fadeUp 0.8s ease forwards;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-sub {
  color: var(--white-80);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hstat { text-align: center; }
.hstat span.count {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hstat sup { color: var(--gold); font-size: 1rem; }
.hstat label { display: block; font-size: 0.78rem; color: var(--text-dim); margin-top: 0.25rem; }
.hstat-div { width: 1px; height: 40px; background: var(--white-10); }

/* HERO VISUAL */
.hero-visual { position: relative; z-index: 2; animation: fadeRight 1s 0.3s ease both; }
.hv-wrap { position: relative; }
.hv-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: brightness(0.9);
  box-shadow: var(--shadow);
}
.hv-blob {
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  z-index: -1;
}
.hv-float {
  position: absolute;
  background: rgba(21,21,21,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-10);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  animation: floatCard 3s ease-in-out infinite;
}
.hv-float.f1 { top: 15%; left: -20px; animation-delay: 0s; }
.hv-float.f2 { bottom: 20%; right: -20px; animation-delay: 1.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* SCROLL CUE */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.sc-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Scroll reveal */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-l { transform: translateX(-40px); }
.reveal-r { transform: translateX(40px); }
.reveal.visible, .reveal-l.visible, .reveal-r.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ---- SECTION LABELS ---- */
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1rem; height: 2px;
  background: var(--gold);
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.sec-title.light { color: var(--white); }

.sec-lead {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.sec-header { text-align: center; margin-bottom: 4rem; }
.sec-header p { color: var(--white-80); max-width: 500px; margin: 0 auto; }

/* ---- ABOUT INTRO ---- */
.about-intro {
  padding: 7rem 0;
  background: var(--dark2);
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ai-img-col { position: relative; }
.ai-img-col img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.ai-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}

/* TABS */
.tabs {
  display: flex;
  gap: 0.25rem;
  margin: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--white-10);
  padding-bottom: 0;
}
.tab {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.tab.active { color: var(--gold); }
.tab.active::after { transform: scaleX(1); }
.tab-panel { display: none; color: var(--white-80); font-size: 0.95rem; line-height: 1.8; padding: 0.5rem 0; }
.tab-panel.active { display: block; animation: fadeUp 0.4s ease; }

/* ---- SERVICES ---- */
.services-sec {
  padding: 7rem 0;
  background: var(--dark);
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--white-5);
}
.svc-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.svc-row.rev { direction: rtl; }
.svc-row.rev > * { direction: ltr; }

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.svc-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.svc-text p { color: var(--white-80); line-height: 1.8; margin-bottom: 2rem; }
.svc-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
}
.svc-link span { transition: transform 0.3s; }
.svc-link:hover { color: var(--gold-light); }
.svc-link:hover span { transform: translateX(5px); }

.svc-feature-list {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-feature-list li {
  color: var(--white-80);
  font-size: 0.9rem;
}

/* ---- FANCY SERVICE IMAGE ANIMATIONS ---- */

/* Animated gradient border keyframes */
@keyframes borderRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmerSweep {
  0%   { transform: skewX(-20deg) translateX(-200%); }
  100% { transform: skewX(-20deg) translateX(300%); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33%       { transform: translate(8px, -12px) scale(1.1); opacity: 0.9; }
  66%       { transform: translate(-6px, 6px) scale(0.95); opacity: 0.5; }
}

@keyframes pulseRing {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 14px rgba(201,168,76,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

@keyframes imgRevealClip {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0% 0 0); }
}

@keyframes glitchSlice {
  0%, 90%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  92%           { clip-path: inset(30% 0 40% 0); transform: translate(-4px, 2px); }
  94%           { clip-path: inset(60% 0 10% 0); transform: translate(4px, -2px); }
  96%           { clip-path: inset(15% 0 70% 0); transform: translate(-2px, 4px); }
}

@keyframes cornerGlow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.svc-img {
  border-radius: 20px;
  overflow: visible;
  aspect-ratio: 4/3;
  position: relative;
  transform-style: preserve-3d;
  transition: box-shadow 0.5s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

/* Animated gradient border wrapper */
.svc-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(
    270deg,
    rgba(201,168,76,0) 0%,
    rgba(201,168,76,0.7) 25%,
    rgba(255,220,120,0.9) 50%,
    rgba(201,168,76,0.7) 75%,
    rgba(201,168,76,0) 100%
  );
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderRotate 3s linear infinite;
  filter: blur(1px);
}

/* Inner image container */
.svc-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: box-shadow 0.5s ease;
}

/* Shimmer sweep overlay */
.svc-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  width: 60%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  transform: skewX(-20deg) translateX(-200%);
}

/* Gold overlay on hover */
.svc-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: brightness(0.88) saturate(0.85);
  display: block;
}

/* Decorative floating orbs */
.svc-img-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-img-orb.orb-1 {
  width: 14px; height: 14px;
  background: radial-gradient(circle, rgba(255,220,120,1), rgba(201,168,76,0.4));
  top: -8px; right: 20%;
  box-shadow: 0 0 12px 4px rgba(201,168,76,0.6);
  animation: floatOrb 3s ease-in-out infinite;
}

.svc-img-orb.orb-2 {
  width: 8px; height: 8px;
  background: radial-gradient(circle, rgba(255,255,200,1), rgba(201,168,76,0.3));
  bottom: 10%; right: -10px;
  box-shadow: 0 0 8px 3px rgba(201,168,76,0.5);
  animation: floatOrb 2.5s ease-in-out infinite 0.8s;
}

.svc-img-orb.orb-3 {
  width: 10px; height: 10px;
  background: radial-gradient(circle, rgba(255,220,120,0.9), rgba(201,168,76,0.2));
  top: 25%; left: -6px;
  box-shadow: 0 0 10px 3px rgba(201,168,76,0.4);
  animation: floatOrb 3.5s ease-in-out infinite 1.4s;
}

/* Decorative corner accents */
.svc-img-corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.svc-img-corner::before,
.svc-img-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}

.svc-img-corner.tl { top: 12px; left: 12px; }
.svc-img-corner.tl::before { width: 2px; height: 18px; top: 0; left: 0; }
.svc-img-corner.tl::after  { width: 18px; height: 2px; top: 0; left: 0; }

.svc-img-corner.br { bottom: 12px; right: 12px; }
.svc-img-corner.br::before { width: 2px; height: 18px; bottom: 0; right: 0; }
.svc-img-corner.br::after  { width: 18px; height: 2px; bottom: 0; right: 0; }

/* Hover states */
.svc-img:hover::before { opacity: 1; }

.svc-img:hover .svc-img-inner {
  box-shadow: 0 35px 90px rgba(0,0,0,0.55), 0 0 40px rgba(201,168,76,0.15);
}

.svc-img:hover .svc-img-inner::before { opacity: 1; }

.svc-img:hover .svc-img-inner::after {
  animation: shimmerSweep 0.8s ease forwards;
}

.svc-img:hover img { 
  transform: scale(1.07);
  filter: brightness(1) saturate(1.15);
}

.svc-img:hover { 
  transform: translateY(-8px);
}

.svc-img:hover .svc-img-orb { opacity: 1; }
.svc-img:hover .svc-img-corner { opacity: 1; animation: cornerGlow 2s ease infinite; }
.svc-img:hover .svc-img-corner.tl { transform: translate(-2px, -2px); }
.svc-img:hover .svc-img-corner.br { transform: translate(2px, 2px); }

/* Image label tag */
.svc-img .svc-img-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  z-index: 5;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.svc-img:hover .svc-img-tag {
  transform: translateY(0);
  opacity: 1;
}

/* Glitch effect on hover (subtle, triggered via class) */
.svc-img.glitch-active .svc-img-inner {
  animation: glitchSlice 0.5s steps(1) forwards;
}

/* ---- SCROLL REVEAL for svc rows ---- */
.svc-row .svc-img {
  opacity: 0;
  transform: translateX(50px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}

.svc-row.rev .svc-img {
  transform: translateX(-50px) scale(0.96);
}

.svc-row.visible .svc-img,
.svc-row.rev.visible .svc-img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Stagger entrance per row */
.svc-row:nth-child(2).visible .svc-img { transition-delay: 0.1s; }
.svc-row:nth-child(3).visible .svc-img { transition-delay: 0.15s; }
.svc-row:nth-child(4).visible .svc-img { transition-delay: 0.1s; }
.svc-row:nth-child(5).visible .svc-img { transition-delay: 0.15s; }
.svc-row:nth-child(6).visible .svc-img { transition-delay: 0.1s; }

/* Clip-path wipe-in for the image itself after row becomes visible */
.svc-row .svc-img-inner {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.18, 1) 0.2s;
}

.svc-row.visible .svc-img-inner {
  clip-path: inset(0 0% 0 0);
}

/* ---- VISION STRIP ---- */
.vision-strip {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.vision-strip::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vs-img { border-radius: 20px; overflow: hidden; }
.vs-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.vs-card {
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}
.vs-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.vs-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--white); }
.vs-card p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* ---- SHOP ---- */
.shop-sec {
  padding: 7rem 0;
  background: var(--dark2);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.prod-card {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--white-5);
  transition: var(--transition);
}
.prod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.prod-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.08); }
.prod-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.prod-ov {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.prod-card:hover .prod-ov { opacity: 1; }
.atc {
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.atc:hover { background: var(--gold-light); transform: scale(1.05); }
.prod-info { padding: 1.25rem; }
.prod-cat {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.prod-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0.4rem 0 0.6rem;
}
.prod-price { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; }
.pp-cur { font-weight: 700; font-size: 1.1rem; color: var(--gold); }
.pp-old { font-size: 0.85rem; color: var(--text-dim); text-decoration: line-through; }
.prod-stars { font-size: 0.82rem; color: #F4D03F; }
.prod-stars em { color: var(--text-dim); font-style: normal; }
.shop-more { text-align: center; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark2); border-top: 1px solid var(--white-10); }
.footer-main { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.fc-brand .nav-logo { margin-bottom: 1.25rem; display: inline-block; }
.fc-brand p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.f-socials { display: flex; gap: 0.75rem; }
.f-socials a {
  width: 36px; height: 36px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: var(--transition);
}
.f-socials a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.fc h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--white); }
.fc ul li { margin-bottom: 0.75rem; }
.fc ul li a { color: var(--text-dim); font-size: 0.88rem; transition: color 0.2s; }
.fc ul li a:hover { color: var(--gold); }
.fc-news p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 1rem; }
.nl-form { display: flex; gap: 0; margin-bottom: 1.5rem; }
.nl-form input {
  flex: 1;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0.65rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input:focus { border-color: var(--gold); }
.nl-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.65rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}
.nl-form button:hover { background: var(--gold-light); }
.f-contact p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-bar {
  border-top: 1px solid var(--white-5);
  padding: 1.5rem 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bar p { color: var(--text-dim); font-size: 0.82rem; }
.footer-bar div a { color: var(--text-dim); font-size: 0.82rem; margin-left: 1.5rem; transition: color 0.2s; }
.footer-bar div a:hover { color: var(--gold); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  padding: 6rem 2rem 4rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.ph-particles { position: absolute; inset: 0; pointer-events: none; }
.ph-content { position: relative; z-index: 2; }
.ph-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.ph-content p { color: var(--white-80); font-size: 1.05rem; margin-bottom: 1.5rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-dim); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- ABOUT PAGE ---- */
.story-sec { padding: 7rem 0; background: var(--dark); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img { position: relative; }
.story-img img { border-radius: 20px; width: 100%; object-fit: cover; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.story-badge {
  position: absolute;
  bottom: -15px; left: 2rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
}
.story-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.sv-item { display: flex; align-items: center; gap: 1rem; }
.sv-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sv-item h4 { font-size: 0.9rem; margin-bottom: 0.15rem; }
.sv-item p { font-size: 0.82rem; color: var(--text-dim); }

.mv-sec { padding: 7rem 0; background: var(--dark2); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mv-card {
  background: var(--dark3);
  border: 1px solid var(--white-5);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.mv-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.mv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mv-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1rem; }
.mv-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.8; }

.team-sec { padding: 7rem 0; background: var(--dark); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 3/4;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem 1rem 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.team-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card span { font-size: 0.82rem; color: var(--gold); }

.stats-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item span.count {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-item sup { color: var(--gold); font-size: 1.5rem; }
.stat-item p { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.5rem; }

.cta-sec { padding: 7rem 0; background: var(--dark2); }
.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-inner p { color: var(--white-80); margin-bottom: 2rem; }

/* ---- CONTACT PAGE ---- */
.contact-sec { padding: 7rem 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
.contact-info > p { color: var(--white-80); margin: 1rem 0 2rem; }
.ci-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.ci-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  transition: var(--transition);
}
.ci-card:hover { border-color: var(--gold); }
.ci-icon { font-size: 1.5rem; }
.ci-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-bottom: 0.2rem; }
.ci-card p { font-size: 0.9rem; color: var(--white-80); }
.ci-socials { margin-top: 2rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; font-size: 0.85rem; }
.ci-socials span { color: var(--text-dim); }
.ci-socials a { color: var(--gold); font-size: 0.85rem; transition: color 0.2s; }
.ci-socials a:hover { color: var(--gold-light); }

.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; }
.full-btn { width: 100%; border: none; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 0.9rem;
  text-align: center;
}
.form-success.show { display: block; animation: fadeUp 0.4s ease; }

.map-sec { padding: 4rem 0 0; background: var(--dark); }
.map-wrap { overflow: hidden; border-top: 1px solid var(--white-10); }
.map-wrap iframe { display: block; filter: invert(90%) hue-rotate(180deg) brightness(0.9); }

.faq-sec { padding: 7rem 0; background: var(--dark2); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--dark3);
  border: 1px solid var(--white-5);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-q span { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .hero-visual { display: none; }
  .ai-grid, .vs-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-row, .svc-row.rev { grid-template-columns: 1fr; direction: ltr; }
  .svc-row.rev { direction: ltr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark2);
    border-bottom: 1px solid var(--white-10);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    z-index: 998;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links > li > a { padding: 0.85rem 1rem; border-radius: 0; border-bottom: 1px solid var(--white-5); }
  .mega-drop {
    position: static;
    transform: none;
    min-width: unset;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-radius: 0;
    display: none;
  }
  .has-drop.mob-open .mega-drop { display: block; }
  .mega-inner { grid-template-columns: 1fr; }
  .mega-img-col { display: none; }
  .mega-list { grid-template-columns: 1fr; }
  .nav-cta { margin: 1rem; text-align: center; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.5rem; }
  .hv-float { display: none; }
  .scroll-cue { display: none; }
  .vs-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}
