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

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --cream:          #FAF3E0;
  --cream-dark:     #EFE5C8;
  --cream-mid:      #F5EBD0;
  --terracotta:     #C4622D;
  --terracotta-lt:  #D4744A;
  --sage:           #7A9B76;
  --sage-dark:      #5C7A59;
  --brown:          #8B5E3C;
  --brown-lt:       #A67650;
  --plum:           #5C2250;
  --plum-dark:      #2A0F23;
  --gold:           #C9A84C;
  --gold-lt:        #E0C26A;

  --font-display:   'Cormorant Garamond', serif;
  --font-heading:   'Playfair Display', serif;
  --font-body:      'Nunito', sans-serif;

  --nav-h:          72px;
  --ease:           all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow:      all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:      0 2px 12px rgba(42,15,35,0.12);
  --shadow:         0 6px 24px rgba(42,15,35,0.18);
  --shadow-lg:      0 12px 40px rgba(42,15,35,0.25);
  --radius:         14px;
  --radius-sm:      8px;
}

/* ===== DEMO BAR ===== */
.demo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42, 15, 35, 0.95);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.85rem 1.5rem;
  z-index: 9999;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}
.demo-bar a { color: var(--gold); font-weight: 600; }
.demo-bar a:hover { color: var(--cream); }

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--plum-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--plum-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--plum); }
.section-sub {
  color: var(--brown);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: transparent;
  color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196,98,45,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,243,224,0.5);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-plum {
  background: var(--plum-dark);
  color: var(--cream);
  border-color: var(--plum-dark);
}
.btn-plum:hover {
  background: var(--plum);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-gold {
  background: var(--gold);
  color: var(--plum-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-light {
  background: var(--cream);
  color: var(--terracotta);
  border-color: var(--cream);
}
.btn-light:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-3px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: var(--plum-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

/* Logo */
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.logo-cc {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.1rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.85);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.85);
  cursor: pointer;
  padding: 0.4rem 0;
  transition: color 0.25s;
}
.dropdown-trigger:hover { color: var(--gold); }
.dropdown-trigger .chevron {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.nav-dropdown.open .chevron { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--plum-dark);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--ease);
}
.dropdown-panel a:last-child { border-bottom: none; }
.dropdown-panel a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--gold);
  padding-left: 2rem;
}

/* Book Now button in nav */
.nav-book { margin-left: 1rem; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--ease);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--plum-dark);
  z-index: 899;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  height: 42vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 2.5rem 3.5rem;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 55%, var(--brown) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  font-family: var(--font-display);
  font-size: 22vw;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  right: -2rem;
  bottom: -3rem;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.page-hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

/* ===== HERO (home) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Swap this for: background-image: url('images/hero.jpg'); background-size: cover; background-position: center; */
  background: linear-gradient(160deg, var(--plum-dark) 0%, var(--plum) 45%, var(--brown) 85%, var(--terracotta) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42,15,35,0.35) 0%, rgba(42,15,35,0.15) 40%, rgba(42,15,35,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0.5rem 0;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-byline {
  font-size: clamp(0.72rem, 1.5vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(250,243,224,0.82);
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s forwards;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.55);
}
.scroll-cue .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(250,243,224,0.5), transparent);
  animation: lineGrow 1.5s 2s ease-in-out infinite;
}

/* ===== ABOUT SECTION ===== */
.about { padding: 7rem 2rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.about-media { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  /* background: gradient placeholder below -- remove when you add real image */
  background: linear-gradient(160deg, var(--plum) 0%, var(--brown) 60%, var(--terracotta) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.about-img-accent {
  position: absolute;
  bottom: -1.8rem;
  right: -1.8rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
  z-index: -1;
}
.about-text p {
  color: var(--brown-lt);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--terracotta), var(--gold));
  border-radius: 2px;
  margin: 2rem 0;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--plum);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 0.25rem;
  display: block;
}

