/* =============================
   ROOT VARIABLES & RESET
============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4af7a;
  --gold-light: #e8cfa0;
  --gold-dark: #b8913d;
  --gold-glow: rgba(212,175,122,0.25);
  --cream: #faf7f2;
  --cream2: #f3ede4;
  --dark: #1a1209;
  --dark2: #231709;
  --dark3: #2c1f0e;
  --text: #3d2e1a;
  --text-light: #7a6a56;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --shadow: 0 8px 40px rgba(26,18,9,0.12);
  --shadow-lg: 0 20px 60px rgba(26,18,9,0.18);
  --radius: 2px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --navbar-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Prevent sections hiding under fixed navbar when anchor-jumped to */
section[id], div[id] {
  scroll-margin-top: var(--navbar-height);
}

/* =============================
   TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 500; }
em { font-style: italic; color: var(--gold); }

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }

.section-subtitle {
  color: var(--text-light);
  max-width: 540px;
  margin: 0.5rem auto 0;
  font-size: 1rem;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 4rem; }

/* =============================
   LAYOUT
============================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* =============================
   BUTTONS
============================= */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::after { transform: translateX(0); }

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,122,0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; text-align: center; }

/* =============================
   NAVBAR
============================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(18,10,4,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* =============================
   LOGO IMAGE
============================= */
.logo { display: inline-flex; align-items: center; }

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  /* The logo has a black background — make it transparent via mix-blend-mode */
  mix-blend-mode: lighten;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(212,175,122,0.25));
}

.logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(212,175,122,0.5));
  transform: scale(1.04);
}

.logo-img--footer {
  height: 72px;
  mix-blend-mode: lighten;
  margin-bottom: 1.2rem;
}

/* =============================
   NAVBAR (keep existing logo styles but override text logo bits)
============================= */
/* Remove old text-logo styles that no longer apply */
.logo-icon, .logo-text, .logo-main, .logo-sub { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.65rem 1.6rem;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(18,10,4,0.98);
  border-top: 1px solid rgba(212,175,122,0.18);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1.1rem;
}

.mobile-menu a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-btn {
  display: inline-block !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.7rem 1.6rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* =============================
   HERO
============================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1800&q=85') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,10,4,0.9) 0%,
    rgba(26,18,9,0.65) 50%,
    rgba(44,31,14,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 820px;
  padding: 0 2rem;
  padding-top: 6rem; /* clear the fixed navbar */
  animation: fadeInUp 1.2s ease forwards;
  margin-top: 0;
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero h1 {
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.5rem auto;
  color: var(--gold);
  font-size: 0.9rem;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  display: block;
  width: 70px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.6;
}

.hero-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  background: rgba(212,175,122,0.1);
  border: 1px solid rgba(212,175,122,0.2);
  backdrop-filter: blur(10px);
  padding: 1.5rem 3rem;
  animation: fadeInUp 1.5s ease forwards;
}

.hero-stat { text-align: center; color: var(--white); }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,175,122,0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px; height: 45px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================
   MARQUEE STRIP
============================= */
.strip {
  background: var(--dark2);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(212,175,122,0.12);
  border-bottom: 1px solid rgba(212,175,122,0.12);
}

.strip-inner {
  display: flex;
  gap: 2.5rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.strip-inner span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.strip-inner .dot { color: var(--gold); font-size: 0.55rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================
   ABOUT
============================= */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.img-card {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-card--large {
  width: 78%;
  height: 76%;
  top: 0; left: 0;
}

.img-card--small {
  width: 56%;
  height: 52%;
  bottom: 0; right: 0;
  border: 6px solid var(--white);
}

.img-card img { transition: transform 0.7s ease; }
.img-card:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  bottom: 12%;
  left: -4%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 1.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(184,145,61,0.4);
  z-index: 2;
}

.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.2rem;
  display: block;
}

.about-content > p {
  color: var(--text-light);
  margin-bottom: 1.3rem;
  font-size: 0.97rem;
  line-height: 1.85;
}

.about-features {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.feature:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.feature p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =============================
   EXPERIENCE BANNER
============================= */
.experience-banner {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.experience-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1400&q=60') center/cover no-repeat;
  opacity: 0.07;
}

.experience-heading {
  color: var(--white);
  margin-bottom: 3rem;
  position: relative;
}

.experience-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  position: relative;
}

.exp-item {
  color: var(--white);
  text-align: center;
  max-width: 150px;
  transition: var(--transition);
}

.exp-item:hover { transform: translateY(-6px); }

.exp-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(212,175,122,0.12);
  border: 1px solid rgba(212,175,122,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  transition: var(--transition);
}

.exp-item:hover .exp-icon-wrap {
  background: rgba(212,175,122,0.22);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,122,0.2);
}

.exp-item h5 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.exp-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* =============================
   SERVICES
============================= */
.services { background: var(--cream); }

.services-category { margin-bottom: 4.5rem; }

.cat-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,175,122,0.28);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cat-title span { color: var(--gold); font-size: 0.85rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-grid--wide { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(212,175,122,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.45s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,122,0.35);
}

.service-card:hover::before { width: 100%; }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.75;
}

