/* ============================================================
   C'EST LA VIE — Luxury Beauty Salon CSS
   Palette: warm cream, rose gold, deep mocha
   ============================================================ */
:root {
  --bg:        #FDFAF7;
  --surface:   #FFFFFF;
  --surface2:  #F5EFE9;
  --border:    #E8DDD5;
  --accent:    #C9956C;
  --accent2:   #A8705A;
  --rose:      #D4A89A;
  --gold:      #C9A96E;
  --dark:      #2C1F1A;
  --text:      #3D2B24;
  --text-muted:#8C7B75;
  --text-dim:  #B8A9A4;
  --white:     #FFFFFF;
  --radius:    6px;
  --radius-lg: 14px;
  --shadow:    0 4px 32px rgba(44,31,26,0.10);
  --shadow-sm: 0 2px 12px rgba(44,31,26,0.07);
  --transition:0.25s ease;
  --font:      'Inter', system-ui, sans-serif;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --nav-h:     72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
p { line-height: 1.75; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.serif { font-family: var(--serif); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

.section-label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 48px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-alt { background: var(--surface2); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(20, 14, 12, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,149,108,0.2);
  z-index: 100;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-script {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 30px;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--accent2); color: var(--white) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
/* hamburger morphs into an X when the menu is open */
.nav-inner:has(.nav-links.open) .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-inner:has(.nav-links.open) .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-inner:has(.nav-links.open) .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   LOGOS
   ============================================================ */
.hero-logo {
  width: 220px;
  height: auto;
  margin-bottom: 28px;
  display: block;
}
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44,31,26,0.62) 0%,
    rgba(44,31,26,0.20) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--nav-h) 0 0;
}
.hero-content .container { padding-top: 32px; }
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 640px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.88); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 64px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  color: white;
  font-size: 0.85rem;
  text-align: center;
  z-index: 2;
}
.hero-badge strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,149,108,0.3); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent2); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,149,108,0.3); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-duration {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-card-price { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); }
.service-card-link { font-size: 0.85rem; color: var(--dark); font-weight: 500; }
.service-card-link:hover { color: var(--accent); }

/* ============================================================
   USPs
   ============================================================ */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.usp {
  text-align: center;
  padding: 32px 20px;
}
.usp-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.usp h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.usp p { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   BEFORE/AFTER
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-img {
  position: relative;
  height: 240px;
}
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(44,31,26,0.7);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.ba-card-body {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ba-card-title { font-family: var(--serif); font-size: 1.1rem; color: var(--dark); }
.ba-card-link { font-size: 0.8rem; color: var(--accent); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-img-badge strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--accent); }
.about-img-badge span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.975rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-style: italic; font-family: var(--serif); font-size: 1.05rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 1.0rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,108,0.15);
  border: 1px solid rgba(201,149,108,0.3);
  color: var(--rose);
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: 20px;
}

/* ============================================================
   DETAIL PAGE (behandeling)
   ============================================================ */
.page-top {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
}
.page-top-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.treatment-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.treatment-hero-img {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.treatment-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.treatment-body h2 { font-size: 1.5rem; margin: 32px 0 14px; }
.treatment-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.975rem; }
.results-list { margin: 0 0 24px 0; }
.results-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.results-list li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.treatment-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-item { padding: 14px 0; border-bottom: 1px solid var(--border); }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
}
.sidebar-item-val { font-size: 0.9rem; color: var(--text); }
.sidebar-price { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); }

/* ============================================================
   VOOR & NA GALLERY
   ============================================================ */
.vna-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-info h2 { margin-bottom: 16px; }
.booking-info p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.975rem; }
.booking-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.booking-detail-icon { color: var(--accent); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.booking-detail-text strong { display: block; font-size: 0.875rem; color: var(--dark); margin-bottom: 2px; }
.booking-detail-text span { font-size: 0.85rem; color: var(--text-muted); }
.booking-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.booking-form h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); margin-bottom: 7px; letter-spacing: 0.03em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C7B75' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,149,108,0.12);
}
textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 0.95rem; padding: 16px; border-radius: 30px; }
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.flash-success { background: rgba(166,199,148,0.15); border: 1px solid rgba(120,180,100,0.3); color: #5a8f42; }
.flash-error   { background: rgba(220,100,80,0.1);  border: 1px solid rgba(220,100,80,0.3);  color: #c0392b; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--accent); }
.contact-card-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-card h3 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   OVER ONS
   ============================================================ */
.team-section { text-align: center; max-width: 700px; margin: 0 auto; }
.team-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 32px;
  border: 4px solid var(--border);
  box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .logo-script { color: rgba(255,255,255,0.9); }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-top: 10px; }
.footer-hours { color: var(--rose); font-size: 0.8rem; margin-top: 8px; }
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; font-family: var(--font); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--rose); }
.footer-col li { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--rose); }

/* ============================================================
   404
   ============================================================ */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.not-found h1 { font-size: 6rem; font-family: var(--serif); color: var(--border); margin-bottom: 16px; }
.not-found p { color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   SALON GALLERY
   ============================================================ */
.gallery-section { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 215px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--feature { grid-column: span 2; grid-row: span 2; }
.gallery-item-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 20px 16px;
  background: linear-gradient(to top, rgba(20,14,12,0.82) 0%, rgba(20,14,12,0.35) 55%, transparent 100%);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transform: translateY(6px);
  opacity: 0.92;
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-item-cap { opacity: 1; transform: translateY(0); }

/* ============================================================
   STOREFRONT BANNER (contact)
   ============================================================ */
.storefront {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow);
}
.storefront img { width: 100%; height: 100%; object-fit: cover; }
.storefront-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 28px 22px;
  background: linear-gradient(to top, rgba(20,14,12,0.78), transparent);
  color: #fff;
}
.storefront-cap strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.storefront-cap span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(20,14,12,0.98);
    border-bottom: 1px solid rgba(201,149,108,0.2);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; margin: 8px 0 0; border-radius: var(--radius); }

  .hero-title { font-size: 2.6rem; }
  .hero-badge { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { left: 16px; }
  .ba-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 175px; }
  .gallery-item--feature { grid-column: span 2; grid-row: span 2; }
  .gallery-grid:not(.gallery-grid--trio) .gallery-item:last-child { grid-column: span 2; }
  .storefront { height: 240px; }
  .treatment-layout { grid-template-columns: 1fr; }
  .treatment-sidebar { position: static; }
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .vna-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .usps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-item--feature { grid-column: span 1; grid-row: span 1; }
}
