/* ============================================
   EVI WINDA MAKEUP ARTIST — Premium CSS
   World-class luxury beauty portfolio
   ============================================ */

:root {
  /* Gold Palette */
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F4E4B0;
  --gold-dark: #9A7A2E;
  --gold-glow: rgba(201, 168, 76, 0.25);

  /* Dark Palette */
  --dark: #080810;
  --dark-2: #10101C;
  --dark-3: #18182A;
  --dark-4: #22223A;
  --dark-card: rgba(255,255,255,0.03);

  /* Text */
  --light: #F5F0E8;
  --light-2: #EAE4D8;
  --text: #C8C4BA;
  --text-muted: #7A7670;

  /* Glass */
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-hover: rgba(255, 255, 255, 0.07);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
  --shadow-gold-lg: 0 20px 60px rgba(201, 168, 76, 0.25);

  /* Misc */
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Custom Cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  top: 0; left: 0;
  transition: top 0.05s linear, left 0.05s linear;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  top: 0; left: 0;
  transition: top 0.18s ease, left 0.18s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Utilities ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 130px 0; position: relative; }

.gold-text { color: var(--gold-light); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 72px; }
.section-header.left { text-align: left; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-tag::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: var(--light);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 12px;
}

.section-divider {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.section-divider.left { justify-content: flex-start; }
.section-divider span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
}
.section-divider span::before {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
  padding: 15px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 120px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo img { width: 100%; }
.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  border-radius: 2px;
  animation: loaderFill 1.6s ease forwards;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}
@keyframes loaderFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(8, 8, 16, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
  transition: var(--transition);
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}
.nav-menu-logo { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--light);
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 8, 16, 0.88) 0%,
    rgba(8, 8, 16, 0.45) 50%,
    rgba(8, 8, 16, 0.88) 100%
  );
  z-index: 1;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 2s ease;
  animation: kenBurns 10s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 28px;
  animation: heroFadeIn 1.2s 1s both ease;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.hero-line-1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 300;
  color: var(--gold-pale);
  letter-spacing: 8px;
  line-height: 1.2;
}
.hero-line-2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 12vw, 130px);
  font-weight: 700;
  color: var(--light);
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--light) 30%, var(--gold-pale) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-indicators {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dot {
  width: 3px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
}
.hero-dot.active {
  height: 40px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: heroFadeIn 1s 2s both ease;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
}

/* ── Marquee ── */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-sep { color: var(--dark) !important; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 48px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-block {
  flex: 1;
  text-align: center;
  padding: 20px 24px;
  position: relative;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold);
}
.stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* ── About ── */
.about {
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}
.about-img-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: var(--shadow);
}
.about-img-accent img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.about-award {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--shadow-gold-lg);
}
.about-award i { font-size: 20px; color: var(--dark); }
.about-award span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
}

.about-content { padding-left: 8px; }
.about-text {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-text strong { color: var(--text); }
.about-text em { color: var(--gold-light); font-style: italic; }

.about-certs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.cert-item i { color: var(--gold); font-size: 14px; }

.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Services ── */
.services {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.service-card.featured {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.1), var(--shadow);
}
.service-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.3), var(--shadow), var(--shadow-gold-lg);
}
.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,16,0.9));
}
.service-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 20px;
}
.service-icon i { font-size: 20px; color: var(--gold-light); }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.service-list li i { color: var(--gold); font-size: 9px; }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: var(--transition-fast);
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}
.service-cta i { transition: transform 0.3s ease; }
.service-cta:hover { color: var(--gold-pale); }
.service-cta:hover i { transform: translateX(4px); }

/* ── Process ── */
.process {
  background: var(--dark-2);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-step {
  text-align: center;
  padding: 8px 16px;
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  transition: var(--transition);
}
.process-step:hover .process-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}
.process-icon i { font-size: 24px; color: var(--gold-light); }
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  opacity: 0.3;
}
.process-connector::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

/* ── Gallery ── */
.gallery { background: var(--dark); }
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition-fast);
}
.filter-btn:hover { color: var(--gold-light); border-color: rgba(201, 168, 76, 0.3); }
.filter-btn.active {
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: var(--transition);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.92) 0%, rgba(8,8,16,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.gallery-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--light);
  font-weight: 500;
}
.gallery-zoom {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 13px;
  flex-shrink: 0;
  align-self: flex-end;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}
