/* ============================================================
   RADICAL HAIR COMMUNITY — Shared Stylesheet
   Winter Heritage Palette • Cormorant Garamond + Outfit
   ============================================================ */

:root {
  --deep-moss:    #5F6B55;
  --warm-taupe:   #CFC3B8;
  --burnt-rose:   #B06A6F;
  --cocoa-clay:   #9C6A58;
  --dusty-plum:   #7C5A63;
  --bronze-peach: #C9866E;
  --porcelain:    #F2EDE8;
  --stone-grey:   #B8B1AA;
  --charcoal:     #2E2E2E;

  /* Semantic aliases (matching index.html var names) */
  --sage:         var(--deep-moss);
  --sage-dark:    #4A5542;
  --sage-light:   #8A9880;
  --peach:        var(--warm-taupe);
  --peach-dark:   #B8ACA3;
  --peach-light:  #E4DDD8;
  --mauve:        var(--dusty-plum);
  --mauve-dark:   #5E4349;
  --mauve-light:  #A3828A;
  --coral:        var(--cocoa-clay);
  --teal:         var(--deep-moss);
  --teal-light:   var(--sage-light);
  --pink:         var(--burnt-rose);
  --pink-light:   #D4999D;
  --cream:        var(--porcelain);
  --charcoal-light: #4A4A4A;
  --white:        #FFFFFF;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { transition: color 0.3s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(242, 237, 232, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 1rem 2rem;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  /* sit flush against the li — gap is bridged by ::before pseudo */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 200;
  padding: 0.75rem 0;
  /* push the visible panel down by the desired gap */
  margin-top: 0.75rem;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Invisible bridge fills the gap so the cursor never leaves the hover zone */
.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0.85rem; /* slightly more than margin-top */
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.825rem;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  color: var(--pink);
  background: rgba(176, 106, 111, 0.06);
  padding-left: 1.5rem;
}

.nav-cta { display: none; }

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream);
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 150;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.875rem 0;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(46,46,46,0.08);
  transition: color 0.3s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .mobile-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--stone-grey);
  text-transform: uppercase;
  padding: 0.75rem 0 0.25rem;
  display: block;
  border-bottom: none;
}
.mobile-menu .mobile-sub a {
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .mobile-menu-btn { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover {
  background: #96555A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(176, 106, 111, 0.35);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-sage { background: var(--sage); color: var(--white); }
.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 107, 85, 0.35);
  color: var(--white);
}
.btn-white { background: var(--white); color: var(--pink); }
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--pink);
}
/* Alias used in index.html */
.btn-teal { background: var(--sage); color: var(--white); }
.btn-teal:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 107, 85, 0.35);
  color: var(--white);
}

/* ============================================================
   PAGE HEADER (inner pages — replaces hero)
   ============================================================ */
.page-header {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #242A22 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.page-header-label {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--pink-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-header h1 em {
  font-style: italic;
  color: var(--pink-light);
}
.page-header p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .page-header h1 { font-size: 4rem; }
}

/* Photo-background variant */
.page-header-photo {
  background-size: cover;
  background-position: center;
}
.page-header-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,46,46,0.82) 0%, rgba(176,106,111,0.5) 100%);
  border-radius: 0;
  opacity: 1;
  width: auto; height: auto;
  top: 0; right: 0; bottom: 0; left: 0;
  transform: none;
  z-index: 1;
}
.page-header-photo::after { display: none; }

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */
section { padding: 5rem 1.5rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--pink);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--sage);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--charcoal-light);
  line-height: 1.8;
}
@media (min-width: 768px) {
  section { padding: 7rem 2rem; }
  .section-title { font-size: 3rem; }
}

/* ============================================================
   PROSE / CONTENT BLOCKS
   ============================================================ */
.prose {
  max-width: 760px;
}
.prose p {
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.0125rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 2rem 0 0.875rem;
}
.prose ul {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--charcoal-light);
  line-height: 1.85;
}
.prose ul li { margin-bottom: 0.4rem; }

/* ============================================================
   STYLIST CARDS (tier landing pages)
   ============================================================ */
.stylist-cards {
  display: grid;
  gap: 2rem;
}
.stylist-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(46,46,46,0.05);
}
.stylist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(46,46,46,0.1);
}
.stylist-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.stylist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.stylist-card:hover .stylist-card-image img {
  transform: scale(1.04);
}
.stylist-card-body {
  padding: 1.75rem 2rem 2rem;
}
.stylist-card-body .section-label { margin-bottom: 0.5rem; }
.stylist-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.stylist-card-role {
  font-size: 0.825rem;
  letter-spacing: 0.08em;
  color: var(--stone-grey);
  margin-bottom: 1rem;
}
.stylist-card-body p {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.stylist-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.specialty-tag {
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--warm-taupe);
}
.stylist-card-link {
  font-size: 0.875rem;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: letter-spacing 0.3s;
}
.stylist-card:hover .stylist-card-link {
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  .stylist-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .stylist-cards { grid-template-columns: repeat(3, 1fr); }
}
/* Two-up for tiers with 2 stylists */
.stylist-cards.two-up {
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .stylist-cards.two-up { grid-template-columns: repeat(2, 1fr); }
}
/* One-up for emerging */
.stylist-cards.one-up {
  max-width: 420px;
  margin: 0 auto;
}
.stylist-cards.one-up { grid-template-columns: 1fr; }

