/* ===========================================================================
   Laser & Beauty World — Design System
   Dark luxury theme: black + gold
   =========================================================================== */

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

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  /* Colours */
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1a1a1a;

  --gold:          #d4a534;
  --gold-light:    #f0d27a;
  --gold-dark:     #b8912a;
  --gold-gradient: linear-gradient(135deg, #d4a534 0%, #f0d27a 100%);
  --gold-glow:     0 0 30px rgba(212,165,52,0.15);

  --white:         #ffffff;
  --text-primary:  #ffffff;
  --text-body:     #b8b8b8;
  --text-muted:    #777777;

  --glass-bg:      rgba(255,255,255,0.03);
  --glass-border:  rgba(255,255,255,0.06);
  --glass-blur:    12px;

  --border-subtle: rgba(255,255,255,0.08);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py:   100px;
  --section-px:   20px;
  --gap:          24px;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --duration:     0.4s;

  /* Layout */
  --max-width:    1200px;
  --nav-height:   80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--gold-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

/* ── Section ──────────────────────────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212,165,52,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,165,52,0.4);
  color: #0a0a0a;
}

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

.btn-glass {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.btn-glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  font-size: 1.2rem;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.35s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 55px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.6) 40%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--section-px);
}

.hero-content .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.hero-content h1 {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero-content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}

/* Sub-hero (inner pages) */
.hero-sub {
  min-height: 40vh;
  padding-top: var(--nav-height);
}

.hero-sub .hero-content {
  padding-top: 60px;
  padding-bottom: 40px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ── Shimmer / Particle Effect ────────────────────────────────────────────── */
.shimmer-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.shimmer-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: shimmer var(--shimmer-duration, 4s) var(--shimmer-delay, 0s) infinite;
}

@keyframes shimmer {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.card:hover {
  border-color: rgba(212,165,52,0.3);
  transform: translateY(-6px);
  box-shadow: var(--gold-glow);
}

.card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card-img img {
  transform: scale(1.08);
}

.card-body {
  padding: 24px;
}

.card-body .category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Glass card variant */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

.card-glass:hover {
  background: rgba(255,255,255,0.06);
}

/* Icon card (service category) */
.icon-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.icon-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--gold-glow);
  background: var(--bg-card-hover);
}

.icon-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,165,52,0.08);
  color: var(--gold);
  font-size: 1.8rem;
  transition: all var(--duration) var(--ease);
}

.icon-card:hover .icon {
  background: var(--gold);
  color: #0a0a0a;
  transform: scale(1.1);
}

.icon-card h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
}

.icon-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Grid Layouts ─────────────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
}

/* ── Split Layout ─────────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,165,52,0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.split-text .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.split-text h2 {
  margin-bottom: 20px;
}

.split-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ── Feature / Why Us ─────────────────────────────────────────────────────── */
.feature-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--duration) var(--ease);
}

.feature-card:hover {
  border-color: rgba(212,165,52,0.2);
  transform: translateY(-4px);
}

.feature-card .icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature-card h4 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Stats / Counter ──────────────────────────────────────────────────────── */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--gold-gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: #0a0a0a;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(0,0,0,0.6);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

.cta-banner .btn-dark {
  background: #0a0a0a;
  color: var(--gold);
}
.cta-banner .btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* ── Contact Form ─────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,165,52,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Category selector (contact page) */
.category-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.category-chip {
  padding: 10px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  background: var(--bg-card);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,52,0.08);
}

/* ── Contact Info Cards ───────────────────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--duration) var(--ease);
}

.contact-card:hover {
  border-color: rgba(212,165,52,0.2);
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,165,52,0.1);
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-card a {
  color: var(--gold);
}

/* ── Google Map ───────────────────────────────────────────────────────────── */
.map-wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* ── Working Hours ────────────────────────────────────────────────────────── */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-row .day { color: var(--text-body); font-weight: 500; }
.hours-row .time { color: var(--gold); font-weight: 500; }
.hours-row .time.closed { color: var(--text-muted); }

/* ── Service Category Tabs ────────────────────────────────────────────────── */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 var(--section-px);
}

.tab-btn {
  padding: 10px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  background: transparent;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,52,0.08);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Scroll Animations ────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ── Divider ──────────────────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
  margin: 0 auto 24px;
}

