/* ============================================
   DLK Beauty Bar — Stylesheet
   Fonts: Playfair Display / Cormorant Garamond (display), Poppins (body)
   ============================================ */

:root {
  --color-bg: #fffaf7;
  --color-bg-alt: #fbeee9;
  --color-dark: #241416;
  --color-dark-soft: #3a2327;
  --color-blush: #f3c9d1;
  --color-blush-deep: #e79aab;
  --color-rose-gold: #c9895f;
  --color-gold: #d4af6a;
  --color-gold-light: #f1dcb0;
  --color-text: #4a3538;
  --color-text-soft: #816a6d;
  --color-white: #ffffff;

  --gradient-primary: linear-gradient(135deg, #e79aab 0%, #c9895f 50%, #d4af6a 100%);
  --gradient-dark: linear-gradient(135deg, #241416 0%, #3a2327 100%);
  --gradient-soft: linear-gradient(180deg, #fffaf7 0%, #fbeee9 100%);

  --shadow-soft: 0 20px 60px -20px rgba(36, 20, 22, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(36, 20, 22, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --font-display: "Playfair Display", "Cormorant Garamond", serif;
  --font-alt: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;

  --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

em { font-style: italic; color: var(--color-rose-gold); font-family: var(--font-alt); }

::selection { background: var(--color-blush); color: var(--color-dark); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--color-rose-gold); border-radius: 10px; }

/* ============ Cursor Glow ============ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(231, 154, 171, 0.18) 0%, rgba(212, 175, 106, 0.08) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s ease;
  display: none;
}
@media (min-width: 1024px) { .cursor-glow { display: block; } }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s ease, background 0.35s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn i { font-size: 0.85em; transition: transform 0.3s ease; }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 14px 30px -10px rgba(201, 137, 95, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(201, 137, 95, 0.65); }

.btn-ghost {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid rgba(36, 20, 22, 0.2);
}
.btn-ghost:hover { background: var(--color-dark); color: var(--color-white); transform: translateY(-3px); border-color: var(--color-dark); }

.btn-light {
  background: var(--color-white);
  color: var(--color-dark);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(0,0,0,0.35); }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ Top bar ============ */
.topbar {
  background: var(--gradient-dark);
  color: var(--color-gold-light);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  position: relative;
  z-index: 60;
}
.topbar a { color: var(--color-white); text-decoration: underline; text-underline-offset: 3px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 247, 0.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(36, 20, 22, 0.06);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -14px rgba(36,20,22,0.25); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: max-content;
}

.logo-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  line-height: 1;
}

.logo-mark {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}
.logo-text {
  font-size: 1.05rem;
  color: var(--color-dark);
  font-weight: 600;
}

.logo-byline {
  display: block;
  margin-left: 1px;
  margin-top: 2px;
  font-family: var(--font-alt);
  font-size: 0.76rem;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.1;
  color: rgba(58, 35, 39, 0.78);
}

.nav ul { display: flex; gap: 34px; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav a:hover, .nav a.active { color: var(--color-rose-gold); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 22px;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Reveal animation ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle at 30% 30%, var(--color-blush), transparent 70%);
  top: -140px; right: -120px;
  animation: float1 14s ease-in-out infinite;
}
.blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle at 60% 40%, var(--color-gold-light), transparent 70%);
  bottom: -120px; left: -100px;
  animation: float2 16s ease-in-out infinite;
}
.blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--color-blush-deep), transparent 70%);
  top: 30%; left: 40%;
  opacity: 0.3;
  animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,40px) scale(1.08); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-25px,-30px) scale(1.1); } }

