/* ═══════════════════════════════════════════
   GUNASH NUR — Luxury Beauty & Cosmetics
   Gold & White Luxury Design System
   ═══════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8D5A3;
  --gold-dark:    #9E7B2D;
  --gold-shine:   #F5E6A3;
  --gold-grad:    linear-gradient(135deg, #BF953F 0%, #FCF6BA 40%, #B38728 60%, #FBF5B7 80%, #AA771C 100%);
  --gold-grad2:   linear-gradient(135deg, #C9A84C, #E8D5A3, #C9A84C);
  --white:        #FFFFFF;
  --cream:        #FAF8F2;
  --off-white:    #F5F0E8;
  --dark:         #0E0B04;
  --charcoal:     #1A1608;
  --text:         #2C2415;
  --text-muted:   #7A6D56;
  --border:       rgba(201, 168, 76, 0.25);
  --border-hover: rgba(201, 168, 76, 0.6);
  --shadow-gold:  0 4px 30px rgba(201, 168, 76, 0.15);
  --shadow-card:  0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-hero:  0 20px 60px rgba(0, 0, 0, 0.5);
  --radius:       4px;
  --radius-lg:    12px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:     90px;
  --header-h-sm:  70px;
}

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

/* ─── Typography ─── */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
p { font-size: clamp(0.875rem, 1.2vw, 1rem); color: var(--text-muted); line-height: 1.8; }

/* ─── Gold Text ─── */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-color { color: var(--gold); }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section-sm { padding: clamp(50px, 7vw, 80px) 0; }

/* ─── Section Header ─── */
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-sub { max-width: 560px; margin: 0 auto; font-size: 0.95rem; }
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 16px auto 0;
  max-width: 260px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold-grad);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-dark {
  background: var(--dark);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-dark:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(14, 11, 4, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  height: var(--header-h-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logo-link { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-img {
  height: 58px;
  width: auto;
  max-width: 180px;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  transition: height var(--transition), opacity var(--transition);
}
.logo-link:hover .logo-img { opacity: 0.85; }
.header.scrolled .logo-img { height: 46px; }
.logo-text { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  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%; }

.header-right { display: flex; align-items: center; gap: 16px; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
}
.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  padding: 5px 12px;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
  background: var(--gold-grad);
  color: var(--dark);
}

.nav-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.show { opacity: 1; }

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
  animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 8, 2, 0.82) 0%,
    rgba(10, 8, 2, 0.55) 50%,
    rgba(10, 8, 2, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: calc(var(--header-h) + 20px) 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeInUp 0.9s ease 0.2s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 42px;
  font-weight: 400;
  letter-spacing: 0.04em;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50%       { transform: scaleY(1);   transform-origin: top; }
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 70px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 1rem; }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--border-hover); }
.card:hover::before { transform: scaleX(1); }

/* ─── Services Preview ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(201,168,76,0.2); }
.service-card:hover::after { opacity: 0.04; }
.service-card > * { position: relative; z-index: 1; }

.service-card.featured {
  background: var(--dark);
  border-color: var(--gold);
}
.service-card.featured .service-name,
.service-card.featured .service-includes li { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.6); }

.service-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.service-card.featured .service-tag {
  background: var(--gold-grad);
  color: var(--dark);
  border-color: transparent;
}
.service-name { font-size: 1.45rem; margin-bottom: 10px; }
.service-price {
  font-size: 2.1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1;
}
.service-desc { font-size: 0.875rem; margin-bottom: 24px; min-height: 3.5em; }
.service-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
  opacity: 0.5;
}
.service-includes { text-align: left; }
.service-includes-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-includes li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 7px 0 7px 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.service-includes li:last-child { border-bottom: none; }
.service-includes li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 10px;
}

/* ─── About Teaser ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrapper img {
  width: 100%;
  height: clamp(380px, 50vw, 560px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.about-img-wrapper:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--gold-grad);
  color: var(--dark);
  padding: 14px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.about-img-badge strong { display: block; font-size: 1.6rem; font-family: 'Playfair Display', serif; line-height: 1; }
.about-img-badge span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.about-text { }
.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 22px; }
.about-text p  { margin-bottom: 30px; }

/* ─── Stats ─── */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Gallery Grid ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--off-white);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,2,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--dark);
}

/* Gallery page — larger grid */
.gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
.gallery-grid-full .gallery-item img { height: 320px; }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
}
.lb-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  color: var(--gold-light);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  z-index: 2001;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.lb-close { top: 24px; right: 24px; font-size: 1.4rem; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ─── CTA Section ─── */
.cta-section {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.6); margin-bottom: 38px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── About Page ─── */
.about-bio {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 680px;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--gold);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 20px;
}
.about-quote::before { content: '\201C'; font-size: 3rem; display: block; margin-bottom: -10px; opacity: 0.5; }
.about-quote::after  { content: '\201D'; font-size: 3rem; display: block; margin-top: -10px; opacity: 0.5; }

.specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.specialty-tag::before { content: '◆'; color: var(--gold); font-size: 0.5rem; }
.specialty-tag:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.about-photos-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-photos-duo img {
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.about-photos-duo img:hover { transform: scale(1.03); }
.about-photos-duo .img-tall { margin-top: 40px; }

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.contact-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.contact-icon svg { width: 30px; height: 30px; fill: var(--dark); }
.contact-card h3 { margin-bottom: 10px; }
.contact-card p  { margin-bottom: 26px; font-size: 0.875rem; }

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 30px;
}
.footer-brand .logo-img-footer {
  height: 60px;
  width: auto;
  max-width: 190px;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 16px;
}
.footer-brand h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; }
.footer-made {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Animations ─── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }

.fade-up  { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in  { opacity: 0; transition: opacity 0.75s ease; }
.fade-up.visible, .fade-in.visible { opacity: 1; transform: translateY(0); }

.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; }

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.bg-cream    { background: var(--cream); }
.bg-dark     { background: var(--dark); }
.mt-auto     { margin-top: auto; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split.reverse { direction: ltr; }
  .about-photos-duo { grid-template-columns: 1fr; }
  .about-photos-duo .img-tall { margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; --header-h-sm: 60px; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(14,11,4,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    padding: 30px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; letter-spacing: 0.08em; }
  .nav-overlay { display: block; }
  .hamburger { display: flex; }
  .nav-cta { display: flex; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img, .gallery-grid-full .gallery-item img { height: 200px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }

  .footer-inner { grid-template-columns: 1fr; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 22px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .gallery-grid, .gallery-grid-full { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item img, .gallery-grid-full .gallery-item img { height: 170px; }
  .lang-switcher { padding: 3px; }
  .lang-btn { padding: 4px 9px; font-size: 0.68rem; }
  .stats-row { flex-direction: column; }
  .stat-item { min-width: 100%; border-top: 1px solid var(--border); }
  .stat-item:first-child { border-top: none; }
  .stat-item + .stat-item::before { display: none; }
  .contact-card { padding: 32px 24px; }
}
