/* ============================================================
   DEEPAK'S ART — CSS STYLESHEET
   Color Variables & Base Reset
   ============================================================ */
:root {
  --bg-dark:     #0E0E0E;
  --bg-card:     #161616;
  --bg-section:  #121212;
  --cream:       #F5F1E8;
  --gold:        #C9A961;
  --gold-light:  #E2C98A;
  --gold-dark:   #A07C3A;
  --text-main:   #E8E0D0;
  --text-muted:  #9A9080;
  --text-dark:   #2B2B2B;
  --border:      rgba(201,169,97,0.2);
  --shadow:      0 8px 40px rgba(0,0,0,0.6);
  --radius:      12px;
  --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; font-size: 16px; overflow-x: hidden; }

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ===== UTILITY CLASSES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
}
@media (max-width: 480px) {
  .section-pad { padding: 52px 0; }
}

/* Prevent grid cell overflow */
.hero-content > *,
.about-grid > *,
.footer-grid > *,
.testimonials-grid > *,
.portfolio-grid > *,
.blog-grid > *,
.process-steps > * { min-width: 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px auto 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0E0E0E;
  box-shadow: 0 4px 20px rgba(201,169,97,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,97,0.5);
  color: #0E0E0E;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,241,232,0.3);
}
.btn-outline:hover {
  background: rgba(245,241,232,0.06);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  color: #fff;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 22px;
  background: var(--gold);
  color: #0E0E0E !important;
  border-radius: 3px;
  font-size: 0.75rem !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: #0E0E0E !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--bg-card);
  padding: 80px 32px 32px;
  z-index: 999;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1rem;
  color: var(--text-main);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  /* overlay stays hidden — JS controls it */
  .mobile-overlay { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,169,97,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,169,97,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0E0E0E 0%, #0A0A0A 100%);
}

/* Decorative grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,169,97,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text { padding-top: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,169,97,0.1);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  margin-bottom: 8px;
  background: linear-gradient(135deg, #F5F1E8 0%, var(--gold-light) 50%, #F5F1E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  -webkit-text-fill-color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Visual / Artwork Display */
.hero-visual {
  position: relative;
  padding-top: 40px;
  display: flex;
  justify-content: center;
}

.artwork-frame {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.artwork-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 80px rgba(201,169,97,0.1);
  position: relative;
}

/* Sketch illustration placeholder */
.artwork-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 35%, rgba(201,169,97,0.12) 0%, transparent 70%),
    linear-gradient(180deg, #1a1a1a 0%, #111 100%);
}

.artwork-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* SVG portrait illustration */
.sketch-svg {
  width: 200px;
  height: 240px;
  opacity: 0.7;
}

.artwork-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(14,14,14,0.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.artwork-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.artwork-caption-text {
  font-size: 0.78rem;
  color: var(--text-main);
  font-weight: 500;
}

.artwork-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201,169,97,0.4);
}

.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0E0E0E;
  line-height: 1;
}

.badge-text {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0E0E0E;
  text-align: center;
  line-height: 1.2;
}

.floating-tag {
  position: absolute;
  left: -32px;
  top: 40%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-main);
  white-space: nowrap;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.tag-icon {
  font-size: 1.2rem;
}