.sparkle-field i {
  position: absolute;
  color: var(--color-gold);
  opacity: 0.7;
  animation: twinkle 3s ease-in-out infinite;
}
.s1 { top: 18%; left: 55%; font-size: 1.4rem; animation-delay: 0s; }
.s2 { top: 65%; left: 20%; font-size: 1rem; animation-delay: 1s; }
.s3 { top: 40%; left: 80%; font-size: 1.2rem; animation-delay: 2s; }
@keyframes twinkle { 0%,100% { opacity: 0.2; transform: scale(0.8) rotate(0deg); } 50% { opacity: 0.9; transform: scale(1.15) rotate(20deg); } }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  background: rgba(201, 137, 95, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow.center { display: flex; width: fit-content; margin: 0 auto 18px; }

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--color-text-soft);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-mobile-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-gold-light) 100%);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 34px;
}
.hero-mobile-tag i { color: var(--color-rose-gold); }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { position: relative; }
.stat-num, .stat-suffix {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-dark);
}
.stat-suffix { font-size: 1.2rem; color: var(--color-rose-gold); margin-left: 2px; }
.stat-label { display: block; font-size: 0.82rem; color: var(--color-text-soft); margin-top: 2px; }

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; position: relative; }
.card-glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  padding: 50px 34px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-card-glow {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 180deg, var(--color-blush), var(--color-gold-light), var(--color-blush-deep), var(--color-blush));
  opacity: 0.35;
  filter: blur(40px);
  animation: spin 12s linear infinite;
  z-index: -1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-photo {
  width: 190px; height: 190px;
  margin: 0 auto 26px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px -14px rgba(201,137,95,0.6);
  border: 4px solid rgba(255,255,255,0.7);
  animation: pulse 4s ease-in-out infinite;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.hero-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--color-dark); }
.hero-card-sub { font-size: 0.9rem; color: var(--color-text-soft); margin-top: 6px; }

.badge-float {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--color-white);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
  box-shadow: var(--shadow-card);
  animation: bob 5s ease-in-out infinite;
}
.badge-float i { color: var(--color-rose-gold); }
.badge-1 { top: 8%; left: -8%; animation-delay: 0s; }
.badge-2 { bottom: 10%; right: -10%; animation-delay: 1.5s; }
.badge-3 { bottom: -6%; left: 24%; animation-delay: 3s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--color-text-soft);
  font-size: 0.8rem;
  z-index: 3;
}
.scroll-cue span {
  width: 1px; height: 34px;
  background: linear-gradient(var(--color-rose-gold), transparent);
}

/* ============ Marquee ============ */
.marquee {
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: scrollMarquee 30s linear infinite; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-gold-light);
  padding: 0 30px;
  white-space: nowrap;
}
.marquee-track span i { color: var(--color-blush-deep); font-size: 0.6rem; }
@keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Section shared ============ */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }

/* ============ 404 Not Found ============ */
.not-found-section {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  text-align: center;
}
.not-found-inner { max-width: 640px; margin: 0 auto; }
.not-found-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-dark);
  margin: 18px 0 16px;
}
.not-found-inner p { color: var(--color-text-soft); margin-bottom: 30px; }
.not-found-inner .hero-cta { justify-content: center; }
.section-head h2 { margin-bottom: 14px; }
.section-sub { color: var(--color-text-soft); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.2;
}

/* ============ About ============ */
.about { background: var(--gradient-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 420px;
  margin: 0 auto;
}
.about-frame-inner {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.about-frame-inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: calc(var(--radius-lg) - 10px);
  z-index: 1;
  pointer-events: none;
}
.about-frame-inner img { width: 100%; height: 100%; object-fit: cover; }

.about-chip {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--color-white);
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.about-chip i { color: var(--color-gold); }
.chip-1 { top: 8%; right: -6%; }
.chip-2 { bottom: 10%; left: -8%; }

.about-copy p { color: var(--color-text-soft); margin: 20px 0; max-width: 520px; }
.about-copy h2 { margin-top: 10px; }

.about-highlights { margin: 10px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.about-highlights li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--color-text); }
.about-highlights i {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-blush);
  color: var(--color-rose-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============ Services ============ */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.tab-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-soft);
  border: 1.5px solid rgba(36,20,22,0.12);
  transition: all 0.3s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 14px 26px -12px rgba(201,137,95,0.55);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 38px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(36,20,22,0.04);
}
.service-card.is-hidden { display: none; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); }

.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-blush), var(--color-gold-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon i { font-size: 1.5rem; color: var(--color-rose-gold); }

.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--color-dark); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--color-text-soft); margin-bottom: 20px; min-height: 66px; }
.service-price {
  display: inline-block;
  font-weight: 700;
  color: var(--color-rose-gold);
  font-size: 0.95rem;
  border-top: 1px dashed rgba(36,20,22,0.15);
  padding-top: 16px;
  width: 100%;
}

/* ============ Mobile Service Banner ============ */
.mobile-service {
  background: var(--gradient-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mobile-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(212,175,106,0.18), transparent 55%);
}
.mobile-service-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
}
.mobile-service-icon {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px -16px rgba(201,137,95,0.6);
  flex-shrink: 0;
  animation: pulse 4s ease-in-out infinite;
}
.mobile-service-icon i { font-size: 3.2rem; color: var(--color-white); }
.mobile-service-copy .eyebrow { background: rgba(212,175,106,0.16); color: var(--color-gold-light); }
.mobile-service-copy h2 { color: var(--color-white); margin-bottom: 16px; }
.mobile-service-copy p { color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 26px; }
.mobile-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.mobile-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: 100px;
}
.mobile-service-list i { color: var(--color-gold); }