.gallery-item:hover .gallery-zoom {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}
.gallery-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--glass-border);
}
.gallery-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── Lightbox ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 8, 16, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(8px);
}
.gallery-lightbox.active { opacity: 1; visibility: visible; }
.lightbox-image {
  max-width: 85vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 36px;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 16px;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}
.lightbox-nav:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold-light); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
}

/* ── Testimonials ── */
.testimonials { position: relative; background: var(--dark-2); }
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial-carousel { max-width: 800px; margin: 0 auto; }
.testimonial-track {
  overflow: hidden;
  border-radius: var(--radius);
}
.testimonial-track-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 52px;
  text-align: center;
  position: relative;
}
.testimonial-quote {
  font-size: 40px;
  color: rgba(201, 168, 76, 0.15);
  margin-bottom: 20px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-stars i { color: var(--gold-light); font-size: 16px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 36px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold-dark);
  flex-shrink: 0;
}
.testimonial-author-info { text-align: left; }
.testimonial-author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-fast);
}
.testimonial-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: var(--transition-fast);
  opacity: 0.4;
}
.testimonial-dots button.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
  opacity: 1;
}

/* ── Instagram Strip ── */
.instagram-strip {
  position: relative;
  overflow: hidden;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,16,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 28px;
  color: white;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(8, 8, 16, 0.75);
  backdrop-filter: blur(12px);
  color: var(--light);
  transition: background 0.3s ease;
}
.insta-cta:hover { background: rgba(8, 8, 16, 0.85); }
.insta-cta i:first-child { font-size: 32px; color: var(--gold-light); }
.insta-cta > div strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--light);
}
.insta-cta > div span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.insta-arrow {
  font-size: 18px;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}
.insta-cta:hover .insta-arrow { transform: translateX(6px); }