.featured-card {
  background: linear-gradient(145deg, var(--dark), var(--dark3));
  border-color: rgba(212,175,122,0.2);
}

.featured-card h4 { color: var(--white); }
.featured-card p { color: rgba(255,255,255,0.6); }
.featured-card::before { background: linear-gradient(to right, var(--gold), var(--gold-light)); }

/* Laser Grid */
.laser-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.laser-item {
  background: var(--white);
  border: 1px solid rgba(212,175,122,0.18);
  padding: 1rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  cursor: default;
}

.laser-item span { color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }

.laser-item:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Other Services Tags */
.other-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.other-services span {
  background: var(--white);
  border: 1px solid rgba(212,175,122,0.28);
  padding: 0.65rem 1.3rem;
  font-size: 0.82rem;
  color: var(--text);
  transition: var(--transition);
  cursor: default;
}

.other-services span:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,122,0.3);
}

/* =============================
   CTA SECTION
============================= */
.cta-section {
  position: relative;
  padding: 9rem 2rem;
  background: url('https://images.unsplash.com/photo-1519415943484-9fa1873496d4?w=1800&q=80') center/cover no-repeat fixed;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18,10,4,0.88) 0%, rgba(44,31,14,0.78) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 { margin-bottom: 1.2rem; }

.cta-content p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  font-size: 1.02rem;
  line-height: 1.85;
}

/* =============================
   TESTIMONIALS
============================= */
.testimonials {
  background: var(--cream2);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '✦';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  color: rgba(212,175,122,0.04);
  font-family: var(--font-serif);
  pointer-events: none;
  line-height: 1;
}

.testimonials-slider {
  max-width: 780px;
  margin: 0 auto;
  min-height: 240px;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeSlide 0.6s ease forwards;
}

.testimonial-slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.t-quote {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.t-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}

.t-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-align: left;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.t-dot {
  width: 28px;
  height: 3px;
  background: rgba(212,175,122,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.t-dot.active, .t-dot:hover {
  background: var(--gold);
  width: 40px;
}

/* =============================
   CONTACT
============================= */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }

.info-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(5px);
  background: var(--cream2);
}

.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.05rem; }

.info-card h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.info-card a {
  color: var(--gold-dark);
  transition: var(--transition);
  word-break: break-all;
}

.info-card a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  background: var(--dark);
  color: var(--white);
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-btn i { font-size: 1rem; }

