/* =========================================
   LION CABINETRY - Premium CSS
   ========================================= */

:root {
  --bg: #090909;
  --bg-2: #0E0E0E;
  --graphite: #161616;
  --graphite-2: #1E1E1E;
  --gold: #C9A34A;
  --gold-light: #E8C66B;
  --gold-dark: #8A6E2C;
  --ivory: #F5F0E6;
  --white: #FFFFFF;
  --text: #F5F0E6;
  --text-muted: #A8A39A;
  --line: rgba(201, 163, 74, 0.18);
  --line-soft: rgba(255, 255, 255, 0.06);

  --radius: 14px;
  --radius-lg: 22px;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --t-fast: 240ms;
  --t-base: 420ms;
  --t-slow: 720ms;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: transparent; border: none; outline: none; width: 100%;
}

::selection { background: var(--gold); color: var(--bg); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.15rem; font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: 0; }
h5 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

p { color: var(--text-muted); font-size: 1rem; }
em { font-style: italic; color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 500; }

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.eyebrow.center { justify-content: center; }

/* SECTION TITLE */
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  max-width: 22ch;
}
.section-sub {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0;
  font-size: 1.05rem;
}

.section-head {
  text-align: left;
  margin-bottom: 70px;
  max-width: 720px;
}

/* SECTION SPACING */
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  color: var(--bg);
  box-shadow: 0 10px 30px -10px rgba(201, 163, 74, 0.5);
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(201, 163, 74, 0.7), 0 0 0 1px var(--gold-light) inset;
}
.btn-gold:hover::before { transform: translateX(120%); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 163, 74, 0.06);
}

.btn-sm { padding: 12px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-dark), var(--gold)); border-radius: 10px; }

/* LOADER */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 1000;
  display: grid; place-items: center;
  transition: opacity 600ms var(--ease), visibility 600ms;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark svg { width: 80px; height: 80px; animation: pulse 1.6s infinite ease-in-out; }
@keyframes pulse { 0%, 100% { opacity: 0.4; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  z-index: 999;
  transition: width 80ms linear;
  box-shadow: 0 0 12px var(--gold);
}

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--t-base) var(--ease);
}
.header.scrolled {
  background: rgba(9, 9, 9, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  transition: opacity var(--t-fast) var(--ease);
}
.brand:hover { opacity: 0.85; }
.brand-mark { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(201,163,74,0.4); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--white);
}
.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav-list {
  display: flex; align-items: center; gap: 38px;
}
.nav-list a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}
.nav-list a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base) var(--ease);
}
.nav-list a:hover { color: var(--white); }
.nav-list a:hover::after { width: 100%; }
.nav-list .nav-cta {
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  transition: all var(--t-fast) var(--ease);
}
.nav-list .nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.nav-list .nav-cta::after { display: none; }

.burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.burger span {
  width: 22px; height: 1.5px;
  background: var(--white);
  display: block;
  transition: all var(--t-base) var(--ease);
  margin: 0 auto;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #0B0B0B;
  z-index: -2;
  will-change: transform;
}
.hero-bg::-webkit-media-controls { display: none !important; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.65) 60%, rgba(9,9,9,0.95) 100%),
    radial-gradient(ellipse at 20% 40%, rgba(0,0,0,0.35) 0%, transparent 60%);
  z-index: -1;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.64 0 0 0 0 0.29 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
  width: 100%;
}

.hero-content { max-width: 720px; }

.hero-title {
  margin-bottom: 28px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(245, 240, 230, 0.85);
  max-width: 56ch;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-meta {
  display: flex;
  gap: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-meta span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* HERO PANEL */
.hero-panel {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  transition: transform var(--t-base) var(--ease);
}
.hero-panel:hover { transform: translateY(-6px); }
.hero-panel::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,163,74,0.4), transparent 40%, transparent 60%, rgba(201,163,74,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.panel-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.panel-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.hero-panel:hover .panel-image img { transform: scale(1.06); }
.panel-body { padding: 28px; }
.panel-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 10px;
}
.panel-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.panel-body p { font-size: 0.92rem; margin-bottom: 18px; }
.panel-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.panel-link span { transition: transform var(--t-fast) var(--ease); }
.panel-link:hover span { transform: translateX(6px); }

/* HERO MARQUEE */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9,9,9,0.7);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-track span { color: var(--text-muted); }
.marquee-track span:nth-child(odd) { color: var(--gold); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NUMBERS */
.numbers {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 80px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.num-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(201,163,74,0.03), transparent);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
.num-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(201,163,74,0.08), transparent);
}
.num-card .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.num-card .num sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
}
.num-card .num-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.num-line {
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all var(--t-base) var(--ease);
  transform: translateX(-50%);
}
.num-card:hover .num-line { width: 60%; }