.divider-left {
  margin: 0 0 24px 0;
}

/* ── Testimonial ──────────────────────────────────────────────────────────── */
.testimonial-card {
  text-align: center;
  padding: 48px 36px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── Carousel ─────────────────────────────────────────────────────────────── */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--gap);
  animation: scroll-left 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.bg-dark     { background: var(--bg-secondary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.py-0 { padding-top: 0; padding-bottom: 0; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Toast notification ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9999;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-success {
  background: #1a3a1a;
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.2);
}

.toast-error {
  background: #3a1a1a;
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.2);
}

/* ── Service List (in service cards) ──────────────────────────────────────── */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-body);
}

.service-list li:last-child { border-bottom: none; }

.service-list li i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── Mobile Menu Overlay ──────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85%);
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right 0.4s var(--ease);
  border-left: 1px solid var(--border-subtle);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  color: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .split {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --section-px: 16px;
    --gap: 16px;
    --nav-height: 70px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-img img {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-sub {
    min-height: 30vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .cta-banner {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .category-tabs {
    gap: 6px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .card-img {
    height: 180px;
  }

  .stat-item {
    padding: 24px 16px;
  }
}

/* ===========================================================================
   Shop / Product Cards
   =========================================================================== */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.product-card:hover {
  border-color: rgba(212,165,52,0.3);
  transform: translateY(-6px);
  box-shadow: var(--gold-glow);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-badge.new {
  background: linear-gradient(135deg, #4ade80, #22c55e);
}

.product-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-body {
  padding: 24px;
}

.product-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}

.product-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* Product grid responsive */
@media (max-width: 768px) {
  .product-img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .product-grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .product-img {
    height: 240px;
  }
}

/* ===========================================================================
   Shared components used across pages
   =========================================================================== */

/* Standalone eyebrow label (contact, about, shop) */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Inner-page hero: inline background-image needs sizing or it tiles */
.hero-sub {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* WhatsApp button variant */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1eb857;
  color: #fff;
  transform: translateY(-2px);
}

/* Footer bits referenced by markup but previously unstyled */
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-contact li,
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact li i,
.contact-info li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 5px;
  min-width: 14px;
}

.footer-contact li a,
.contact-info li a {
  color: var(--text-muted);
}

.footer-contact li a:hover,
.contact-info li a:hover {
  color: var(--gold);
}

/* ===========================================================================
   Contact page
   =========================================================================== */

/* Chip row sits inside the form, so it aligns left by default */
.category-selector.center {
  justify-content: center;
}

.category-chip:focus-visible,
.form-control:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Form left, details right — top aligned, form gets the extra width */
.contact-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Form panel */
.contact-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* Two columns side by side, so headings sit a step below full-width h2 */
.contact-panel h2,
.contact-aside h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  margin-bottom: 8px;
}

.panel-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* Two fields side by side, collapsing on mobile */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group .optional {
  color: var(--text-muted);
  font-weight: 400;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Spam honeypot — hidden from humans, tempting to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

/* Trimmed from the default 36px so both CTAs sit on one line in the panel */
.form-actions .btn {
  padding: 14px 22px;
}

.form-actions .or {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* Contact info column — full-width rows, or long emails/addresses
   wrap mid-word in the narrow side column */
.contact-aside .grid-2 {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-aside .contact-card {
  padding: 20px 24px;
  align-items: center;
}

.contact-card .icon {
  transition: all var(--duration) var(--ease);
}

.contact-card:hover .icon {
  background: var(--gold);
  color: #0a0a0a;
}

.contact-card-body {
  min-width: 0;
}

.contact-card-body a {
  font-size: 0.9rem;
  font-weight: 500;
  word-break: break-word;
}

/* Opening hours card */
.hours-card {
  margin-top: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.hours-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
}

.hours-card h4 i {
  color: var(--gold);
  font-size: 0.95rem;
}

.hours-row.closed .day,
.hours-row.closed .time {
  color: var(--text-muted);
}

.hours-row.today {
  border-bottom-color: rgba(212, 165, 52, 0.3);
}

.hours-row.today .day {
  color: var(--gold);
  font-weight: 600;
}

/* Map */
.map-section {
  padding-bottom: var(--section-py);
}

.map-wrapper iframe {
  height: 420px;
  display: block;
}

@media (max-width: 900px) {
  .contact-panel {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-wrapper iframe {
    height: 320px;
  }
}

/* ===========================================================================
   Editorial Hero — real clinic photography montage
   The client's own photos are portrait format, so the hero is a split layout
   rather than a full-bleed crop that would destroy them.
   =========================================================================== */
.hero-editorial {
  min-height: auto;
  padding: calc(var(--nav-height) + 70px) 0 90px;
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% 18%, rgba(212,165,52,0.10), transparent 65%),
    radial-gradient(700px 460px at 88% 82%, rgba(212,165,52,0.06), transparent 70%);
  pointer-events: none;
}

.hero-editorial .container {
  position: relative;
  z-index: 2;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  margin-bottom: 20px;
}

.hero-copy h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-copy .subtitle {
  font-size: 1.08rem;
  color: var(--text-body);
  max-width: 44ch;
  margin-bottom: 28px;
}

/* Trust row under the hero copy */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.hero-trust i { color: var(--gold); font-size: 0.85rem; }

/* Staggered photo montage */
.hero-montage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.hero-montage figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  margin: 0;
}

.hero-montage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.hero-montage figure:hover img { transform: scale(1.05); }

/* Tall lead photo spans both rows */
.hero-montage .m-lead {
  grid-row: span 2;
  aspect-ratio: 3 / 4.4;
}

.hero-montage .m-side { aspect-ratio: 4 / 3; }

.hero-montage .m-lead::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55), transparent 55%);
  pointer-events: none;
}

.hero-montage .m-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Honesty marker: these are the real premises, not stock imagery */
.photo-note {
  margin-top: 18px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-note i { color: var(--gold); }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-editorial { padding: calc(var(--nav-height) + 40px) 0 60px; }
  .hero-montage .m-lead { aspect-ratio: 3 / 4; }
}

@media (max-width: 480px) {
  .hero-montage { gap: 10px; }
  .hero-montage .m-caption { font-size: 0.68rem; left: 12px; bottom: 10px; }
}

/* ===========================================================================
   Live Open / Closed Status Pill
   =========================================================================== */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-body);
  white-space: nowrap;
}