.social-btn:hover { transform: translateY(-2px); }
.social-btn[aria-label="Instagram"]:hover { background: #e1306c; color: #fff; }
.social-btn[aria-label="Facebook"]:hover  { background: #1877f2; color: #fff; }
.social-btn[aria-label="WhatsApp"]:hover  { background: #25d366; color: #fff; }
.social-btn[aria-label="TikTok"]:hover    { background: #010101; color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--cream);
  padding: 3rem;
  border: 1px solid rgba(212,175,122,0.18);
}

.contact-form h3 {
  font-size: 1.7rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212,175,122,0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid rgba(212,175,122,0.28);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,122,0.12);
}

.form-group textarea { resize: vertical; }

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(212,175,122,0.12);
  border: 1px solid rgba(212,175,122,0.4);
  color: var(--gold-dark);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

/* =============================
   FOOTER
============================= */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); }

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr 1.4fr;
  gap: 2.5rem;
  padding: 5rem 0 3.5rem;
}

.footer-brand .logo {
  margin-bottom: 1.4rem;
  color: var(--white);
}

.footer-brand > p {
  font-size: 0.87rem;
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,122,0.35);
}

/* Platform-specific hover colours */
.footer-social-btn[aria-label="Instagram"]:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.footer-social-btn[aria-label="Facebook"]:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.footer-social-btn[aria-label="WhatsApp"]:hover  { background: #25d366; border-color: #25d366; color: #fff; }
.footer-social-btn[aria-label="TikTok"]:hover    { background: #010101; border-color: var(--gold); color: var(--gold); }

.footer-links h5,
.footer-important h5,
.footer-services h5,
.footer-contact h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.footer-links ul,
.footer-important ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-important a,
.footer-services a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover,
.footer-important a:hover,
.footer-services a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact p {
  font-size: 0.87rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  padding: 0.7rem 1.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.dev-link {
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.dev-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* =============================
   BACK TO TOP BUTTON
============================= */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(212,175,122,0.4);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* =============================
   SCROLL REVEAL ANIMATIONS
============================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   RESPONSIVE — 1100px
============================= */
@media (max-width: 1100px) {
  .services-grid--wide { grid-template-columns: repeat(3, 1fr); }
  .laser-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================
   RESPONSIVE — 900px
============================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 440px; }
  .about-badge { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--wide { grid-template-columns: repeat(2, 1fr); }
  .laser-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
  .hero-stats { gap: 1.8rem; padding: 1.2rem 2rem; }
}

/* =============================
   RESPONSIVE — 600px
============================= */
@media (max-width: 600px) {
  .section { padding: 4.5rem 0; }
  .services-grid, .services-grid--wide { grid-template-columns: 1fr; }
  .laser-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; max-width: 260px; text-align: center; }
  .about-images { height: 320px; }
  .about-badge { left: 0; bottom: 5%; }
  .hero-stats { flex-direction: column; gap: 1.2rem; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .experience-items { gap: 2rem; }
  .back-to-top { bottom: 1.5rem; right: 1.5rem; }
  .cta-section { padding: 6rem 2rem; }
}

/* =============================
   PAGE HERO (inner pages)
============================= */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1600&q=80') center/cover no-repeat;
  padding-top: 7rem; /* clear fixed navbar */
  padding-bottom: 3rem;
}

.page-hero--services {
  background-image: url('https://images.unsplash.com/photo-1519415943484-9fa1873496d4?w=1600&q=80');
}

.page-hero--contact {
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&q=80');
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18,10,4,0.88) 0%, rgba(44,31,14,0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease forwards;
}

.page-hero-content h1 { margin-bottom: 0.5rem; }

.page-hero-content .hero-subtitle {
  margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

.breadcrumb a {
  color: var(--gold);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--gold-light); }

.breadcrumb span:last-child { color: rgba(255,255,255,0.65); }

/* =============================
   SERVICE TABS BAR
============================= */
.service-tabs-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(212,175,122,0.15);
  position: sticky;
  top: 72px;
  z-index: 900;
}

.service-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-tabs::-webkit-scrollbar { display: none; }

.s-tab {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 1.8rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.s-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(212,175,122,0.06);
}

/* =============================
   CARD LINK
============================= */
.card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: var(--transition);
}

.card-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* =============================
   WHY US (About page)
============================= */
.why-us { background: var(--cream2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(212,175,122,0.12);
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(212,175,122,0.35);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(212,175,122,0.18);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-card h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* =============================
   STATS BAND (About page)
============================= */
.stats-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { color: var(--white); }

.stat-big {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =============================
   MAP BOX (Contact page)
============================= */
.map-box {
  margin-top: 0.5rem;
}

.map-placeholder {
  background: var(--cream2);
  border: 1px solid rgba(212,175,122,0.25);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.map-placeholder span {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================
   RESPONSIVE ADDITIONS
============================= */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .page-hero { min-height: 45vh; }
  .service-tabs-bar { top: 60px; }
  .logo-img { height: 46px; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .page-hero { min-height: 50vh; }
  .s-tab { padding: 0.9rem 1.2rem; }
  .logo-img { height: 40px; }
}

/* =============================
   PRICING PAGE HERO
============================= */
.page-hero--pricing {
  background-image: url('https://images.unsplash.com/photo-1519415943484-9fa1873496d4?w=1600&q=80');
}

/* =============================
   PROMOTIONS SECTION
============================= */
.promo-section { background: var(--cream); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.promo-card {
  background: var(--white);
  border: 1px solid rgba(212,175,122,0.18);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,122,0.4);
}

.promo-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,122,0.3);
}

.promo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  z-index: 2;
}

.promo-badge--gold {
  background: var(--gold);
  color: var(--dark);
}

.promo-card > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.promo-card:hover > img { transform: scale(1.03); }

.promo-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.promo-info h3 {
  font-size: 1.3rem;
  color: var(--dark);
}

.promo-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.promo-info ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.promo-info ul li span { color: var(--gold); }

.promo-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  font-weight: 400;
  margin-top: 0.5rem;
}

.promo-price span {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.promo-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--dark);
  color: var(--white);
  font-size: 1rem;
}

.promo-cta strong { color: var(--gold); font-size: 1.1rem; }

/* =============================
   PRICE MENUS GALLERY
============================= */
.price-gallery-section { background: var(--white); }

.price-category {
  margin-bottom: 4rem;
}

.price-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.price-menu-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}