/* ===== TEAM SECTION ===== */
.team {
  background: var(--plum-dark);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.team::before {
  content: 'C&C';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(18rem, 40vw, 30rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  right: -3rem;
  top: -2rem;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.team .section-label { color: var(--gold); }
.team .section-title { color: var(--cream); }
.team .section-sub { color: rgba(250,243,224,0.65); max-width: none; }
.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--ease);
}
.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  /* Placeholder -- remove display/align/justify/bg when using real images */
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, var(--plum) 0%, var(--brown) 100%);
  padding: 1.5rem;
}
.team-card:last-child .team-photo {
  background: linear-gradient(160deg, var(--brown) 0%, var(--sage-dark) 100%);
}
.team-photo-initial {
  font-family: var(--font-display);
  font-size: 5rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(250,243,224,0.2);
  line-height: 1;
}
.team-info { padding: 2rem 2rem 2.5rem; }
.team-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.team-bio {
  color: rgba(250,243,224,0.68);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-lt);
  background: rgba(201,168,76,0.1);
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--cream-dark);
}
.gallery-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: galleryScroll 100s linear infinite;
  will-change: transform;
}
.gallery-item {
  display: block;
  width: 280px;
  height: 340px;
  border-radius: var(--radius);
  flex-shrink: 0;
  overflow: hidden;
  /* Placeholders -- replace with <img> tags */
  background: linear-gradient(135deg, var(--plum) 0%, var(--terracotta) 100%);
}
.gallery-item:nth-child(2n) { background: linear-gradient(135deg, var(--brown) 0%, var(--sage) 100%); }
.gallery-item:nth-child(3n) { background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%); }
.gallery-item:nth-child(4n) { background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%); }
.gallery-item:nth-child(5n) { background: linear-gradient(135deg, var(--sage-dark) 0%, var(--brown) 100%); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--terracotta);
  padding: 5.5rem 2rem;
  text-align: center;
}
.cta-band .section-label { color: rgba(250,243,224,0.7); }
.cta-band .section-title { color: var(--cream); }
.cta-band p { color: rgba(250,243,224,0.85); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ===== FOOTER ===== */
.footer {
  background: var(--plum-dark);
  padding: 5rem 2rem 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo .logo-cc { display: block; font-size: 3rem; margin-bottom: 0.4rem; }
.footer-logo .logo-sub { display: block; margin-bottom: 1.5rem; }
.footer-desc { color: rgba(250,243,224,0.55); font-size: 0.9rem; line-height: 1.8; max-width: 260px; }
.footer-heading { font-family: var(--font-heading); font-size: 1rem; color: var(--cream); margin-bottom: 1.3rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links li a {
  color: rgba(250,243,224,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}
.footer-links li a:hover { color: var(--gold); }
.footer-contact p { color: rgba(250,243,224,0.55); font-size: 0.9rem; line-height: 1.9; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(250,243,224,0.35);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

.footer-social {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social-label {
  font-size: 0.78rem;
  color: rgba(250,243,224,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 0.25rem;
}
.footer-social a {
  color: rgba(250,243,224,0.5);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

/* ===== SUBCARD LAYOUTS (flip card back) ===== */
.flip-card-back.has-subcards {
  padding: 1.4rem 1.2rem 1.2rem;
  justify-content: flex-start;
}
.flip-card-back.has-subcards h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.flip-card-back.has-subcards .flip-sub-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* 2-item side-by-side grid */
.subcard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  flex: 1;
}
.subcard-cell {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.subcard-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.subcard-cell-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(42,15,35,0.92) 0%, transparent 100%);
  padding: 1.5rem 0.6rem 0.6rem;
}
.subcard-cell-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
}
.subcard-cell-price {
  display: block;
  font-size: 0.68rem;
  color: var(--gold-lt);
  margin-top: 0.1rem;
}

/* 3-item thumbnail row list */
.subcard-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.subcard-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  transition: background 0.2s;
}
.subcard-row:hover { background: rgba(255,255,255,0.1); }
.subcard-row img {
  width: 64px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}
.subcard-row-info { padding: 0 0.75rem; }
.subcard-row-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.subcard-row-price {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-lt);
  margin-top: 0.15rem;
}
.subcard-book,
.subcard-cell-book {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.subcard-book:hover,
.subcard-cell-book:hover { color: var(--cream); }
.flip-back-cta {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
.flip-back-cta:hover { background: var(--gold); color: var(--plum-dark); }

/* ===== SERVICES PAGE ===== */
.services-section { padding: 6rem 2rem; }
.services-intro { text-align: center; max-width: 620px; margin: 0 auto 5rem; }
.services-intro .section-sub { margin: 0 auto; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Flip card */
.flip-card {
  perspective: 1200px;
  height: 460px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.flip-card-front {
  background: var(--plum-dark);
}
.flip-card-front-img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  /* Placeholder */
  background: linear-gradient(160deg, var(--plum) 0%, var(--brown) 100%);
}
.flip-card:nth-child(2) .flip-card-front-img { background: linear-gradient(160deg, var(--brown) 0%, var(--terracotta) 100%); }
.flip-card:nth-child(3) .flip-card-front-img { background: linear-gradient(160deg, var(--terracotta) 0%, var(--gold) 100%); }
.flip-card:nth-child(4) .flip-card-front-img { background: linear-gradient(160deg, var(--sage-dark) 0%, var(--plum) 100%); }
.flip-card:nth-child(5) .flip-card-front-img { background: linear-gradient(160deg, var(--plum) 0%, var(--sage) 100%); }
.flip-card:nth-child(6) .flip-card-front-img { background: linear-gradient(160deg, var(--brown) 0%, var(--plum-dark) 100%); }

.flip-card-front-body {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flip-card-front-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
}
.flip-hint {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.flip-card-back {
  background: linear-gradient(160deg, var(--plum-dark) 0%, var(--plum) 100%);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.25);
}
.flip-card-back .service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.flip-card-back h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}
.flip-card-back p {
  color: rgba(250,243,224,0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.price-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.price-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.price-value { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: var(--gold-lt); font-weight: 300; }

/* ===== BOOKING PAGE ===== */
.booking-section {
  padding: 5rem 2rem 7rem;
  min-height: calc(100vh - 42vh);
  background: #DDD0B0;
}
.booking-wrap { max-width: 860px; margin: 0 auto; }

/* Step progress bar */
.step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
}
.step-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 2px;
  background: var(--cream-dark);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
  flex: 1;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #C0A878;
  background: #FEFAF2;
  color: rgba(42,15,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--ease);
}
.step-num.active {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 0 0 5px rgba(196,98,45,0.2);
}
.step-num.done {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--cream);
}
.step-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(42,15,35,0.4);
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s;
}
.step-item.active .step-lbl { color: var(--terracotta); font-weight: 700; }
.step-item.done .step-lbl { color: var(--sage-dark); }
.step-item.prefilled .step-num {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}
.step-item.prefilled .step-lbl { color: var(--gold-lt); font-weight: 600; }

/* Booking steps */
.booking-step {
  display: none;
  animation: fadeIn 0.45s ease;
}
.booking-step.active { display: block; }
.step-heading {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--plum-dark);
  margin-bottom: 0.5rem;
}
.step-heading em { font-style: italic; color: var(--plum); }
.step-subheading {
  color: var(--brown-lt);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* Service pick grid */
.service-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-pick-card {
  border: 2px solid #C0A878;
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  cursor: pointer;
  transition: var(--ease);
  background: #FEFAF2;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 12px rgba(42,15,35,0.08);
}
.service-pick-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-pick-card.selected {
  border-color: var(--terracotta);
  background: linear-gradient(135deg, rgba(196,98,45,0.06), rgba(201,168,76,0.06));
  box-shadow: var(--shadow-sm);
}
.service-pick-card .check {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--ease);
}
.service-pick-card.selected .check {
  opacity: 1;
  transform: scale(1);
}
.spc-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.spc-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 0.25rem;
}
.spc-price {
  font-size: 0.8rem;
  color: var(--brown-lt);
}
.service-sub-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  background: var(--gold);
  color: var(--plum-dark);
  padding: 0.18rem 0.6rem;
  border-radius: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Stylist pick */
.stylist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stylist-card {
  border: 2px solid #C0A878;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
  background: #FEFAF2;
  position: relative;
  box-shadow: 0 2px 12px rgba(42,15,35,0.08);
}
.stylist-card:hover { border-color: var(--terracotta); box-shadow: var(--shadow); }
.stylist-card.selected { border-color: var(--terracotta); }
.stylist-card-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--plum) 0%, var(--brown) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.stylist-card:last-child .stylist-card-photo {
  background: linear-gradient(160deg, var(--brown) 0%, var(--sage-dark) 100%);
}
.stylist-card-initial {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: rgba(250,243,224,0.25);
  line-height: 1;
}
.stylist-card-info { padding: 1.5rem; }
.stylist-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--plum-dark);
  margin-bottom: 0.3rem;
}
.stylist-card-spec {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.stylist-card .check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--ease);
}
.stylist-card.selected .check { opacity: 1; transform: scale(1); }

