/* A Hair Story Salon, Prototype Stylesheet
   Design system: silver / navy / white. Fraunces + Inter.
   NOTE: No em dashes anywhere in the code or comments. */

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0E1320;
  background: #F7F8FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Design tokens ---------- */
:root {
  --bg: #F7F8FA;
  --platinum: #D6DBE0;
  --platinum-soft: #E8EBEE;
  --navy: #142133;
  --navy-soft: #1E2D44;
  --steel: #8A93A0;
  --ink: #0E1320;
  --white: #FFFFFF;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Allura', 'Great Vibes', cursive;

  --maxw: 1280px;
  --maxw-narrow: 880px;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(20, 33, 51, 0.08);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 { font-family: var(--serif); color: var(--navy); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 500; color: var(--ink); }
p { margin-bottom: 1rem; color: var(--ink); }
.lead { font-size: 1.125rem; color: var(--ink); }
.muted { color: var(--steel); }
em, .italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel);
  margin-bottom: 1rem;
}

/* Storybook chapter label, sits above the eyebrow */
.chapter-label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--steel);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.section-navy .chapter-label,
.hero .chapter-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Hiring callout, "Now Hiring" badge treatment */
.hiring-callout {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 4rem;
}
.hiring-callout .badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.hiring-callout h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.hiring-callout p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
.hiring-callout .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .eyebrow { color: rgba(255,255,255,0.6); }
.section-navy p { color: rgba(255,255,255,0.85); }
.section-platinum { background: var(--platinum-soft); }
.center { text-align: center; }
.divider {
  height: 1px;
  background: var(--platinum);
  border: none;
  margin: 4rem 0;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--platinum);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}
.logo-suffix {
  display: inline;
}
.logo small {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  bottom: -0.4em;
  margin-left: 0.15em;
}
.nav-main {
  display: flex;
  gap: 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav-main a {
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.nav-main a:hover, .nav-main a.active {
  border-bottom-color: var(--navy);
}
.header-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.btn-call-header {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.625rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}
.btn-call-header:hover { background: var(--navy-soft); }
.btn-call-header svg { width: 14px; height: 14px; }

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #142133 0%, #1B2A3F 50%, #142133 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(20, 33, 51, 0.35) 0%, rgba(20, 33, 51, 0.55) 60%, rgba(20, 33, 51, 0.75) 100%),
    url('photos/hero-shampoo-stations.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(20, 33, 51, 0.35) 100%);
  z-index: 1;
}
@media (max-width: 768px) {
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(20, 33, 51, 0.4) 0%, rgba(20, 33, 51, 0.6) 60%, rgba(20, 33, 51, 0.85) 100%),
      url('photos/hero-shampoo-stations-mobile.jpg');
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 4rem 1.5rem;
}
.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: #E8EBEE;
}
.hero .eyebrow { color: rgba(255,255,255,0.7); }
.hero .lead {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  font-weight: 300;
}

/* Compact hero (interior pages) */
.hero-compact {
  background: var(--bg);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--platinum);
}
.hero-compact h1 { margin-bottom: 1rem; }
.hero-compact p { color: var(--steel); max-width: 700px; margin: 0 auto; font-size: 1.125rem; }

/* ---------- Section header pattern ---------- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--steel); max-width: 600px; margin: 0 auto; }

/* ---------- Services grid (homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--platinum);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--steel);
}
.service-card .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--platinum);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--steel); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Photo placeholder ---------- */
.photo-placeholder {
  position: relative;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  font-family: var(--sans);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(20, 33, 51, 0.8), rgba(30, 45, 68, 0.95)),
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px);
}
.photo-placeholder .pp-content { position: relative; z-index: 1; }
.photo-placeholder .pp-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
  display: block;
}
.photo-placeholder .pp-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.photo-placeholder .pp-meta {
  font-size: 0.75rem;
  opacity: 0.6;
}
.photo-placeholder.tall { aspect-ratio: 3 / 4; }
.photo-placeholder.wide { aspect-ratio: 16 / 9; }

/* Clickable variant, used for gallery preview tiles linking to Instagram */
a.photo-placeholder {
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
a.photo-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(20, 33, 51, 0.18);
}
a.photo-placeholder:hover .pp-meta {
  color: var(--white);
  opacity: 0.95;
}

