/* ============================================
   AURA NAILS — MAIN CSS
   Premium Scandinavian Beauty Studio
   Göteborg
   ============================================ */

/* ---- Design Tokens ---- */
:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --cream-mid: #F0EAE0;
  --sand: #D4C5A9;
  --taupe: #B8A898;
  --brown: #5C4A3A;
  --brown-deep: #3D2E22;
  --black: #1A1410;
  --white: #FEFCF8;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 10rem;

  --max-w: 1320px;
  --nav-h: 80px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  --full-bleed-h: 85vh;
  --full-bleed-max: 960px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--brown-deep);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: var(--space-sm);
}

p { font-size: clamp(0.95rem, 1.3vw, 1.05rem); color: var(--brown); max-width: 60ch; }
p.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section { position: relative; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--brown-deep);
  color: var(--cream);
  border: 1.5px solid var(--brown-deep);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brown-deep);
  border: 1.5px solid var(--brown-deep);
}
.btn-outline:hover {
  background: var(--brown-deep);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown-deep);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* Arrow after button */
.btn::after {
  content: '→';
  font-size: 0.9em;
  transition: transform 0.3s var(--ease-smooth);
}
.btn:hover::after { transform: translateX(3px); }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s;
}

.site-nav.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(92, 74, 58, 0.1);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--brown-deep);
  transition: color 0.3s;
}
.nav-logo span { color: var(--taupe); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brown-deep);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--brown-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--brown-deep); }
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown-deep);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s var(--ease-smooth);
  overflow-y: auto;
}
.nav-mobile.open {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--space-md);
  border-bottom: 1px solid var(--cream-dark);
  min-height: var(--nav-h);
  flex-shrink: 0;
}

.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  color: var(--brown-deep);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-mobile-close:hover {
  background: var(--cream-dark);
  border-color: var(--sand);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  gap: 0;
  flex: 1;
}
.nav-mobile-links a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--brown-deep);
  transition: color 0.2s;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: block;
}
.nav-mobile-links a:first-child { border-top: 1px solid var(--cream-dark); }
.nav-mobile-links a:hover { color: var(--taupe); }

.nav-mobile-book {
  margin: var(--space-md);
  align-self: flex-start;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: var(--full-bleed-h);
  max-height: var(--full-bleed-max);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 16, 0.1) 0%,
    rgba(26, 20, 16, 0.0) 40%,
    rgba(26, 20, 16, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
  width: 100%;
}

.hero-text {
  max-width: 680px;
}

.hero-text .eyebrow { color: rgba(245, 240, 232, 0.7); }
.hero-text h1 { color: var(--cream); font-style: italic; margin-bottom: 1.2rem; }
.hero-text h1 em { font-style: normal; }
.hero-text p { color: rgba(245, 240, 232, 0.85); max-width: 52ch; margin-bottom: 2.5rem; font-size: 1.05rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}
.hero-trust span { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust span::before { content: '·'; }
.hero-trust span:first-child::before { display: none; }

/* Split hero variant */
.hero-split-text h1 { color: var(--brown-deep); margin-bottom: 1.5rem; }
.hero-split-text p { color: var(--brown); margin-bottom: 2.5rem; }
.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Page hero (non-home) */
.page-hero {
  position: relative;
  min-height: var(--full-bleed-h);
  max-height: var(--full-bleed-max);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.08) 0%, rgba(26,20,16,0.52) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-lg) 0;
  width: 100%;
}
.page-hero-content .eyebrow { color: rgba(245,240,232,0.6); }
.page-hero-content h1 { color: var(--cream); font-style: italic; margin-bottom: 0.8rem; }
.page-hero-content h2 { color: rgba(245,240,232,0.9); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 300; margin-bottom: 1.5rem; }
.page-hero-content p { color: rgba(245,240,232,0.75); margin-bottom: 2rem; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Section Spacing ---- */
.section-lg { padding: var(--space-xxl) 0; }
.section-md { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }

/* ---- Section Headers ---- */
.section-header { margin-bottom: var(--space-lg); }
.section-header.centered p { margin: 0 auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--brown); }