/* ============ Features ============ */
.features { background: var(--color-dark); padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature { text-align: center; color: var(--color-white); }
.feature i {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 18px;
  display: inline-block;
}
.feature h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; font-weight: 600; }
.feature p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.feature-highlight {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(212,175,106,0.1);
  border: 1px solid rgba(212,175,106,0.35);
}

/* ============ Gallery ============ */
.gallery-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text-soft);
  border: 1.5px solid rgba(36,20,22,0.12);
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery-item {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-bottom: 22px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
  transition: transform 0.45s cubic-bezier(.2,.8,.3,1), box-shadow 0.4s ease;
  cursor: pointer;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}
.gallery-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.gallery-item i { font-size: 1.6rem; position: relative; z-index: 2; opacity: 0.9; }
.gallery-item span {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.gallery-item:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-soft); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.hide { display: none; }

/* ============ Testimonials ============ */
.testimonials { background: var(--gradient-soft); }
.testimonial-slider { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-track { position: relative; min-height: 260px; }
.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px 46px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.testimonial-card.active { opacity: 1; transform: translateX(0); position: relative; pointer-events: auto; }
.stars { color: var(--color-gold); margin-bottom: 20px; font-size: 0.95rem; letter-spacing: 3px; }
.testimonial-card p { font-family: var(--font-alt); font-style: italic; font-size: 1.3rem; color: var(--color-dark); line-height: 1.5; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-author div { text-align: left; }
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--color-dark); }
.testimonial-author span { font-size: 0.78rem; color: var(--color-text-soft); }

.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(36,20,22,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}
.testimonial-dots button.active { background: var(--color-rose-gold); transform: scale(1.3); }

/* ============ CTA banner ============ */
.cta-banner { background: var(--gradient-primary); padding: 70px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--color-white); }
.cta-inner p { color: rgba(255,255,255,0.9); margin-top: 8px; }

/* ============ Contact ============ */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.contact-info p { color: var(--color-text-soft); margin: 18px 0 30px; max-width: 440px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 34px; }
.contact-list li { display: flex; align-items: center; gap: 16px; font-weight: 500; }
.contact-list i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-blush);
  color: var(--color-rose-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list a:hover { color: var(--color-rose-gold); }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.social-links a:hover { background: var(--color-rose-gold); transform: translateY(-4px); }

.contact-form {
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--color-white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-dark); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(36,20,22,0.12);
  background: var(--color-bg);
  font-size: 0.92rem;
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 4px rgba(201,137,95,0.14);
}
.form-field textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: #4a7a5a;
  background: #e6f4ea;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ============ Footer ============ */
.site-footer { background: var(--gradient-dark); color: rgba(255,255,255,0.75); padding-top: 80px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--color-white); }
.footer-brand .logo-byline { color: var(--color-gold-light); }
.footer-brand p { margin: 16px 0 22px; font-size: 0.88rem; max-width: 280px; }
.footer-col h5 { color: var(--color-white); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 0.88rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-col p { font-size: 0.85rem; margin-bottom: 16px; }

.newsletter-form { display: flex; border-radius: 100px; overflow: hidden; background: rgba(255,255,255,0.08); padding: 5px; }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: var(--color-white);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 24px;
  max-width: 1220px;
  margin: 0 auto;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom i { color: var(--color-blush-deep); }

/* ============ Back to top ============ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 55;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); }

/* ============ WhatsApp float ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-card);
  z-index: 55;
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: translateY(-5px); }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45), var(--shadow-card); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0), var(--shadow-card); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 900px) {
  html, body { overflow-x: clip; }
  .nav { position: absolute; top: calc(100% - 6px); left: 0; right: 0;
    display: none; background: var(--color-white); padding: 32px 28px;
    overflow-y: auto; max-height: calc(100vh - var(--header-h) - 48px);
    border-radius: var(--radius-md); box-shadow: 0 24px 40px -20px rgba(36,20,22,0.28); }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 26px; }
  .nav a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 20px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-frame { margin-bottom: 40px; }

  .mobile-service-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .mobile-service-list { justify-content: center; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .contact-form { padding: 28px; }
  .hero-cta { justify-content: center; }
}