.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.status-pill.is-open {
  border-color: rgba(74, 201, 126, 0.35);
  color: #9ae6b8;
}

.status-pill.is-open .dot {
  background: #4ac97e;
  animation: statusPulse 2.4s infinite;
}

.status-pill.is-closed {
  border-color: rgba(255,255,255,0.10);
  color: var(--text-muted);
}

.status-pill.is-closed .dot { background: #8a8a8a; }

.status-pill.is-appt {
  border-color: rgba(212,165,52,0.4);
  color: var(--gold-light);
}

.status-pill.is-appt .dot { background: var(--gold); }

@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,201,126,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74,201,126,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,201,126,0); }
}

@media (prefers-reduced-motion: reduce) {
  .status-pill.is-open .dot { animation: none; }
}

/* Pill sitting inside the nav bar */
.nav-status { margin-left: auto; margin-right: 18px; }

@media (max-width: 1100px) { .nav-status { display: none; } }

/* ===========================================================================
   Appointment-only banner + hours notes
   =========================================================================== */
.appt-banner {
  background: linear-gradient(90deg, rgba(212,165,52,0.13), rgba(212,165,52,0.05));
  border-top: 1px solid rgba(212,165,52,0.18);
  border-bottom: 1px solid rgba(212,165,52,0.18);
  padding: 14px 0;
}

.appt-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-body);
}

.appt-banner strong { color: var(--gold-light); font-weight: 600; }

.appt-banner i { color: var(--gold); }

.hours-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(212,165,52,0.25);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.55;
}

.hours-note i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.hours-note strong { color: var(--gold-light); font-weight: 600; }

/* Footer hours list — shared by every footer so all pages read identically */
.hours-list li,
.footer-hours ul li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-list li:last-child,
.footer-hours ul li:last-child { border-bottom: none; }

.hours-list li span:first-child,
.footer-hours ul li span:first-child { color: var(--text-muted); }

.hours-list li.is-closed span,
.footer-hours ul li.is-closed span { color: var(--text-muted); }

.hours-list li.today span,
.footer-hours ul li.today span {
  color: var(--gold-light);
  font-weight: 600;
}