/* ── Contact ── */
.contact { background: linear-gradient(180deg, var(--dark-3), var(--dark)); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-text {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  color: inherit;
}
a.contact-item:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(4px);
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
}
.contact-item-icon.wa { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.contact-item-icon.ig { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.contact-item-icon.loc { background: rgba(201, 168, 76, 0.1); color: var(--gold-light); }
.contact-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--light);
  margin-bottom: 2px;
}
.contact-item span { font-size: 13px; color: var(--text-muted); }
.contact-arrow { margin-left: auto; color: var(--text-muted); font-size: 12px; }
a.contact-item:hover .contact-arrow { color: var(--gold); transform: translateX(2px); }
.contact-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
}
.contact-tagline i { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 44px;
}
.form-header { margin-bottom: 28px; }
.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--light);
  margin-bottom: 6px;
}
.form-header p { font-size: 13.5px; color: var(--text-muted); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}
.form-control::placeholder { color: rgba(122, 118, 112, 0.6); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7670' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
select.form-control option { background: var(--dark-3); color: var(--text); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── Footer ── */
.footer { background: var(--dark); }
.footer-top {
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 60px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.2));
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-dark);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-booking-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  padding: 11px 22px;
  border-radius: 50px;
  transition: var(--transition-fast);
  margin-bottom: 16px;
}
.footer-wa-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.footer-area {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-area i { color: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-muted); }
.footer-by {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark) !important;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(8, 8, 16, 0.9);
  color: var(--light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: rgba(8, 8, 16, 0.9);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 46px;
  height: 46px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-dark);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ── Scroll Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .process-connector { display: none; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main img { height: 420px; }
  .about-img-accent { display: none; }
  .about-award { display: none; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 3/4; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  /* ── Cursor: hide on touch ── */
  .cursor-dot, .cursor-ring { display: none !important; }

  /* ── Sections ── */
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 44px; }

  /* ── Navbar ── */
  #navbar { padding: 14px 0; }
  .nav-container { position: relative; }
  .nav-logo {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-logo img { height: 40px; }

  /* Logo pindah ke tengah saat scrolled, ukuran tetap */
  #navbar.scrolled { padding: 14px 0; }
  #navbar.scrolled .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #navbar.scrolled .nav-logo img { height: 40px; }
  #navbar.scrolled .nav-toggle {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Mobile menu */
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    flex-direction: column;
    background: rgba(8, 8, 16, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px 32px 40px;
    gap: 18px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.7);
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
    z-index: 1001;
    align-items: flex-start;
  }
  .nav-menu.active { right: 0; }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-link { font-size: 15px; letter-spacing: 1px; color: var(--text); padding: 4px 0; }
  .nav-cta { margin-top: 8px; padding: 12px 24px; font-size: 14px; text-align: center; width: 100%; justify-content: center; }

  /* Logo di dalam menu */
  .nav-menu-logo {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 16px 0 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-menu-logo img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.35));
  }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 80px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 16, 0.50) 0%,
      rgba(8, 8, 16, 0.30) 40%,
      rgba(8, 8, 16, 0.80) 100%
    );
  }
  /* Remove animation on mobile — show content immediately */
  .hero-content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    padding: 0 20px;
    padding-top: 0;
    width: 100%;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    gap: 10px;
    margin-bottom: 16px;
  }
  .eyebrow-line { width: 20px; }
  .hero-line-1 {
    font-size: clamp(16px, 4.5vw, 24px);
    letter-spacing: 3px;
  }
  .hero-line-2 {
    font-size: clamp(42px, 13vw, 72px);
    letter-spacing: -1px;
  }
  .hero-tagline {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
  }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, .btn-outline { justify-content: center; padding: 15px 28px; }
  .hero-indicators { display: none; }
  .hero-scroll-cue { display: none; }

  /* ── Marquee ── */
  .marquee-track span { font-size: 10px; padding: 0 20px; }

  /* ── Stats ── */
  .stats-bar { padding: 36px 0; }
  .stats-grid { flex-wrap: wrap; gap: 0; }
  .stat-block { flex: 0 0 50%; padding: 16px 12px; }
  .stat-block:nth-child(1), .stat-block:nth-child(3) {
    border-right: 1px solid var(--glass-border);
  }
  .stat-block:nth-child(1), .stat-block:nth-child(2) {
    border-bottom: 1px solid var(--glass-border);
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 36px; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-main img { height: 340px; }
  .about-img-accent { display: none; }
  .about-award { display: none; }
  .about-content { padding-left: 0; }
  .about-certs { padding: 18px; }
  .about-actions { flex-direction: column; gap: 10px; }
  .about-actions .btn-primary,
  .about-actions .btn-outline { justify-content: center; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; max-width: 100%; }
  .service-img { height: 200px; }

  /* ── Process ── */
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .process-connector { display: none; }
  .process-num { font-size: 48px; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 3/4; }
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 10px; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 32px 24px; }
  .testimonial-text { font-size: 19px; }

  /* ── Instagram ── */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-cta { flex-direction: column; gap: 12px; text-align: center; padding: 0 20px; }
  .insta-cta > div strong { font-size: 18px; }
  .insta-arrow { display: none; }

  /* ── Contact ── */
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-top { padding: 56px 0 40px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { text-align: center; }
  .footer-logo { margin: 0 auto 14px; height: 52px; }
  .footer-social { justify-content: center; }
  .footer-col a:hover { padding-left: 0; }
  .footer-bottom .container { flex-direction: column; gap: 4px; text-align: center; }
  .footer-wa-btn { display: inline-flex; }
  .footer-area { justify-content: center; }

  /* ── Floats ── */
  .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
  .back-to-top { bottom: 20px; left: 20px; width: 42px; height: 42px; }
  .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .hero { padding-bottom: 64px; }
  .hero-line-2 { font-size: clamp(38px, 14vw, 60px); }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item.tall { aspect-ratio: 4/3; }
  .stats-grid { flex-direction: column; }
  .stat-block { flex: 1 0 100%; }
  .stat-block:nth-child(1), .stat-block:nth-child(3) { border-right: none; }
  .stat-block:nth-child(1), .stat-block:nth-child(2) {
    border-bottom: 1px solid var(--glass-border);
  }
  .stat-block:nth-child(3) { border-bottom: 1px solid var(--glass-border); }
  .testimonial-card { padding: 28px 18px; }
  .contact-form-wrap { padding: 24px 16px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .section-tag { flex-direction: column; gap: 8px; font-size: 12px; }
  .section-tag::before, .section-tag::after { display: none; }
  .about-actions { flex-direction: column; }
  .gallery-cta { margin-top: 36px; padding-top: 32px; }
}
