/* ===========================
   LEMED CLINIC - Shared Styles
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --dark-bg: #f9f7f4;
  --darker-bg: #f0ece5;
  --card-bg: #ffffff;
  --card-bg-hover: #faf8f5;
  --gold: #a8792a;
  --gold-light: #c9962f;
  --gold-dark: #7d5a1e;
  --white: #1a1e2e;
  --text-light: #2c2c2c;
  --text-muted: #6b7280;
  --border: rgba(168, 121, 42, 0.22);
  --border-light: rgba(0, 0, 0, 0.07);
  --transition: all 0.35s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-gold: 0 4px 20px rgba(168, 121, 42, 0.15);
  --radius: 4px;
  --radius-lg: 12px;
  --header-h: 96px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: #1a1e2e;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; }
h4 { font-size: 1.3rem; font-weight: 600; font-family: 'Montserrat', sans-serif; }

p { margin-bottom: 1rem; color: var(--text-light); }
a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.section-title p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--text-muted);
}

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ===========================
   TOPBAR
   =========================== */
.topbar {
  background-color: var(--darker-bg);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.topbar a {
  color: var(--text-muted);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 16px; height: 16px; fill: currentColor; }

/* ===========================
   HEADER / NAVBAR
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  display: block;
  padding: 8px 16px;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--gold);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  transform: scaleX(1);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Outline button inside hero — needs visible background over photo */
.hero-btns .btn-outline {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.hero-btns .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

/* ===========================
   HERO SECTION
   =========================== */
/* ===========================
   HERO — Full-screen slideshow
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Slides layer */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: scale(1.04);
  animation: heroKenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(10,10,10,0.62) 0%,
    rgba(10,10,10,0.35) 60%,
    rgba(10,10,10,0.18) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.hero h1 span { color: var(--gold); text-shadow: 0 2px 12px rgba(0,0,0,0.55); }
.hero-sub {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
  font-style: italic;
}
.hero-note {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Navigation */
.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-nav-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.hero-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===========================
   GLAMOUR SLIDESHOW SECTION
   =========================== */
.glamour-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* LEFT — photo column */
.glamour-photo-col {
  position: relative;
  overflow: hidden;
}
.glamour-slider {
  position: absolute;
  inset: 0;
}
.glamour-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  animation: heroKenBurns 8s ease-in-out infinite alternate;
}
.glamour-slide.active { opacity: 1; }

/* nav overlaid on photo, bottom-center */
.glamour-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
}
.glamour-nav-btn {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.glamour-nav-btn:hover { background: var(--gold); border-color: var(--gold); }
.glamour-dots { display: flex; gap: 8px; }
.glamour-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.glamour-dot.active { background: var(--gold); transform: scale(1.2); }

/* RIGHT — text column */
.glamour-text-col {
  background: var(--darker-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}
.glamour-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.glamour-heading {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
.glamour-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.glamour-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===========================
   PAGE BANNER (inner pages)
   =========================== */
.page-banner {
  padding: 100px 0 60px;
  background-color: var(--darker-bg);
  background-image: linear-gradient(135deg, rgba(237,233,225,0.92) 0%, rgba(245,241,234,0.92) 100%), var(--banner-img, none);
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(168,121,42,0.06) 0%, transparent 70%);
}
.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.page-banner .breadcrumb a { color: var(--gold); }
.page-banner .breadcrumb span { color: var(--text-muted); }
.page-banner h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}

/* ===========================
   SERVICES CAROUSEL (Home)
   =========================== */
.services-slider {
  background: var(--darker-bg);
  background-image: url('../images/doctor_section_bg_01.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 80px 0;
}
.slider-track-wrapper {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.service-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}
.service-slide-img {
  overflow: hidden;
}
.service-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-slide:hover .service-slide-img img { transform: scale(1.04); }
.service-slide-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--card-bg);
}
.service-slide-content .tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-slide-content h2 { margin-bottom: 12px; font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.service-slide-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 18px;
}
.slider-btn:hover { background: var(--gold); color: #ffffff; }
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); }

/* ===========================
   ABOUT / INTRO SECTION
   =========================== */
.intro-section {
  padding: 100px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-images {
  position: relative;
}
.intro-img-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
/* contained model slideshow */
.intro-model-slider {
  position: absolute;
  inset: 0;
}
.intro-model-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.intro-model-slide.active { opacity: 1; }
.intro-model-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro-model-btn {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.intro-model-btn:hover { background: var(--gold); border-color: var(--gold); }
.intro-model-dots { display: flex; gap: 6px; }
.intro-model-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.intro-model-dot.active { background: var(--gold); transform: scale(1.2); }
.intro-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--dark-bg);
  box-shadow: var(--shadow);
}
.intro-img-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-text .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.intro-text .btn { margin-top: 12px; }

/* ===========================
   EQUIPMENT / MACHINES SECTION
   =========================== */