.hours-list li.today span:first-child,
.footer-hours ul li.today span:first-child { color: var(--gold); }

/* ===========================================================================
   Service crest tiles
   Replaces the stock/AI photography that used to sit on treatment cards.
   Pure CSS, so it is original artwork and costs zero image bandwidth.
   =========================================================================== */
.card-crest {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.16), transparent 62%),
    linear-gradient(160deg, #17140d 0%, #101010 55%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(212,165,52,0.16);
}

/* Fine diagonal weave for texture rather than flat colour */
.card-crest::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(212,165,52,0.05) 0 1px,
    transparent 1px 9px
  );
  opacity: 0.8;
}

/* Gold ring behind the glyph */
.card-crest::after {
  content: '';
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,52,0.28);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}

.card:hover .card-crest::after {
  transform: scale(1.12);
  border-color: rgba(212,165,52,0.55);
}

.card-crest i {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.5s var(--ease);
}

.card:hover .card-crest i { transform: translateY(-3px); }

/* Category name in small caps under the glyph */
.card-crest .crest-cat {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(212,165,52,0.55);
  font-weight: 600;
}

/* Per-category tint so a long grid does not read as one flat block */
.card-crest[data-cat="laser"]        { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.20), transparent 62%), linear-gradient(160deg, #1a1509 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="facials"]      { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.13), transparent 62%), linear-gradient(160deg, #14161a 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="rejuvenation"] { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.13), transparent 62%), linear-gradient(160deg, #10181a 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="aesthetics"]   { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.15), transparent 62%), linear-gradient(160deg, #191016 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="waxing"]       { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.13), transparent 62%), linear-gradient(160deg, #1a1410 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="massage"]      { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.13), transparent 62%), linear-gradient(160deg, #101a14 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="eyes"]         { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.13), transparent 62%), linear-gradient(160deg, #161018 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="nails"]        { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.13), transparent 62%), linear-gradient(160deg, #1a1018 0%, #101010 55%, #0d0d0d 100%); }
.card-crest[data-cat="specialist"]   { background-image: radial-gradient(120% 130% at 50% 0%, rgba(212,165,52,0.17), transparent 62%), linear-gradient(160deg, #101318 0%, #101010 55%, #0d0d0d 100%); }

@media (prefers-reduced-motion: reduce) {
  .card-crest::after, .card-crest i { transition: none; }
}

/* ===========================================================================
   Inside the Clinic — real photo strip
   =========================================================================== */
.clinic-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.clinic-shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  padding: 0;
  display: block;
  width: 100%;
}

.clinic-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.92);
}

.clinic-shot:hover img,
.clinic-shot:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.clinic-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent 58%);
  pointer-events: none;
}

.clinic-shot figcaption,
.clinic-shot .shot-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.92);
  text-align: left;
}

.clinic-shot .zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-light);
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(212,165,52,0.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.clinic-shot:hover .zoom-hint,
.clinic-shot:focus-visible .zoom-hint { opacity: 1; }

.clinic-shot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .clinic-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .clinic-strip { grid-template-columns: 1fr; gap: 12px; }
}

/* ===========================================================================
   Lightbox
   =========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: rgba(6,6,6,0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-figure {
  position: relative;
  max-width: min(860px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  width: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(212,165,52,0.22);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.lightbox.open .lightbox-figure img { transform: scale(1); }

.lightbox-figure figcaption {
  font-size: 0.85rem;
  color: var(--text-body);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,52,0.3);
  background: rgba(20,20,20,0.85);
  color: var(--gold-light);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-figure img { max-height: calc(100vh - 190px); }
}

/* ===========================================================================
   Services search
   =========================================================================== */
.svc-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 28px;
}

.svc-search i.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.9rem;
  pointer-events: none;
}

.svc-search input {
  width: 100%;
  padding: 15px 48px 15px 48px;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease);
}

.svc-search input::placeholder { color: var(--text-muted); }

.svc-search input:focus {
  outline: none;
  border-color: rgba(212,165,52,0.5);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(212,165,52,0.08);
}

.svc-search .clear-search {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.07);
  color: var(--text-body);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all var(--duration) var(--ease);
}