/* ---- Two Column Text+Image ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}
.split-section.reverse > * { direction: ltr; }

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { margin-bottom: 1.5rem; }
.split-text p:last-of-type { margin-bottom: 2rem; }

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-smooth);
}
.split-section:hover .split-image img { transform: scale(1.03); }

/* ---- Reviews ---- */
.reviews-section {
  background: var(--brown-deep);
  padding: var(--space-xl) 0;
}
.reviews-header { text-align: center; margin-bottom: var(--space-lg); }
.reviews-header .eyebrow { color: var(--gold); }
.reviews-header h2 { color: var(--cream); margin-bottom: 0.8rem; }
.reviews-header p { color: var(--sand); margin: 0 auto; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.review-card {
  background: rgba(255,255,255,0.04);
  padding: var(--space-lg) var(--space-md);
  transition: background 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.07); }
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
}
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.review-author {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---- Treatment Cards ---- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
}
.treatment-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease-smooth);
  cursor: pointer;
}
.treatment-card:hover { z-index: 1; transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,20,16,0.12); }

.treatment-card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.treatment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-smooth);
}
.treatment-card:hover .treatment-card-image img { transform: scale(1.05); }

.treatment-card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.treatment-card-body h4 {
  margin-bottom: 0.8rem;
  color: var(--brown-deep);
}
.treatment-card-body p {
  color: var(--brown);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.treatment-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.treatment-link::after { content: '→'; }
.treatment-card:hover .treatment-link { gap: 0.8rem; }

/* ---- Feature Grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-item {
  background: var(--cream);
  padding: var(--space-lg) var(--space-md);
}
.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.5rem;
  color: var(--taupe);
}
.feature-item h4 { margin-bottom: 0.8rem; color: var(--brown-deep); }
.feature-item p { font-size: 0.9rem; color: var(--brown); max-width: none; }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(26,20,16,0.12); }

/* ---- Reels / Video Section ---- */
.reels-section { background: var(--brown-deep); }
.reels-header { text-align: center; padding: var(--space-xl) 0 var(--space-lg); }
.reels-header .eyebrow { color: var(--gold); }
.reels-header h2 { color: var(--cream); }
.reels-header p { color: var(--sand); margin: 0 auto; }

.reels-scroll {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-xl);
}
.reels-scroll::-webkit-scrollbar { display: none; }

.reel-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.reel-item video, .reel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,20,16,0.5), transparent);
  pointer-events: none;
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  min-height: var(--full-bleed-h);
  max-height: var(--full-bleed-max);
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,20,16,0.75) 0%, rgba(26,20,16,0.3) 60%, rgba(26,20,16,0.1) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: var(--space-xl) 0;
}
.cta-content .eyebrow { color: var(--gold); }
.cta-content h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-content h3 { color: rgba(245,240,232,0.85); font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 300; margin-bottom: 1.5rem; }
.cta-content p { color: rgba(245,240,232,0.7); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Lash Feature ---- */
.lash-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.lash-image {
  position: relative;
  overflow: hidden;
}
.lash-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lash-content {
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}
.lash-content h2 { margin-bottom: 1.2rem; }
.lash-content p { margin-bottom: 2rem; }
.lash-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.lash-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--sand);
  border-radius: 100px;
  color: var(--brown);
  background: var(--cream);
}

/* ---- Price Tables ---- */

.price-table {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.price-table-header {
  background: var(--brown-deep);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-table-header h3 { color: var(--cream); }
.price-table-header p { color: var(--sand); font-size: 0.9rem; max-width: none; margin: 0; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--space-lg);
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--cream-mid); }

.price-row-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-deep);
}
.price-row-detail {
  font-size: 0.82rem;
  color: var(--taupe);
  margin-top: 0.2rem;
}
.price-row-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-deep);
  font-weight: 500;
  white-space: nowrap;
}