.equipment-section {
  background: var(--darker-bg);
  padding: 80px 0;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.equipment-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.equipment-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.equipment-card-img {
  height: 220px;
  overflow: hidden;
}
.equipment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.equipment-card:hover .equipment-card-img img { transform: scale(1.06); }
.equipment-card-body {
  padding: 24px;
}
.equipment-card-body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.equipment-card-body p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ===========================
   LIFTING TREATMENTS / MARQUEE
   =========================== */
.lifting-section {
  padding: 60px 0;
  background: var(--card-bg);
  background-image: url('../images/1.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lifting-inner {
  text-align: center;
}
.lifting-inner h2 { margin-bottom: 8px; }
.lifting-inner .subtitle {
  color: var(--text-muted);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
.lifting-marquee {
  overflow: hidden;
  position: relative;
}
.lifting-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.lifting-marquee:hover .lifting-track { animation-play-state: paused; }
.lifting-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.lifting-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   SERVICES GRID
   =========================== */
.services-section {
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(10,12,30,0.92) 0%, rgba(10,12,30,0.4) 60%, transparent 100%);
}
.service-card-overlay h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 4px;
}
.service-card-overlay .tag {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  background: var(--darker-bg);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  color: #1a1e2e;
}

/* ===========================
   TEAM / EXPERTS SECTION
   =========================== */
.team-section {
  padding: 80px 0;
  background: var(--dark-bg);
  background-image: url('../images/model_recruit_bg_01-scaled-1.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.team-text .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-text h2 { margin-bottom: 20px; }
.team-text p { color: var(--text-muted); line-height: 1.9; }

/* ===========================
   LOCATION / CONTACT SECTION
   =========================== */
.location-section {
  background: var(--darker-bg);
  padding: 80px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-info h2 { margin-bottom: 36px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 18px;
}
.contact-icon svg { width: 20px; height: 20px; fill: currentColor; }
.contact-details h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-details p, .contact-details a {
  font-size: 16px;
  color: var(--text-muted);
  display: block;
  line-height: 1.8;
}
.contact-details a:hover { color: var(--gold); }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.location-map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
  filter: none;
}

/* ===========================
   LEMED EVENT PROMO BANNER
   =========================== */
.promo-banner {
  background: linear-gradient(135deg, #fdf9f4 0%, #f7f1e8 50%, #fdf9f4 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}
.promo-banner h2 { color: var(--gold); margin-bottom: 8px; }
.promo-banner p { color: var(--text-muted); margin-bottom: 24px; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1e2e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-cta {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.footer-cta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1e2e;
  margin-bottom: 8px;
  border: none;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
}
.footer-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-cta .btn { width: 100%; text-align: center; }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-content {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.about-text strong { color: var(--gold); }
.about-image {
  position: sticky;
  top: 100px;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.services-list {
  margin: 24px 0;
}
.services-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.services-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  margin-top: 5px;
  flex-shrink: 0;
}
.services-list li strong { color: var(--text-light); }

/* ===========================
   PRICE LIST PAGE
   =========================== */
.price-tabs {
  padding: 60px 0;
}
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.price-panel {
  background: var(--darker-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
}
.price-panel-header {
  margin-bottom: 32px;
}
.price-panel-header .tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.price-panel-header h2 { margin-bottom: 16px; }
.price-panel-header p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }
.price-panel-header ul {
  margin: 16px 0;
}
.price-panel-header ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
}
.price-panel-header ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
  top: 10px;
}
.price-list-table {
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.price-row:hover {
  padding-left: 8px;
  border-bottom-color: var(--border);
}
.price-name {
  font-size: 16px;
  color: var(--text-light);
}
.price-amount {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.price-note {
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--text-muted);
}
.price-note strong { color: var(--gold); }

/* ===========================
   PROMOTIONS PAGE
   =========================== */
.promotions-content {
  padding: 80px 0;
}
.promo-hero-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.promo-hero-text h2 { margin-bottom: 16px; }
.promo-hero-text p { color: var(--text-muted); }
.promo-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 60px;
}
.promo-contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.promo-contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.promo-contact-card svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  margin: 0 auto 12px;
}
.promo-contact-card .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.promo-contact-card a {
  font-size: 15px;
  color: var(--text-light);
  display: block;
}
.promo-contact-card a:hover { color: var(--gold); }
.promo-notice {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 auto 40px;
  max-width: 700px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-content {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-col h2 { margin-bottom: 32px; }
.contact-note {
  background: rgba(201,169,110,0.08);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--text-muted);
}
.contact-note strong { color: #e88; }
.contact-map-col .location-map {
  height: 400px;
}
.contact-map-col .location-map iframe {
  height: 400px;
}

/* ===========================
   LOCATIONS PAGE
   =========================== */
.locations-content {
  padding: 80px 0;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.location-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.location-card-map {
  height: 220px;
  overflow: hidden;
}
.location-card-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.location-card-body {
  padding: 28px;
}
.location-card-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.location-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #1a1e2e;
}
.location-card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-card-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.location-card-detail svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-card-detail a {
  color: var(--text-muted);
}
.location-card-detail a:hover {
  color: var(--gold);
}
.location-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.location-card-actions .btn {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
}

/* Locations home preview strip */
.locations-strip {
  background: var(--darker-bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.locations-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.locations-strip-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.locations-strip-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.locations-strip-card svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  margin: 0 auto 12px;
}
.locations-strip-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1e2e;
  margin-bottom: 8px;
}
.locations-strip-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) {
  .locations-strip-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .locations-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .locations-strip-grid { grid-template-columns: 1fr; }
}

/* ===========================
   UTILITIES
   =========================== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .intro-grid,
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-img-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .service-slide { grid-template-columns: 1fr; min-height: auto; }
  .service-slide-img { height: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { position: static; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .promo-contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a { padding: 14px 0; border-bottom: 1px solid var(--border-light); }
  .main-nav ul li a::after { display: none; }
  .menu-toggle { display: flex; }

  .site-logo img { height: 48px; }

  .hero { min-height: 85vh; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-nav { bottom: 24px; gap: 14px; }
  .hero-nav-btn { width: 36px; height: 36px; font-size: 20px; }
  .glamour-section { grid-template-columns: 1fr; }
  .glamour-photo-col { min-height: 420px; }
  .glamour-text-col { padding: 48px 24px; }

  .price-panel { padding: 24px 16px; }
  .tab-nav { gap: 4px; }
  .tab-btn { padding: 8px 12px; font-size: 13px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  body { font-size: 16px; }
}