.svc-search .clear-search:hover { background: var(--gold); color: #0a0a0a; }
.svc-search.has-value .clear-search { display: flex; }

.svc-count {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  min-height: 20px;
}

.svc-count strong { color: var(--gold); font-weight: 600; }

.svc-empty {
  text-align: center;
  padding: 70px 20px;
  display: none;
}

.svc-empty.show { display: block; }

.svc-empty i {
  font-size: 2.4rem;
  color: rgba(212,165,52,0.35);
  margin-bottom: 18px;
  display: block;
}

.svc-empty h3 { margin-bottom: 10px; }
.svc-empty p { color: var(--text-muted); margin-bottom: 22px; }

/* Search hit highlight */
.card mark {
  background: rgba(212,165,52,0.28);
  color: var(--gold-light);
  border-radius: 3px;
  padding: 0 2px;
}

/* ===========================================================================
   Sticky mobile action bar
   =========================================================================== */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: none;
  background: rgba(12,12,12,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212,165,52,0.18);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bar a {
  flex: 1;
  padding: 11px 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-body);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.mobile-bar a:last-child { border-right: none; }
.mobile-bar a i { font-size: 1.05rem; color: var(--gold); }
.mobile-bar a:active { background: rgba(212,165,52,0.1); }

.mobile-bar a.primary { color: var(--gold-light); }

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  /* Lift the floating WhatsApp button clear of the bar */
  .whatsapp-float { bottom: 88px; }
  /* Stop the bar covering the last of the footer */
  body { padding-bottom: 66px; }
}

/* ===========================================================================
   Reusable: photo frame for split sections
   =========================================================================== */
.split-img.photo-frame img {
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.split-img.photo-frame {
  position: relative;
}

.split-img.photo-frame::before {
  content: '';
  position: absolute;
  inset: -14px -14px auto auto;
  width: 120px;
  height: 120px;
  border-top: 1px solid rgba(212,165,52,0.4);
  border-right: 1px solid rgba(212,165,52,0.4);
  border-top-right-radius: 8px;
  pointer-events: none;
}

/* Two-up portrait pair used on the About page */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-pair img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.photo-pair img:first-child { margin-top: 26px; }

@media (max-width: 480px) {
  .photo-pair img:first-child { margin-top: 0; }
}

/* Machine / equipment callout used for the Ultra EM SET section */
.kit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.kit-card .kit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,165,52,0.12);
  border: 1px solid rgba(212,165,52,0.3);
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.kit-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.kit-card p { color: var(--text-body); font-size: 0.94rem; margin-bottom: 0; }

.kit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.kit-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  color: var(--gold-light);
  background: rgba(212,165,52,0.1);
  border: 1px solid rgba(212,165,52,0.22);
}

@media (max-width: 520px) {
  .kit-card { grid-template-columns: 1fr; gap: 14px; }
}

/* Accessibility helper */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================================================
   Gap fillers — classes the markup already used but that were never defined,
   so staggered reveals, alternating section tints and bare icons all render.
   =========================================================================== */

/* Explicit stagger steps (the .stagger > * variant needs a JS-set --i) */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.45s; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* Section background tints */
.bg-light-dark { background: var(--bg-secondary); }
.bg-darker     { background: #070707; }
.bg-black      { background: #000; }

/* Spacing utilities */
.py-5 { padding-top: 80px; padding-bottom: 80px; }
.py-6 { padding-top: 100px; padding-bottom: 100px; }
.pt-3 { padding-top: 24px; }
.border-top { border-top: 1px solid var(--border-subtle); }
.d-inline-block { display: inline-block; }

/* Bare <i> icons inside cards (markup does not always use an .icon wrapper) */
.icon-card > i {
  display: flex;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,165,52,0.08);
  border: 1px solid rgba(212,165,52,0.16);
  color: var(--gold);
  font-size: 1.6rem;
  transition: all var(--duration) var(--ease);
}

.icon-card:hover > i {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  transform: scale(1.08);
}

.icon-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card > i {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card .feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,165,52,0.08);
  border: 1px solid rgba(212,165,52,0.16);
  color: var(--gold);
  font-size: 1.5rem;
}

/* Stats */
.stat-suffix { color: var(--gold); }

.stat-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 0;
}

/* Testimonial paragraphs use .quote rather than <blockquote> */
.testimonial-card .quote {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 22px;
  line-height: 1.65;
}

.testimonial-card .author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0;
}