@media (max-width: 1100px) {
  .hero-content { gap: 48px; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-desc { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .artwork-frame { width: 260px; }
  .floating-tag { display: none; }
  .scroll-indicator { display: none; }
  .artwork-badge {
    width: 64px; height: 64px;
    top: -10px; right: -10px;
  }
  .badge-num { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 90px 0 50px; }
}

@media (max-width: 600px) {
  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 4px 8px;
  }
  .trust-item {
    font-size: 0.82rem;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(201,169,97,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-icon {
  font-size: 1.1rem;
  color: var(--gold);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--bg-section);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(201,169,97,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.artist-svg {
  width: 180px;
  opacity: 0.5;
  color: var(--gold);
}

.about-img-tag {
  position: absolute;
  bottom: 32px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201,169,97,0.3);
  z-index: 3;
}

.about-img-tag .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #0E0E0E;
  line-height: 1;
  display: block;
}

.about-img-tag .tag-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.7);
}

.about-content {}
.about-content p { margin-bottom: 20px; font-size: 0.95rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.feature-item {
  background: rgba(201,169,97,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(201,169,97,0.1);
  border-color: rgba(201,169,97,0.4);
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h4 {
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 2px;
  font-family: 'Montserrat', sans-serif;
}

.feature-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-tag { right: 16px; bottom: 16px; }
  .about-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .about-img-tag { right: 10px; bottom: 10px; padding: 14px 18px; }
  .about-img-tag .big-num { font-size: 2rem; }
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
  background: var(--bg-dark);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #0E0E0E;
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(201,169,97,0.1);
  border-color: rgba(201,169,97,0.4);
}

.portfolio-img {
  width: 100%;
  height: 0;
  padding-bottom: 130%;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

.portfolio-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #131313 100%);
  position: relative;
}

/* Gradient overlays for visual variety */
.portfolio-item:nth-child(1) .portfolio-img-placeholder {
  background: linear-gradient(135deg, #1a1714 0%, #0d0b09 100%);
}
.portfolio-item:nth-child(2) .portfolio-img-placeholder {
  background: linear-gradient(135deg, #141418 0%, #0d0d12 100%);
}
.portfolio-item:nth-child(3) .portfolio-img-placeholder {
  background: linear-gradient(135deg, #141a14 0%, #0d110d 100%);
}

.port-sketch-icon {
  width: 80px;
  height: 100px;
  opacity: 0.3;
  color: var(--gold);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,14,14,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.portfolio-cat {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  background: rgba(201,169,97,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0E0E0E;
  font-size: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-zoom { opacity: 1; }

.portfolio-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(14,14,14,0.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .portfolio-img { padding-bottom: 120%; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  max-width: 600px;
  width: 100%;
  position: relative;
}

.lightbox-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px; height: 40px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: #0E0E0E;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background: var(--bg-section);
}

.pricing-calculator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.calc-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-header h3 {
  color: #0E0E0E;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
}

.calc-header p {
  color: rgba(14,14,14,0.7);
  font-size: 0.8rem;
  margin: 0;
}

.calc-body {
  padding: 32px;
}

.calc-section { margin-bottom: 32px; }

.calc-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.option-card {
  background: rgba(201,169,97,0.04);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.option-card:hover {
  border-color: rgba(201,169,97,0.4);
  background: rgba(201,169,97,0.08);
}

.option-card.selected {
  border-color: var(--gold);
  background: rgba(201,169,97,0.12);
}

.option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}

.option-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.option-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.option-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.calc-total {
  background: rgba(201,169,97,0.06);
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.total-breakdown { font-size: 0.85rem; color: var(--text-muted); }
.total-breakdown span { color: var(--cream); font-weight: 600; }

.total-price-wrap {}
.total-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.total-amount small {
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

@media (max-width: 600px) {
  .calc-body { padding: 20px; }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-total { flex-direction: column; text-align: center; align-items: center; }
  .calc-header { flex-direction: column; gap: 4px; text-align: center; align-items: center; }
  .total-price-wrap { text-align: center; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--bg-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step:hover .step-num {
  background: var(--gold);
  color: #0E0E0E;
  border-color: var(--gold);
  transform: scale(1.1);
}

.step-icon {
  font-size: 1.6rem;
  display: block;
}

.step h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.step p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  background: var(--bg-section);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(201,169,97,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,169,97,0.1);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--gold);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0E0E0E;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2px;
  font-family: 'Montserrat', sans-serif;
}

.reviewer-location {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-platform {
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: var(--bg-dark);
}

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: #0E0E0E;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--bg-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {}
.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  color: var(--text-main);
}

.contact-link:hover {
  border-color: var(--gold);
  background: rgba(201,169,97,0.06);
  transform: translateX(4px);
  color: var(--cream);
}

.contact-link-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.link-wa .contact-link-icon { background: rgba(37,211,102,0.15); }
.link-ig .contact-link-icon { background: rgba(225,48,108,0.15); }
.link-ph .contact-link-icon { background: rgba(201,169,97,0.15); }

.contact-link-text .link-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-link-text .link-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}

.contact-form-wrap {}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,97,0.04);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

option { background: var(--bg-card); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.map-embed {
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  border: none;
  filter: invert(0.85) hue-rotate(180deg) saturate(0.7);
}

.service-areas {
  margin-top: 24px;
}

.service-areas h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  background: rgba(201,169,97,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG SECTION (Optional)
   ============================================================ */
.blog {
  background: var(--bg-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,97,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #1a1714 0%, #0d0b09 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.08) 0%, transparent 70%);
}

.blog-body { padding: 24px; }

.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #090909;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: #0E0E0E;
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.float-btn-label {
  position: absolute;
  right: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.float-btn:hover .float-btn-label { opacity: 1; }

.float-wa {
  background: #25D366;
  color: #fff;
}

.float-ig {
  background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #F56040, #FCAF45);
  color: #fff;
}

.float-call {
  background: var(--gold);
  color: #0E0E0E;
}

@media (max-width: 480px) {
  .floating-btns { bottom: 20px; right: 16px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }
}

/* ============================================================
   INQUIRY POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.open { display: flex; }

.popup-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px; height: 32px;
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover { background: var(--gold); color: #0E0E0E; }

.popup-box h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.popup-box > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================
   MISC / EXTRAS
   ============================================================ */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.section-bg-text {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: rgba(201,169,97,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Before/After Slider */
.ba-container {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.ba-before, .ba-after {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.ba-before {
  background: linear-gradient(135deg, #111 0%, #1a1714 100%);
  position: absolute;
  top: 0; left: 0;
}

.ba-after {
  background: linear-gradient(135deg, #0a0a0a 0%, #141410 100%);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  background: rgba(14,14,14,0.85);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.ba-before-label { left: 16px; color: var(--text-muted); }
.ba-after-label { right: 16px; color: var(--gold); }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0E0E0E;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  cursor: ew-resize;
}

.ba-clip {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 24px;
}

.loader-logo span { color: var(--gold); }

.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--gold);
  animation: load 1.5s ease forwards;
}

@keyframes load {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Paired before/after process cards */
.portfolio-paired {
  position: relative;
}
.portfolio-paired .img-before,
.portfolio-paired .img-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s ease;
}
.portfolio-paired .img-after {
  opacity: 0;
}
.portfolio-item:hover .portfolio-paired .img-before { opacity: 0; }
.portfolio-item:hover .portfolio-paired .img-after  { opacity: 1; }
.paired-label {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  background: rgba(201,169,97,0.9);
  color: #0E0E0E;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 768px) {
  /* Hide scroll indicator on mobile — overlaps stats */
  .scroll-indicator { display: none !important; }
  /* Fix hero text top spacing */
  .hero-text { padding-top: 0 !important; }
  /* Fix hero visual spacing */
  .hero-visual { padding-top: 20px !important; }
  /* Trust strip fix */
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-item { font-size: 0.8rem; }
  /* Hero stats row */
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  /* Artwork badge — don't overlap nav */
  .artwork-badge { top: -8px; right: -8px; width: 60px; height: 60px; }
  .badge-num { font-size: 1rem; }
  .badge-text { font-size: 0.45rem; }
}

/* ========= EMBEDDED BLOG POST STYLES ========= */
.blog-post-view { display:none; }
.blog-post-view.active { display:block; }
.blog-hero-inner {
  padding: 120px 24px 60px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.blog-tag-pill {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 40px;
  padding: 5px 16px;
  margin-bottom: 24px;
}
.blog-hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 20px;
}
.blog-meta-row {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 32px auto;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.article-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(245,237,217,0.88);
  margin-bottom: 1.4rem;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--cream);
  margin: 3rem 0 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 2rem 0 0.6rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1.4rem;
}
.article-body li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,237,217,0.85);
  margin-bottom: 0.5rem;
}
.article-body strong {
  color: var(--cream);
  font-weight: 600;
}
.pull-quote {
  margin: 2.5rem 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(201,169,97,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--cream) !important;
  margin: 0 !important;
}
.faq-block { margin: 3rem 0; }
.faq-q-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 12px;
}
.faq-q-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}
.faq-q-item p {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
}
.cta-box {
  margin: 3rem 0 0;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(201,169,97,0.04) 100%);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 16px;
  text-align: center;
}
.cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 24px !important;
}
.btn-wa-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-wa-blog:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}
.back-link-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 24px;
}
.back-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.back-link:hover { color: var(--gold); }

/* Screen reader only — semantic accessibility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: #0E0E0E;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
    /* ========= BLOG HERO ========= */
    .blog-hero {
      padding: 120px 24px 60px;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .blog-tag-pill {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201, 169, 97, 0.35);
      border-radius: 40px;
      padding: 5px 16px;
      margin-bottom: 24px;
    }

    .blog-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 5vw, 2.6rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.25;
      margin-bottom: 20px;
    }

    .blog-meta-row {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .blog-divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 32px auto;
    }

    /* ========= ARTICLE ========= */
    .article-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    .article-body p {
      font-size: 1.1rem;
      line-height: 1.85;
      color: rgba(245, 237, 217, 0.88);
      margin-bottom: 1.4rem;
    }

    .article-body h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 3vw, 1.65rem);
      font-weight: 700;
      color: var(--cream);
      margin: 3rem 0 1rem;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    .article-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--gold-light);
      margin: 2rem 0 0.6rem;
    }

    .article-body ul,
    .article-body ol {
      padding-left: 1.4rem;
      margin-bottom: 1.4rem;
    }

    .article-body li {
      font-size: 1.05rem;
      line-height: 1.75;
      color: rgba(245, 237, 217, 0.85);
      margin-bottom: 0.5rem;
    }

    .article-body strong {
      color: var(--cream);
      font-weight: 600;
    }

    /* Pull quote */
    .pull-quote {
      margin: 2.5rem 0;
      padding: 24px 28px;
      border-left: 3px solid var(--gold);
      background: rgba(201, 169, 97, 0.05);
      border-radius: 0 var(--radius) var(--radius) 0;
    }

    .pull-quote p {
      font-size: 1.15rem !important;
      font-style: italic;
      color: var(--cream) !important;
      margin: 0 !important;
    }

    /* FAQ block */
    .faq-block {
      margin: 3rem 0;
    }

    .faq-q {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 22px;
      margin-bottom: 12px;
    }

    .faq-q strong {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--cream);
      display: block;
      margin-bottom: 8px;
    }

    .faq-q p {
      font-size: 0.95rem !important;
      color: var(--text-muted) !important;
      margin: 0 !important;
    }

    /* CTA box */
    .cta-box {
      margin: 3rem 0 0;
      padding: 36px 32px;
      background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.04) 100%);
      border: 1px solid rgba(201, 169, 97, 0.25);
      border-radius: 16px;
      text-align: center;
    }

    .cta-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .cta-box p {
      font-size: 0.95rem !important;
      color: var(--text-muted) !important;
      margin-bottom: 24px !important;
    }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      transition: var(--transition);
    }

    .btn-wa:hover {
      background: #1ebe5d;
      color: #fff;
      transform: translateY(-2px);
    }

    /* ========= BACK LINK ========= */
    .back-link-wrap {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 24px 24px;
    }

    .back-link {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }

    .back-link:hover {
      color: var(--gold);
    }

    /* ========= FOOTER ========= */
    .mini-footer {
      border-top: 1px solid var(--border);
      padding: 32px 24px;
      text-align: center;
    }

    .mini-footer p {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      color: var(--text-muted);
    }