/* ---- Studio Grid ---- */
.studio-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.studio-mosaic-item {
  overflow: hidden;
  position: relative;
}
.studio-mosaic-item.main { grid-row: span 2; }
.studio-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.studio-mosaic-item:hover img { transform: scale(1.05); }

/* ---- Map / Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info h3 { margin-bottom: var(--space-md); }
.contact-row {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  min-width: 100px;
  padding-top: 0.15rem;
}
.contact-value { color: var(--brown-deep); font-size: 0.98rem; }
.contact-value a { color: var(--brown-deep); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* Map placeholder */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--cream-dark);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Booking Steps ---- */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
}
.booking-step {
  background: var(--cream);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cream-dark);
  line-height: 1;
  font-style: italic;
}
.booking-step h4 { color: var(--brown-deep); }
.booking-step p { font-size: 0.9rem; color: var(--brown); }

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-md);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--taupe);
  max-width: 30ch;
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.9;
  max-width: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.05em;
}
.footer-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.footer-cta::after { content: '→'; }
.footer-cta:hover { gap: 0.8rem; }

/* ---- Reels carousel nav ---- */
.reels-wrapper {
  position: relative;
}
.reels-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(245, 240, 232, 0.12);
  border: 1px solid rgba(245, 240, 232, 0.25);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  font-size: 1.1rem;
  line-height: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.reels-nav:hover {
  background: rgba(245, 240, 232, 0.22);
  border-color: rgba(245, 240, 232, 0.5);
  transform: translateY(-50%) scale(1.08);
}
.reels-nav-prev { left: 0; }
.reels-nav-next { right: 0; }

/* ---- Studio Reel ---- */
.studio-reel-section {
  background: var(--brown-deep);
  overflow: hidden;
}
.studio-reel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.studio-reel-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}
.studio-reel-text .eyebrow { color: var(--gold); }
.studio-reel-text h2 { color: var(--cream); margin-bottom: 1.2rem; }
.studio-reel-text p { color: var(--sand); max-width: 42ch; }
.studio-reel-video {
  position: relative;
  overflow: hidden;
}
.studio-reel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .studio-reel-inner {
    grid-template-columns: 1fr;
  }
  .studio-reel-text {
    padding: var(--space-lg) var(--space-md);
  }
  .studio-reel-video {
    min-height: 360px;
  }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 0;
}

/* ---- Utility ---- */
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

/* Show reels nav arrows on non-touch / desktop */
@media (min-width: 901px) {
  .reels-nav { display: flex; }
  .reels-scroll { padding-left: 60px; padding-right: 60px; }
}

@media (max-width: 900px) {
  /* Restore natural height on mobile for hero + cta + page-hero */
  .hero { min-height: 100vh; max-height: none; }
  .cta-section { min-height: 500px; max-height: none; }
  .page-hero { min-height: 420px; max-height: none; }
  :root { --nav-h: 70px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-image { min-height: 380px; }
  .split-text { padding: var(--space-lg) var(--space-md); }

  .hero-split { grid-template-columns: 1fr; }
  .hero-split-text { padding: var(--space-lg) var(--space-md); min-height: 60vh; justify-content: flex-end; }
  .hero-split-image { height: 50vh; }

  .lash-section { grid-template-columns: 1fr; }
  .lash-image { min-height: 380px; }
  .lash-content { padding: var(--space-lg) var(--space-md); }

  .contact-grid { grid-template-columns: 1fr; }
  .studio-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .studio-mosaic-item.main { grid-row: span 1; grid-column: span 2; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }

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

@media (max-width: 640px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
  }

  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-card-image { height: 260px; }
  .feature-grid { grid-template-columns: 1fr; }

  .booking-steps { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 1; }

  .hero-trust { flex-wrap: wrap; gap: 1rem; }

  .footer-top { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .cta-content { max-width: 100%; }
  .cta-actions { flex-direction: column; }

  .price-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: fit-content; }
}