/* CTA banner two-column variant used on the home page */
.cta-banner .cta-content h2 { margin-bottom: 12px; }
.cta-banner .cta-content p  { margin-bottom: 0; }

.cta-banner .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner .container > .reveal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  text-align: left;
}

.cta-banner .container > .reveal .cta-content { flex: 1 1 320px; }

@media (max-width: 768px) {
  .cta-banner .container > .reveal { text-align: center; justify-content: center; }
  .cta-banner .cta-buttons { width: 100%; }
}

/* Rounded image helper + About gallery */
.rounded-img {
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.gallery-grid { gap: var(--gap); }

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover .gallery-img { transform: scale(1.06); }

/* Contact info list in the home footer */
.contact-info-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

.contact-info-list li i { color: var(--gold); margin-top: 5px; flex-shrink: 0; }

/* Service group headings on the services page */
.service-group-header {
  margin: 0 0 32px;
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.service-group-header h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.service-group-header h2 i {
  font-size: 0.8em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(212,165,52,0.55), rgba(212,165,52,0));
}

.service-group { margin-bottom: 70px; }
.service-group:last-child { margin-bottom: 0; }

/* Footer <ul class="footer-links"> variant (About page) */
ul.footer-links li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

ul.footer-links li a { color: var(--text-body); }
ul.footer-links li a:hover { color: var(--gold); }


/* ===========================================================================
   Full-bleed hero — centred copy over a real clinic photograph
   =========================================================================== */

/* The photos are bright, so the standard overlay gets an extra vignette to
   keep gold text legible over busy areas like the plant wall. */
.hero-overlay.overlay-deep {
  background:
    radial-gradient(ellipse 80% 62% at 50% 48%, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.55) 55%, rgba(8,8,8,0.30) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.55) 38%, rgba(10,10,10,0.92) 100%);
}

/* Centre the trust chips and photo note when they sit in a centred hero */
.hero-content .hero-trust {
  justify-content: center;
  margin-bottom: 32px;
}

.hero-content .photo-note {
  justify-content: center;
  margin-top: 26px;
}

.hero-content .subtitle {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
}

.hero-content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* Slightly wider than the base 800px so the headline can breathe */
.hero-content.hero-wide { max-width: 900px; }

/* Scroll cue at the foot of the hero */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll i { color: var(--gold); animation: heroBob 2.2s var(--ease) infinite; }

@keyframes heroBob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 768px) {
  .hero-scroll { display: none; }
  .hero { min-height: 88vh; }
  .hero-content .hero-trust { gap: 8px; }
  .hero-trust span { padding: 7px 13px; font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; transform: none; }
  .hero-scroll i { animation: none; }
}

/* Inner-page heroes get a real minimum height so the crop reads properly */
.hero-sub {
  min-height: 46vh;
  padding-top: var(--nav-height);
}

@media (max-width: 768px) {
  .hero-sub { min-height: 34vh; }
}


/* ===========================================================================
   Lighter hero treatment
   The clinic photos are bright and clean; a heavy scrim just made them muddy.
   Instead: a light scrim, plus a whisper of blur on the photo so fine detail
   (product label text) stops competing with the headline. The image still
   reads bright, and the type stays legible.
   =========================================================================== */
.hero-overlay.overlay-soft {
  background:
    radial-gradient(ellipse 82% 62% at 50% 45%,
      rgba(8,8,8,0.58) 0%, rgba(8,8,8,0.40) 58%, rgba(8,8,8,0.24) 100%),
    linear-gradient(180deg,
      rgba(10,10,10,0.48) 0%, rgba(10,10,10,0.28) 38%, rgba(10,10,10,0.80) 100%);
}

.hero-bg.bg-soften img {
  filter: blur(2px) saturate(1.06) brightness(1.05);
}

/* A soft shadow keeps white type crisp against the lighter background */
.hero-bg.bg-soften ~ .hero-content h1,
.hero-bg.bg-soften ~ .hero-content .subtitle {
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.hero-bg.bg-soften ~ .hero-content .label {
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}

/* Chips need a touch more body over a bright photo */
.hero-bg.bg-soften ~ .hero-content .hero-trust span {
  background: rgba(12,12,12,0.55);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg.bg-soften img { filter: saturate(1.06) brightness(1.05); }
}