/* Real photo container, replaces placeholder where real photos are available */
.photo-real {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--platinum-soft);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
}
.photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-real.tall { aspect-ratio: 3 / 4; height: auto; }
.photo-real.wide { aspect-ratio: 4 / 3; height: auto; }
.photo-real.square { aspect-ratio: 1 / 1; height: auto; }
.photo-real.hero-crop { aspect-ratio: 4 / 3; height: auto; }
.photo-real.wide img { object-position: center 30%; }

/* Inside the space-collage grid, fill cell completely */
.space-collage .photo-real {
  height: 100%;
  aspect-ratio: auto;
}

/* Stylist headshot photos */
.stylist-headshot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--platinum-soft);
}
.stylist-headshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stylist-headshot.full { aspect-ratio: 4 / 5; }
.stylist-headshot.preview { aspect-ratio: 3 / 4; margin-bottom: 1rem; }

/* ---------- Two col layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }

/* ---------- Space collage (homepage) ---------- */
.space-collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 600px;
}
.space-collage > div:first-child { grid-row: 1 / 3; }

/* ---------- Team preview (homepage) ---------- */
.team-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.team-card-preview {
  text-align: center;
  transition: transform var(--transition);
}
.team-card-preview:hover { transform: translateY(-4px); }
.team-card-preview .photo-placeholder { aspect-ratio: 3 / 4; margin-bottom: 1rem; }
.team-card-preview .num {
  font-family: var(--serif);
  color: var(--steel);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
}
.team-card-preview h4 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--navy); }
.team-card-preview p { font-size: 0.85rem; color: var(--steel); margin: 0; }
.team-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
.team-card-link:hover h4 { color: var(--ink); }
.team-card-preview .ig-handle {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 0.5rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.team-card-preview .ig-handle:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ---------- Gallery preview (homepage) ---------- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-preview-grid .photo-placeholder { aspect-ratio: 1 / 1; }

/* 5-tile variant: 3 across top, 2 centered on bottom */
.gallery-preview-grid.five {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-preview-grid.five > :nth-child(1) { grid-column: 1 / span 2; }
.gallery-preview-grid.five > :nth-child(2) { grid-column: 3 / span 2; }
.gallery-preview-grid.five > :nth-child(3) { grid-column: 5 / span 2; }
.gallery-preview-grid.five > :nth-child(4) { grid-column: 2 / span 2; }
.gallery-preview-grid.five > :nth-child(5) { grid-column: 4 / span 2; }

/* ---------- Testimonial carousel ---------- */
.testimonials {
  text-align: center;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.testimonial-slide {
  display: none;
  padding: 2rem 1rem;
}
.testimonial-slide.active { display: block; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-slide blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.testimonial-slide cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--platinum);
  transition: background var(--transition);
  border: none;
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--navy); }

/* Testimonial / carousel overrides for navy section backgrounds */
.section-navy .testimonial-slide blockquote { color: var(--white); }
.section-navy .testimonial-slide cite { color: rgba(255, 255, 255, 0.6); }
.section-navy .carousel-dot { background: rgba(255, 255, 255, 0.3); }
.section-navy .carousel-dot.active { background: var(--white); }
.section-navy .btn-outline-navy {
  color: var(--white);
  border-color: var(--white);
}
.section-navy .btn-outline-navy:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---------- Visit / contact block ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.visit-info h4 { margin-bottom: 0.5rem; margin-top: 1.5rem; color: var(--navy); font-family: var(--serif); }
.visit-info h4:first-of-type { margin-top: 0; }
.visit-info p { margin-bottom: 0.25rem; }
.visit-info .btn-row { margin-top: 2rem; }
.visit-map {
  background: var(--platinum-soft);
  border: 1px solid var(--platinum);
  border-radius: var(--radius);
  min-height: 360px;
  overflow: hidden;
}
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--platinum);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-tagline { color: var(--steel); margin-top: 1rem; font-style: italic; font-family: var(--serif); }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; }
.footer-nav a { color: var(--ink); transition: color var(--transition); }
.footer-nav a:hover { color: var(--navy); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--platinum);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid var(--platinum);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--steel);
  text-align: center;
}