/* ABOUT */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.about-img:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(9,9,9,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; flex-direction: column;
}
.about-img-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.about-content p { margin-bottom: 18px; font-size: 1.05rem; }
.about-list { margin: 28px 0 36px; }
.about-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 0.95rem;
}
.about-list li:last-child { border: none; }
.check {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: rgba(201,163,74,0.12);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* SERVICES */
.services { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--graphite);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,163,74,0.2);
}
.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 28px; }
.service-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  transition: color var(--t-fast) var(--ease);
}
.service-card:hover .service-body h3 { color: var(--gold-light); }
.service-body p { font-size: 0.95rem; margin-bottom: 18px; }
.service-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: transform var(--t-fast) var(--ease);
}
.service-card:hover .service-link { transform: translateX(6px); }

/* WHY US */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 40px 32px;
  background: var(--graphite);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.why-card:hover { transform: translateY(-6px); border-color: var(--line); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--gold);
  background: rgba(201,163,74,0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all var(--t-base) var(--ease);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: rotate(-6deg);
}
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.why-card p { font-size: 0.92rem; line-height: 1.6; }

/* GALLERY */
.gallery { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter var(--t-base) var(--ease);
}
.g-item:hover img { transform: scale(1.08); filter: brightness(0.7); }
.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--t-base) var(--ease);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* PROCESS */
.process { background: var(--bg); }
.section-head .section-title { max-width: 100%; }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
  z-index: 0;
}
.timeline li {
  position: relative;
  text-align: center;
  padding: 0 16px;
  z-index: 1;
}
.t-step {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--graphite);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: all var(--t-base) var(--ease);
}
.t-step::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all var(--t-base) var(--ease);
}
.timeline li:hover .t-step {
  background: var(--gold);
  color: var(--bg);
  transform: scale(1.05);
}
.timeline li:hover .t-step::after {
  border-color: var(--gold);
  inset: -10px;
  opacity: 0.4;
}
.timeline li h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--white);
}
.timeline li p { font-size: 0.88rem; line-height: 1.55; }

/* REVIEWS */
.reviews { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--graphite);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--t-base) var(--ease);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-weight: 700;
}
.review-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  background: var(--graphite-2);
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.review-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 26px;
  font-style: italic;
}
.reviewer {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--bg);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}
.reviewer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,163,74,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,163,74,0.05) 0%, transparent 50%);
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 18px;
}
.cta-inner > div p { font-size: 1.1rem; max-width: 40ch; }

.cta-form {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cta-form label {
  display: flex; flex-direction: column;
  gap: 8px;
}
.cta-form label span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--gold);
  background: rgba(201,163,74,0.04);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(245,240,230,0.35); }
.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A34A' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.cta-form select option { background: var(--bg); color: var(--text); }
.cta-form textarea { resize: vertical; min-height: 80px; }
.cta-form .full { width: 100%; }
.cta-form .btn { align-self: flex-start; margin-top: 10px; }
.form-success {
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
.form-success.show { opacity: 1; max-height: 40px; margin-top: 4px; }

.cta-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.cta-direct-label {
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cta-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}
.cta-direct-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,163,74,0.05);
  transform: translateY(-2px);
}
.cta-direct-item svg {
  flex: 0 0 18px;
  color: var(--gold);
}

/* FOOTER */
.footer {
  background: var(--bg-2);
  padding-top: 80px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 0.92rem;
  margin: 18px 0 24px;
  max-width: 32ch;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--t-fast) var(--ease);
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h5 { margin-bottom: 22px; color: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--t-fast) var(--ease), padding var(--t-fast) var(--ease);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }

.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-list span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-list a, .contact-list strong {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.contact-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-panel { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img { max-width: 520px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 30px 16px; }
  .timeline::before { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 80%; max-width: 360px;
    background: rgba(9,9,9,0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--line-soft);
    transform: translateX(100%);
    transition: transform var(--t-base) var(--ease);
    padding: 100px 40px 40px;
    z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 28px; }
  .nav-list a { font-size: 1.1rem; color: var(--white); }
  .nav-list .nav-cta { width: 100%; text-align: center; padding: 14px; }
  .burger { display: flex; z-index: 110; }

  .hero-grid { padding-top: 120px; padding-bottom: 60px; }
  .hero-meta { gap: 30px; flex-wrap: wrap; }
  .hero-meta strong { font-size: 1.8rem; }

  .section-head { margin-bottom: 50px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
  .timeline { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .cta-form { padding: 28px 24px; }
  .cta-form .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .cta-direct { gap: 10px; }
  .cta-direct-item { padding: 11px 18px; font-size: 0.88rem; }

  .ba-tabs { gap: 6px; margin: 28px 0 32px; }
  .ba-card .ba-hint { font-size: 0.78rem; padding: 0 12px; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .about-img-badge { bottom: 16px; left: 16px; padding: 14px 18px; }
  .cta-form .btn-lg { padding: 16px 24px; }
}

/* ACCESSIBILITY - focus visible */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================
   BEFORE & AFTER SECTION
   ========================================= */
.before-after {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.before-after::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,163,74,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ba-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 40px 0 48px;
  flex-wrap: wrap;
}
.ba-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.ba-tab:hover {
  color: var(--text);
  border-color: var(--gold);
}
.ba-tab.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,163,74,0.3);
}

.ba-stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.ba-card {
  display: none;
  animation: fadeUp 0.6s ease;
}
.ba-card.active {
  display: block;
}

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,163,74,0.2);
  background: var(--graphite);
  touch-action: none;
  --split: 50%;
  --slider-w: 100%;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-before-img { z-index: 1; }
.ba-clip {
  position: absolute;
  top: 0;
  left: var(--split);
  bottom: 0;
  width: calc(100% - var(--split));
  overflow: hidden;
  z-index: 2;
  transition: width 0s;
}
.ba-clip .ba-after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--slider-w);
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 4px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle .ba-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  box-shadow: 0 0 12px rgba(201,163,74,0.6);
}
.ba-handle .ba-knob {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 4px rgba(9,9,9,0.6);
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform 0.2s ease;
  margin: 8px 0;
}
.ba-handle .ba-knob:hover {
  transform: scale(1.08);
}
.ba-handle .ba-knob:active {
  transform: scale(0.96);
}

.ba-tag {
  position: absolute;
  top: 24px;
  z-index: 4;
  padding: 8px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(9,9,9,0.85);
  color: var(--text);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.tag-before { left: 24px; color: var(--text-muted); }
.tag-after { right: 24px; color: var(--gold); border-color: var(--gold); }

.ba-hint {
  text-align: center;
  margin: 24px auto 0;
  max-width: 680px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}
.ba-hint strong {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

.ba-meta {
  text-align: center;
  margin-top: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ba-meta h3 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 12px;
}
.ba-meta p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .before-after { padding: 80px 0; }
  .ba-tab { padding: 10px 18px; font-size: 0.75rem; letter-spacing: 0.1em; }
  .ba-slider { aspect-ratio: 4 / 3; border-radius: 14px; }
  .ba-handle .ba-knob { width: 44px; height: 44px; }
  .ba-handle .ba-knob svg { width: 14px; height: 14px; }
  .ba-tag { padding: 6px 12px; font-size: 0.65rem; top: 16px; }
  .tag-before { left: 16px; }
  .tag-after { right: 16px; }
}

/* =========================================
   MAP SECTION
   ========================================= */
.map-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}
.map-wrap {
  margin-top: 56px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,163,74,0.25);
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.5s ease, box-shadow 0.5s ease;
}
.map-wrap:hover {
  filter: none;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--gold);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
@media (max-width: 768px) {
  .map-section { padding: 72px 0; }
  .map-wrap iframe { height: 320px; }
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5), 0 0 0 1px rgba(255,255,255,0.12);
}
.whatsapp-fab svg {
  flex: 0 0 28px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}
.wa-label {
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

@media (max-width: 640px) {
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  .whatsapp-fab .wa-label { display: none; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}


