:root {
  --bg: #F7F3EE;
  --bg-soft: #EFE6DA;
  --white: #FCFAF7;
  --text: #473B34;
  --body: #6A5A4E;
  --gold: #C6A15B;
  --gold-dark: #A98544;
  --dark: #2E2622;
  --border: #D9CCBC;
  --shadow: 0 12px 30px rgba(47, 41, 37, 0.08);
  --radius: 18px;
  --max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--text);
  text-decoration: none;
}

ul {
  list-style: none;
}

p + p {
  margin-top: 16px;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

.site-header {
  background: rgba(252, 250, 247, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 500;
}

.main-nav a.active {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-light {
  background: rgba(255,255,255,0.92);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.75);
}

.btn-light:hover {
  background: #fff;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 12px 20px;
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-nav {
  margin-left: 6px;
}

.active-btn {
  background: var(--gold);
  color: #fff;
}

.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
}

.hero {
  min-height: 88vh;
  background: url("images/lumiere-med-aesthetics-reception-desk-logo.jpg") center/cover no-repeat;
}

.page-hero {
  min-height: 52vh;
}

.page-hero-about {
  background: url("images/lumiere-med-aesthetics-logo-marble-gold.jpg") center/cover no-repeat;
}

.page-hero-treatments {
  background: url("images/lumiere-med-aesthetics-treatment-room-1.jpg") center/cover no-repeat;
}

.page-hero-gallery {
  background: url("images/lumiere-med-aesthetics-waiting-area.jpg") center/cover no-repeat;
}

.page-hero-contact {
  background: url("images/lumiere-med-aesthetics-reception-sandton.jpg") center/cover no-repeat;
}

.page-hero-book {
  background: url("images/lumiere-med-aesthetics-treatment-room-2.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46,38,34,0.72) 0%, rgba(46,38,34,0.48) 45%, rgba(46,38,34,0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  padding: 100px 0;
}

.hero-content.compact {
  padding: 120px 0 90px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gold);
}

.hero h1,
.page-hero h1,
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 1.1;
}

.hero h1,
.page-hero h1 {
  color: #fff;
  font-size: clamp(42px, 8vw, 84px);
  margin-bottom: 20px;
}

.hero p,
.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.92);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center,
.reviews-box,
.cta-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h2,
.section-heading h2,
.reviews-box h2,
.cta-box h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.service-card,
.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card h3,
.service-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.info-card p,
.service-card p {
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-grid figure {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-grid figcaption,
figure figcaption {
  padding: 16px 18px 20px;
  font-size: 14px;
  color: var(--body);
}

.reviews-box,
.cta-box {
  max-width: 760px;
}

.reviews-box p,
.cta-box p {
  margin-bottom: 24px;
}

.map-card {
  padding: 14px;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 14px;
}

.mt-20 {
  margin-top: 20px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 980px;
  margin: 0 auto;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-page h1 {
  color: var(--text);
}

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.86);
  padding-top: 70px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer a {
  color: rgba(255,255,255,0.86);
}

.site-footer li + li {
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
  }

  .main-nav.show {
    display: flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .btn-nav {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 28px;
  }

  .hero {
    min-height: 78vh;
  }

  .page-hero {
    min-height: 44vh;
  }

  .section {
    padding: 70px 0;
  }

  .hero-content,
  .hero-content.compact {
    padding: 80px 0;
  }

  .map-card iframe {
    height: 320px;
  }

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