/* Booking calendar */
.booking-calendar-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.cal-mini { background: var(--cream); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 1.5rem; }
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal-nav-btn {
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--plum);
  cursor: pointer;
  transition: var(--ease);
}
.cal-nav-btn:hover { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.cal-month { font-family: var(--font-heading); font-size: 1.1rem; color: var(--plum-dark); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-lt);
  padding: 0.4rem 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--ease);
  color: var(--plum-dark);
  font-weight: 500;
}
.cal-day.empty { cursor: default; }
.cal-day.available:hover { background: var(--terracotta); color: var(--cream); }
.cal-day.selected { background: var(--terracotta); color: var(--cream); font-weight: 700; }
.cal-day.booked { color: rgba(42,15,35,0.2); cursor: not-allowed; text-decoration: line-through; }
.cal-day.today { border: 2px solid var(--gold); color: var(--plum); }
.cal-legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.cal-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--brown); }
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Time slots */
.time-slots { display: flex; flex-direction: column; gap: 0.7rem; }
.time-slots-heading { font-family: var(--font-heading); font-size: 1.1rem; color: var(--plum-dark); margin-bottom: 0.8rem; }
.time-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--ease);
  background: var(--cream);
}
.time-slot:hover { border-color: var(--terracotta); background: rgba(196,98,45,0.04); }
.time-slot.selected { border-color: var(--terracotta); background: rgba(196,98,45,0.08); }
.time-slot.taken { opacity: 0.4; cursor: not-allowed; }
.time-slot.taken:hover { border-color: var(--cream-dark); background: var(--cream); }
.ts-time { font-weight: 700; font-size: 0.95rem; color: var(--plum-dark); }
.ts-status { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.ts-status.open { color: var(--sage-dark); }
.ts-status.taken { color: rgba(42,15,35,0.35); }

/* Booking form */
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--plum-dark);
  outline: none;
  transition: border-color 0.25s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--terracotta);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* Booking summary / confirmation */