/* Single-item grids should not stretch too wide */
.price-menu-grid:has(.price-menu-card:only-child) {
  grid-template-columns: minmax(280px, 480px);
  justify-content: center;
}

.price-menu-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212,175,122,0.15);
  border-radius: 4px;
  transition: var(--transition);
}

.price-menu-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-menu-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.price-menu-card:hover img { transform: scale(1.03); }

.price-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,9,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.price-menu-overlay span {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.4rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.price-menu-card:hover .price-menu-overlay {
  background: rgba(26,18,9,0.45);
}

.price-menu-card:hover .price-menu-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   LIGHTBOX
============================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,6,2,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
  animation: fadeIn 0.25s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.lightbox-inner img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover { background: var(--gold-dark); }

/* =============================
   PROMO SECTION ON HOME PAGE
============================= */
.home-promo { background: var(--dark2); }

.home-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-promo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,122,0.2);
  transition: var(--transition);
}

.home-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: var(--gold);
}

.home-promo-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.home-promo-card:hover img { transform: scale(1.04); }

.home-promo-card .promo-overlay-link {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.home-promo-card:hover .promo-overlay-link { opacity: 1; }

.promo-overlay-link span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.promo-overlay-link p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

/* =============================
   RESPONSIVE — PRICING
============================= */
@media (max-width: 1000px) {
  .price-menu-grid--wide { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .home-promo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .promo-grid { grid-template-columns: 1fr; }
  .price-menu-grid,
  .price-menu-grid--wide { grid-template-columns: 1fr; }
  .home-promo-grid { grid-template-columns: 1fr; }

  /* Always show overlay text on mobile */
  .home-promo-card .promo-overlay-link { opacity: 1; }
  .price-menu-overlay span { opacity: 1; transform: translateY(0); }
  .price-menu-overlay { background: rgba(26,18,9,0.3); }
}