/* ============================================================
   STYLIST PROFILE PAGE LAYOUT
   ============================================================ */
.profile-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .profile-grid { grid-template-columns: 380px 1fr; }
}
.profile-image-wrap {
  position: sticky;
  top: 6rem;
}
.profile-image-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}
.profile-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.profile-meta {
  border-top: 1px solid var(--warm-taupe);
  padding-top: 1.25rem;
}
.profile-meta p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.profile-meta .meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--stone-grey);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}
.profile-meta-item { margin-bottom: 1rem; }

.profile-content .section-label { margin-bottom: 0.5rem; }
.profile-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.profile-content .profile-role {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--stone-grey);
  margin-bottom: 2rem;
}
.profile-content .prose { max-width: 100%; }

/* Get to Know grid */
.qa-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--warm-taupe);
}
@media (min-width: 640px) {
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
}
.qa-item { }
.qa-question {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.qa-answer {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* Profile CTA strip */
.profile-cta-strip {
  background: var(--charcoal);
  padding: 3rem 2rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.profile-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--dusty-plum) 100%);
  opacity: 0.85;
}
.profile-cta-strip-inner {
  position: relative;
  z-index: 2;
}
.profile-cta-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.profile-cta-strip p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}
.profile-cta-strip .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   SERVICE CARDS (services index)
   ============================================================ */
.service-cards-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .service-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card-full {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  overflow: hidden;
  border: 1px solid rgba(46,46,46,0.05);
  transition: all 0.4s ease;
  position: relative;
}
.service-card-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  transition: height 0.35s ease;
}
.service-card-full:nth-child(1)::before { background: var(--pink); }
.service-card-full:nth-child(2)::before { background: var(--sage); }
.service-card-full:nth-child(3)::before { background: var(--dusty-plum); }
.service-card-full:nth-child(4)::before { background: var(--cocoa-clay); }
.service-card-full:nth-child(5)::before { background: var(--sage-dark); }
.service-card-full:nth-child(6)::before { background: var(--warm-taupe); }
.service-card-full:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(46,46,46,0.08);
}
.service-card-full:hover::before { height: 100%; }
.service-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-full:hover .service-card-image img { transform: scale(1.04); }
.service-card-body {
  padding: 1.75rem 2rem 2rem;
}
.service-card-body .service-icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: block;
}
.service-card-full:nth-child(1) .service-icon { color: var(--pink); }
.service-card-full:nth-child(2) .service-icon { color: var(--sage); }
.service-card-full:nth-child(3) .service-icon { color: var(--dusty-plum); }
.service-card-full:nth-child(4) .service-icon { color: var(--cocoa-clay); }
.service-card-full:nth-child(5) .service-icon { color: var(--sage-dark); }
.service-card-full:nth-child(6) .service-icon { color: var(--warm-taupe); }
.service-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-card-link {
  font-size: 0.875rem;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-top: 1rem;
  border-top: 1px solid var(--peach-light);
  width: 100%;
  transition: letter-spacing 0.3s;
}
.service-card-full:hover .service-card-link { letter-spacing: 0.1em; }

/* ============================================================
   SERVICE DETAIL PAGE LAYOUT
   ============================================================ */
