/* ============================================
   HOUSE OF PRODUCTION — LUXURY STYLESHEET
   Edit colors via CSS variables below
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --purple:       #2E1A47;
  --purple-deep:  #1C0F2E;
  --purple-mid:   #3D2460;
  --gold:         #D4AF37;
  --gold-light:   #E8CF6A;
  --gold-pale:    #F5E9B8;
  --cream:        #F8F5F0;
  --cream-dark:   #EDE8DF;
  --text-dark:    #1A1025;
  --text-body:    #4A3F5C;
  --text-light:   #8A7A9B;
  --white:        #FFFFFF;

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Poppins', sans-serif;

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold:  0 8px 40px rgba(212, 175, 55, 0.15);
  --shadow-deep:  0 20px 60px rgba(46, 26, 71, 0.25);
}

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

/* ─── LOADING SCREEN ─── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--purple-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader .loader-logo {
  width: 180px;
  animation: loaderZoom 2s ease forwards;
}
#loader .loader-tagline {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
#loader .loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(212,175,55,0.3);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
#loader .loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--gold);
  animation: loadBar 1.6s ease 0.3s forwards;
}
@keyframes loaderZoom {
  0%   { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  to { opacity: 1; }
}
@keyframes loadBar {
  to { left: 0; }
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(28, 15, 46, 0.97);
  padding: 12px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.nav-logo img {
  height: 56px;
  width: auto;
  filter: brightness(1.1);
  transition: transform var(--transition);
}
.nav-logo img:hover { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.72rem !important;
  letter-spacing: 2px !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 9px 22px;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--purple-deep) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 40%, #4A2A7A 70%, var(--purple-deep) 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,15,46,0.6) 0%,
    rgba(46,26,71,0.5) 50%,
    rgba(28,15,46,0.75) 100%
  );
  z-index: 1;
}
.hero-ornament {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-ornament::before, .hero-ornament::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
}
.hero-ornament::before {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-ornament::after {
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 28px auto;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%,-1%); }
}
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--purple-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-purple {
  background: var(--purple);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-purple:hover {
  background: var(--gold);
  color: var(--purple-deep);
  transform: translateY(-2px);
}

/* ─── SECTION COMMONS ─── */
section { padding: 100px 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '—';
  margin: 0 10px;
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--purple);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}
.gold-rule {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

/* ─── ABOUT STRIP (homepage) ─── */
.about-strip {
  background: var(--purple-deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '"';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 300px;
  color: rgba(212,175,55,0.04);
  top: -60px; left: -20px;
  line-height: 1;
  pointer-events: none;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-text .section-title { color: var(--white); }
.about-strip-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.9;
}
.about-strip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition), background var(--transition);
}
.stat-item:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── SERVICES SECTION ─── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 4px;
  padding: 50px 36px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ─── PORTFOLIO SECTION ─── */
.portfolio-section { background: var(--cream-dark); }
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(46,26,71,0.2);
  background: transparent;
  color: var(--text-body);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple);
  color: var(--gold);
  border-color: var(--purple);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,15,46,0.9) 0%, rgba(28,15,46,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-info span {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--purple);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '❝';
  position: absolute;
  font-size: 400px;
  color: rgba(255,255,255,0.03);
  top: -100px; right: -50px;
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.5); }
.testimonials-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.testimonial-card {
  display: none;
  text-align: center;
  padding: 20px;
  animation: fadeIn 0.5s ease;
}
.testimonial-card.active { display: block; }
.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.testimonial-author img {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.testimonial-author-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-role {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonial-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-nav button:hover {
  background: var(--gold);
  color: var(--purple-deep);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple), #4A2A7A);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 50%;
}
.cta-section::before { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-section::after  { width: 400px; height: 400px; bottom: -150px; left: -80px; }
.cta-section .section-title { color: var(--white); }
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.cta-section .btn { position: relative; z-index: 1; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 60%, #4A2A7A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(212,175,55,0.08)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
}
.breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--gold); }

/* ─── ABOUT PAGE ─── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.about-story-img {
  position: relative;
}
.about-story-img .img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.about-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-story-img:hover img { transform: scale(1.04); }
.about-story-img .img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}
.about-story-img .img-badge {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--purple);
  color: var(--gold);
  padding: 16px 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.3);
}
.about-story-img .img-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  display: block;
  line-height: 1;
}
.about-story-img .img-badge .txt {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-story-text .section-title { text-align: left; }
.about-story-text .section-eyebrow { text-align: left; }
.about-story-text .section-eyebrow::before { display: none; }
.about-story-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ─── SERVICES PAGE ─── */
.service-category {
  padding: 80px 0;
  border-bottom: 1px solid rgba(46,26,71,0.08);
}
.service-category:last-child { border-bottom: none; }
.service-category-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.service-category-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  min-width: 80px;
}
.service-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.service-sub-item {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 4px;
  padding: 32px 24px;
  transition: all var(--transition);
}
.service-sub-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.service-sub-item .icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.service-sub-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 10px;
}
.service-sub-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}
.service-bg-purple { background: var(--purple-deep); }
.service-bg-purple .service-sub-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(212,175,55,0.15);
}
.service-bg-purple .service-sub-item h4 { color: var(--white); }
.service-bg-purple .service-sub-item p { color: rgba(255,255,255,0.5); }
.service-bg-purple .service-sub-item:hover {
  background: rgba(212,175,55,0.07);
  border-color: var(--gold);
}
.service-bg-purple .section-title { color: var(--white); }
.service-bg-purple .service-category-num { color: rgba(212,175,55,0.1); }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--purple);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-detail-text .label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-text .value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 400;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 6px;
  border: 1px solid rgba(212,175,55,0.12);
  box-shadow: var(--shadow-deep);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 8px;
}
.contact-form .form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(46,26,71,0.15);
  border-radius: 3px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  color: var(--gold);
}
.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 10px;
}
.form-success p { font-size: 0.9rem; color: var(--text-light); }

.whatsapp-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding: 20px 24px;
  background: #25D366;
  border-radius: 4px;
  color: var(--white);
  transition: all var(--transition);
}
.whatsapp-contact:hover {
  background: #1ebe5e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}
.whatsapp-contact svg { width: 28px; height: 28px; fill: white; }
.whatsapp-contact-text .small { font-size: 0.7rem; opacity: 0.8; }
.whatsapp-contact-text .big {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(20%) sepia(10%);
}

/* ─── FOOTER ─── */
footer {
  background: var(--purple-deep);
  padding: 80px 0 30px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom .love { color: var(--gold); }

/* ─── FLOATING BUTTONS ─── */
.floating-wa {
  position: fixed;
  bottom: 90px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  cursor: pointer;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.floating-wa svg { width: 28px; height: 28px; fill: white; }
.floating-wa .tooltip {
  position: absolute;
  right: 68px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.floating-wa:hover .tooltip { opacity: 1; }

.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  font-size: 1rem;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--purple-deep);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--purple-deep);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(212,175,55,0.15);
    z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.9rem; letter-spacing: 2px; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
  }
  .nav-overlay.show { display: block; }
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-story { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-category-header { grid-template-columns: 1fr; gap: 10px; }
  .service-category-num { font-size: 3rem; }
  .contact-form { padding: 30px 24px; }
  .about-strip-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