.booking-summary {
  background: var(--plum-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--cream);
  margin-bottom: 2rem;
}
.summary-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-key { color: rgba(250,243,224,0.55); }
.summary-val { color: var(--cream); font-weight: 600; text-align: right; }

.confirmation-wrap { text-align: center; padding: 3rem 1rem; }
.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.confirmation-wrap h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--plum-dark);
  margin-bottom: 0.8rem;
}
.confirmation-wrap p { color: var(--brown-lt); font-size: 1rem; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* Step nav buttons */
.step-nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
#stepNav { margin-top: 2rem; }

/* ===== CALENDAR PAGE ===== */
.calendar-section { padding: 5rem 2rem 7rem; background: #D4C4A0; }
.calendar-section .container { max-width: 1520px; }
.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cal-full-nav { display: flex; align-items: center; gap: 1.5rem; }
.cal-full-month { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; color: var(--plum-dark); }
.cal-full-nav-btn {
  background: #FEFAF2;
  border: 2px solid #B8A07A;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--plum);
  cursor: pointer;
  transition: var(--ease);
}
.cal-full-nav-btn:hover { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.stylist-filter { display: flex; gap: 0.6rem; }
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #B8A07A;
  background: #FEFAF2;
  color: var(--brown);
  cursor: pointer;
  transition: var(--ease);
}
.filter-btn.active { background: var(--plum); border-color: var(--plum); color: var(--cream); }
.filter-btn:hover:not(.active) { border-color: var(--plum); color: var(--plum); background: var(--cream); }

.cal-full-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid #B8A07A;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(42,15,35,0.18);
}
.cal-full-header {
  background: var(--plum-dark);
  color: var(--gold);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cal-full-cell {
  min-height: 168px;
  padding: 0.75rem;
  border-right: 1px solid #C8B48A;
  border-bottom: 1px solid #C8B48A;
  background: #FEFAF2;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
}
.cal-full-cell:nth-child(7n) { border-right: none; }
.cal-full-cell.empty { background: #EAD9BB; cursor: default; }
.cal-full-cell.no-avail { background: #E8D8B8; cursor: default; opacity: 0.6; }
.cal-full-cell.past {
  background: #E8D8B8;
  cursor: default;
  opacity: 0.55;
}
.cal-full-cell.past .cal-date-num { color: rgba(42,15,35,0.35); }
.cal-full-cell:hover:not(.empty):not(.past) { background: rgba(196,98,45,0.07); }
.cal-full-cell.has-slots { cursor: pointer; }
.cal-date-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 0.55rem;
}
.cal-full-cell.today .cal-date-num {
  background: var(--terracotta);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}
.cal-slot-pill {
  display: block;
  font-size: 0.68rem;
  padding: 0.16rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-slot-pill.aurora { background: rgba(92,34,80,0.15); color: var(--plum); }
.cal-slot-pill.jordan { background: rgba(122,155,118,0.2); color: var(--sage-dark); }
.cal-slot-pill.booked { background: rgba(0,0,0,0.07); color: rgba(42,15,35,0.35); }

.cal-legend-full {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.cal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,15,35,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 1.5rem) 1.5rem calc(3rem + 1.5rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cal-modal-overlay.open { opacity: 1; visibility: visible; }
.cal-modal {
  background: #FEFAF2;
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  max-height: calc(100vh - var(--nav-h) - 5rem);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.cal-modal-overlay.open .cal-modal { transform: scale(1); }
.cal-modal-date {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--plum-dark);
  margin-bottom: 0.3rem;
}
.cal-modal-sub { color: var(--brown-lt); font-size: 0.9rem; margin-bottom: 2rem; }
.cal-modal-slots { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.cal-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--brown);
  cursor: pointer;
}
.cal-modal { position: relative; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.up   { transform: translateY(40px); }
.reveal.left { transform: translateX(-40px); }
.reveal.right{ transform: translateX(40px); }
.reveal.scale{ transform: scale(0.92); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  0%  { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100%{ transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== GALLERY PAGE ===== */
.gallery-page-section {
  padding: 5rem 0;
  background: var(--cream);
}
.gallery-page-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.ba-card {
  background: var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}
.ba-pair {
  display: flex;
  height: 360px;
}
.ba-half {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.ba-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-placeholder {
  width: 100%;
  height: 100%;
}
.ba-half + .ba-half {
  border-left: 2px solid rgba(255,255,255,0.35);
}
.ba-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}
.ba-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.ba-service {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--plum-dark);
}
.ba-stylist {
  font-size: 0.8rem;
  color: var(--brown-lt);
  font-family: var(--font-body);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .hero-title { font-size: clamp(5rem, 22vw, 8rem); }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .reveal.right,
  .reveal.left { transform: translateY(40px); }

  .team-grid { grid-template-columns: 1fr; }
  .team-header { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .flip-card { height: 400px; }

  .booking-calendar-wrap { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .service-pick-grid { grid-template-columns: 1fr 1fr; }
  .stylist-grid { grid-template-columns: 1fr; }

  .about-stats { gap: 1.2rem; }
  .stat-lbl { letter-spacing: 0.1em; font-size: 0.62rem; }
  .stat-num { font-size: 2.2rem; }

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

  .calendar-section { padding-left: 0.5rem; padding-right: 0.5rem; }
  .calendar-controls { flex-direction: column; align-items: stretch; margin-bottom: 1.5rem; }
  .cal-full-nav { justify-content: center; }
  .stylist-filter { justify-content: center; }
  .cal-full-month { font-size: 1.4rem; }
  .cal-full-header { padding: 0.5rem 0; letter-spacing: 0.05em; font-size: 0.6rem; }
  .cal-full-cell { min-height: 60px; padding: 0.35rem; }
  .cal-slot-pill { display: none; }
  .cal-full-cell.has-slots::after {
    content: '●';
    font-size: 0.5rem;
    color: var(--terracotta);
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .service-pick-grid { grid-template-columns: 1fr; }
  .step-lbl { display: none; }
  .hero-title { font-size: clamp(4rem, 28vw, 7rem); }
}