.service-intro-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .service-intro-grid { grid-template-columns: 1fr 420px; }
}
.service-image-wrap {
  position: sticky;
  top: 6rem;
}
.service-image-main {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.service-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info panels */
.info-panel {
  background: var(--white);
  padding: 2rem;
  margin-top: 2rem;
  border-left: 3px solid var(--pink);
}
.info-panel.sage { border-color: var(--sage); }
.info-panel.plum { border-color: var(--dusty-plum); }
.info-panel h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.info-panel p,
.info-panel li {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}
.info-panel ul {
  padding-left: 1.25rem;
}
.info-panel li { margin-bottom: 0.35rem; }

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.feature-list li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--peach-light);
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.feature-list li:first-child { border-top: 1px solid var(--peach-light); }
.feature-list li::before {
  content: '◆';
  font-size: 0.5rem;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* Package cards (Great Lengths) */
.package-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .package-cards { grid-template-columns: repeat(3, 1fr); }
}
.package-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(46,46,46,0.07);
  position: relative;
  overflow: hidden;
}
.package-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.package-card:nth-child(1)::after { background: var(--warm-taupe); }
.package-card:nth-child(2)::after { background: var(--pink); }
.package-card:nth-child(3)::after { background: var(--sage); }
.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.package-bonds {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--stone-grey);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.package-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink) 0%, var(--sage) 100%);
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.85rem;
  top: 0.4rem;
  width: 12px; height: 12px;
  background: var(--pink);
  border-radius: 50%;
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--pink);
}
.timeline-year {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.timeline-item p {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* Values grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(46,46,46,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(46,46,46,0.07);
}
.value-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands-strip {
  background: var(--white);
  padding: 3rem 2rem;
  border-top: 1px solid var(--peach-light);
  border-bottom: 1px solid var(--peach-light);
}
.brands-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4rem;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--stone-grey);
  transition: color 0.3s;
}
.brand-name:hover { color: var(--charcoal); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--warm-taupe);
}
.faq-item:first-child { border-top: 1px solid var(--warm-taupe); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  transition: color 0.3s;
}
.faq-btn:hover { color: var(--pink); }
.faq-btn.open { color: var(--pink); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--warm-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--stone-grey);
  transition: all 0.3s;
  margin-top: 0.1rem;
}
.faq-btn.open .faq-icon {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-body {
  display: none;
  padding-bottom: 1.5rem;
}
.faq-body p {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}
.faq-body.open { display: block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 420px; }
}
.contact-form {
  background: var(--white);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--warm-taupe);
  background: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
}
.form-control::placeholder { color: var(--stone-grey); }
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
select.form-control {
  cursor: pointer;
  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='%23B8B1AA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.turnstile-wrap { margin-bottom: 1.5rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--stone-grey);
  margin-top: 1rem;
  line-height: 1.6;
}
.form-message {
  padding: 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-message.success {
  background: rgba(95, 107, 85, 0.1);
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  display: block;
}
.form-message.error {
  background: rgba(176, 106, 111, 0.1);
  border: 1px solid var(--pink);
  color: var(--pink);
  display: block;
}

.contact-info { }
.contact-info-block {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--peach-light);
}
.contact-info-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-info-row:last-child { margin-bottom: 0; }
.info-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--pink);
  font-size: 0.875rem;
  margin-top: 0.15rem;
}
.info-text { font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.7; }
.info-text a { color: var(--charcoal-light); text-decoration: none; }
.info-text a:hover { color: var(--pink); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.hours-day { color: var(--charcoal-light); }
.hours-time { color: var(--charcoal); font-weight: 400; }
.hours-closed { color: var(--stone-grey); }

/* ============================================================
   TEAM MINI SECTION (reused across pages)
   ============================================================ */
.team-dark {
  background: linear-gradient(135deg, var(--charcoal) 0%, #242A22 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.team-dark::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.1;
}
.team-dark .section-label { color: var(--pink-light); }
.team-dark .section-title { color: var(--white); }
.team-dark .section-title em { color: var(--sage-light); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--dusty-plum) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -44%);
  width: 480px; height: 520px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 240px 240px 0 0;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.15;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 auto;
}
.cta-section .section-label { color: var(--white); opacity: 0.9; }
.cta-section .section-title { color: var(--white); }
.cta-section .section-title em { color: var(--peach-light); }
.cta-text {
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.0625rem;
  opacity: 0.95;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cta-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.9;
}
.cta-note a { color: var(--white); text-decoration: underline; }
.cta-note a:hover { opacity: 0.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--pink-light); }
.footer-col p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}
.footer-col .closed { color: rgba(255,255,255,0.4); }
.contact-item { margin-bottom: 1.25rem; }
.contact-label {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  display: block;
}
.footer-map {
  max-width: 1280px;
  margin: 3rem auto;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.footer-map iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: grayscale(0.3) contrast(0.95);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-dark   { background: var(--charcoal); }
.text-center { text-align: center; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mb-0  { margin-bottom: 0 !important; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink-light); }
.breadcrumb span { margin: 0 0.5rem; }

/* ============================================================
   PORTFOLIO CAROUSEL
   ============================================================ */
.portfolio-section {
  background: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .portfolio-section { padding: 7rem 0; } }

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.carousel-wrap {
  position: relative;
}

/* Track that holds all slides side by side */
.carousel-track-outer {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 auto;
  /* widths set via inline style or JS */
}
.carousel-slide img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 768px) {
  .carousel-slide img { height: 520px; }
}

/* Prev / Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.carousel-btn:hover {
  background: var(--pink);
  color: var(--white);
}
.carousel-btn-prev { left: 1rem; }
.carousel-btn-next { right: 1rem; }
@media (min-width: 768px) {
  .carousel-btn-prev { left: 1.5rem; }
  .carousel-btn-next { right: 1.5rem; }
}

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--warm-taupe);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}

/* Counter label */
.carousel-counter {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--stone-grey);
  margin-top: 1rem;
}