/* ---------- Mobile sticky bar ---------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--platinum);
  padding: 0.75rem 1rem;
  z-index: 99;
  gap: 0.75rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.mobile-sticky-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
}

/* ---------- Services page sections ---------- */
.service-section { padding: 5rem 0; border-bottom: 1px solid var(--platinum); }
.service-section:last-of-type { border-bottom: none; }
.service-list {
  list-style: none;
  margin: 1.5rem 0;
}
.service-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--platinum);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: baseline;
}
.service-list li:last-child { border-bottom: none; }
.service-list .name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.25;
}
.service-list .desc { color: var(--steel); font-size: 0.95rem; }
.service-closing {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.1rem;
  margin: 2rem 0;
}

/* ---------- First visit steps (Services page) ---------- */
.first-visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.fv-step .num {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--platinum);
  line-height: 1;
  margin-bottom: 1rem;
}
.fv-step h4 { margin-bottom: 0.75rem; font-family: var(--serif); font-size: 1.5rem; color: var(--navy); }
.fv-step p { color: var(--steel); }

/* ---------- Team page cards ---------- */
.stylist-cards { display: flex; flex-direction: column; gap: 4rem; }
.stylist-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--platinum);
  border-radius: var(--radius);
}
.stylist-card.reverse { grid-template-columns: 2fr 3fr; }
.stylist-card.reverse .stylist-img { order: 2; }
.stylist-img { aspect-ratio: 4 / 5; }
.stylist-info .num {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--platinum);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stylist-info h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.stylist-info .role {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.stylist-info .meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--platinum);
}
.stylist-info .meta strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.stylist-info .bio { color: var(--ink); margin-bottom: 1.5rem; }
.stylist-info .ig {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--platinum);
  padding-bottom: 0.25rem;
}
.stylist-info .ig:hover { color: var(--steel); }

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid .photo-placeholder { aspect-ratio: 1 / 1; }

.bridal-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.bridal-row .photo-placeholder { aspect-ratio: 3 / 4; }

.instagram-feed-placeholder {
  background: var(--platinum-soft);
  border: 1px dashed var(--platinum);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
}
.instagram-feed-placeholder p { color: var(--steel); margin: 0; }
.instagram-feed-placeholder .ig-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: block;
}

/* Curated Instagram embed grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(326px, 1fr));
  gap: 1rem;
  align-items: start;
}
.ig-grid .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
@media (max-width: 768px) {
  .ig-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ---------- About page ---------- */
.about-story { max-width: 720px; margin: 0 auto; }
.about-story p { font-size: 1.125rem; margin-bottom: 1.5rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--platinum);
}
.faq-item summary {
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--steel);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 1.5rem;
  color: var(--ink);
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--platinum);
    box-shadow: var(--shadow);
  }
  .nav-main.open { display: flex; }
  .header-cta { gap: 0.75rem; }
  .btn-call-header { display: none; }
  .hamburger { display: flex; }

  .section { padding: 4rem 0; }
  .two-col, .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse > div:first-child { order: 0; }

  .space-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .space-collage > div:first-child { grid-row: auto; }
  .space-collage .photo-placeholder { aspect-ratio: 4 / 3; }
  .space-collage .photo-real { aspect-ratio: 4 / 3; height: auto; }

  .team-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bridal-row { grid-template-columns: repeat(2, 1fr); }
  /* Reset 5-tile variant on mobile, let it flow as a normal 2-col grid */
  .gallery-preview-grid.five { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid.five > :nth-child(n) { grid-column: auto; }

  .first-visit-grid { grid-template-columns: 1fr; gap: 2rem; }

  .stylist-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .stylist-card.reverse { grid-template-columns: 1fr; }
  .stylist-card.reverse .stylist-img { order: 0; }
  .stylist-info .num { font-size: 3rem; }
  .stylist-info h2 { font-size: 1.75rem; }
  .stylist-info .meta { flex-direction: column; gap: 1rem; }

  .service-list li { grid-template-columns: 1fr; gap: 0.25rem; }
  .service-list .name { min-width: 0; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-social { justify-content: center; }

  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 80px; }

  .hero { min-height: 70vh; }
  .hero-inner { padding: 3rem 1rem; }
}

@media (max-width: 600px) {
  .team-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .gallery-preview-grid, .bridal-row { grid-template-columns: 1fr 1fr; }
  .container, .container-narrow { padding: 0 1rem; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; }
}
