/* =============================================
   PARK & EVE HAIR STUDIO — STYLESHEET v2
   Fraunces + Space Grotesk · Light editorial
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&display=swap');

@font-face {
  font-family: 'Coldiac';
  src: url('../fonts/coldiacrough-regular-webfont.woff2') format('woff2'),
       url('../fonts/coldiacrough-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eyesome Script';
  src: url('../fonts/eyesome-script-webfont.woff2') format('woff2'),
       url('../fonts/eyesome-script-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ─── */
:root {
  /* Palette — clean neutral base */
  --ink:        #111111;
  --deep:       #181818;
  --mid:        #222222;
  --muted:      #3C3C3C;
  --stone:      #767676;
  --sand:       #ADADAD;
  --cream:      #EDEAE6;
  --cream-mid:  #D8D4CF;
  --warm-white: #F9F9F7;
  --off-white:  #F0EFED;
  --white:      #FFFFFF;
  --linen:      #F0EBE3;   /* warm beige — accent sections */
  --linen-mid:  #E8E2D8;   /* deeper beige */
  --linen-deep: #DDD8CD;   /* footer beige */
  --cream-pale: #F5F2EE;   /* very light warm */
  --amber:      #B8892A;
  --amber-warm: #C89A3A;
  --border:     rgba(0,0,0,0.10);

  /* Typography */
  --serif:   'Coldiac', Georgia, serif;
  --script:  'Eyesome Script', cursive;
  --sans:    'Space Grotesk', system-ui, sans-serif;

  /* Layout */
  --nav-h:    148px;
  --container: 1260px;
  --pad:       clamp(64px, 9vw, 128px);
  --gutter:    clamp(20px, 5vw, 64px);

  /* Transitions */
  --ease:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--pad) 0;
}
.section--light {
  background: var(--white);
  color: var(--ink);
}
.section--cream {
  background: var(--cream-pale);
  color: var(--ink);
}
.section--dark {
  background: var(--linen-mid);
  color: var(--ink);
}

/* ─── TYPE UTILITIES ─── */
.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.label--light {
  color: var(--stone);
}
.display {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
}
.display--xl {
  font-size: clamp(48px, 7vw, 96px);
}
.display--sm {
  font-size: clamp(28px, 4vw, 52px);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid currentColor;
  transition: var(--ease);
}
.btn--amber {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-warm);
  border-color: var(--amber-warm);
}
.btn--cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: transparent;
  color: var(--cream);
}
.btn--ghost-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(237,230,220,0.4);
}
.btn--ghost-cream:hover {
  border-color: var(--cream);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--muted);
}
.btn--ghost-dark:hover {
  border-color: var(--ink);
}
.btn--outline-amber {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn--outline-amber:hover {
  background: var(--amber);
  color: var(--ink);
}

/* Legacy btn classes */
.btn-dark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 28px; background: var(--ink); color: var(--cream); border: 1px solid var(--ink); transition: var(--ease); }
.btn-dark:hover { background: var(--mid); }
.btn-gold { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 28px; background: var(--amber); color: var(--ink); border: 1px solid var(--amber); transition: var(--ease); }
.btn-gold:hover { background: var(--amber-warm); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 28px; background: transparent; color: var(--ink); border: 1px solid var(--muted); transition: var(--ease); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-cta { min-width: 200px; justify-content: center; }

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--linen);
  border-bottom: 1px solid var(--cream-mid);
  transition: box-shadow var(--ease);
}
.nav-inner {
  position: relative;
  height: 100%;
  max-width: var(--container);
  padding: 0 var(--gutter);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 108px;
  max-width: 180px;
  width: auto;
  mix-blend-mode: multiply;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links .nav-book {
  padding: 9px 20px;
  border: 1px solid rgba(184,137,42,0.6);
  color: var(--amber);
  transition: var(--ease);
}
.nav-links .nav-book:hover {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  background: var(--linen);
  overflow: hidden;
}
.hero-content {
  padding: clamp(48px, 8vw, 80px) var(--gutter) clamp(40px, 6vw, 64px);
}
.hero-text {
  max-width: 640px;
}
.hero-image-wrap {
  width: 100%;
  height: 56vw;
  max-height: 480px;
  overflow: hidden;
}
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
    min-height: calc(100vh - var(--nav-h));
  }
  .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: clamp(64px, 8vw, 120px) clamp(40px, 6vw, 80px);
  }
  .hero-image-wrap {
    flex: 1;
    height: auto;
    max-height: none;
  }
}
.hero-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-h1 em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--stone);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── MARQUEE STRIP ─── */
.strip {
  background: var(--amber);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}
.strip-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.strip-item {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 28px;
}
.strip-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 28px;
  opacity: 0.5;
}
.strip-item--oribe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.strip-item--oribe .strip-dot {
  margin-left: 18px;
  min-width: 4px;
  flex-shrink: 0;
}
.strip-oribe-logo {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION HEADER ─── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

/* ─── SERVICES GRID (Homepage) ─── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.services-intro-right {
  padding-bottom: 4px;
}
.services-intro-right p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 28px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.service-card {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px) clamp(28px, 4vw, 48px) 0;
  border-right: 1px solid var(--border);
}
.service-card:last-child {
  border-right: none;
  padding-right: 0;
}
.service-card:not(:first-child) {
  padding-left: clamp(20px, 3vw, 40px);
}
.service-num {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 400;
}
.service-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 24px;
}
.service-arrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-arrow:hover { gap: 14px; }

/* ─── ABOUT SECTION ─── */
.about { background: var(--white); color: var(--ink); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img,
.about-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
}
.about-img { object-fit: cover; }
.about-placeholder {
  background: var(--cream-pale);
  position: relative;
}
.about-placeholder::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.4;
}
.about-text .display {
  margin-bottom: 28px;
}
.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-dogs {
  margin-top: 36px;
  padding: 20px 24px;
  border-left: 2px solid var(--amber);
}
.about-dogs p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ─── TEAM SECTION (Homepage) ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.team-card {}
.team-img-wrap {
  overflow: hidden;
  margin-bottom: 20px;
}
.team-img,
.team-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
}
.team-img { object-fit: cover; object-position: center top; }
.team-placeholder {
  background: var(--off-white);
  position: relative;
}
.team-placeholder::after {
  content: 'Photo';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.4;
}
.team-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.team-bio {
  font-size: 13px;
  line-height: 1.75;
  color: var(--stone);
}

/* ─── FAQ ─── */
.faq { background: var(--linen); }
.faq-list {
  border-top: 1px solid var(--cream-mid);
}
.faq-item {
  border-bottom: 1px solid var(--cream-mid);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--muted); }
.faq-q-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--cream-mid);
  border-radius: 50%;
  position: relative;
  transition: var(--ease);
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: '';
  position: absolute;
  background: var(--stone);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--ease);
}
.faq-q-icon::before { width: 10px; height: 1px; }
.faq-q-icon::after  { width: 1px; height: 10px; }
.faq-item.open .faq-q-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q-icon { border-color: var(--amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--stone);
  max-width: 680px;
}

/* ─── BOOK CTA ─── */
.book-cta {
  background: var(--linen-mid);
  border-top: 1px solid var(--cream-mid);
  padding: var(--pad) 0;
  text-align: center;
}
.book-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.book-cta .label {
  margin-bottom: 4px;
}
.book-cta .display {
  color: var(--ink);
}
.book-cta > .container > p {
  font-size: 14px;
  color: var(--stone);
  letter-spacing: 0.04em;
}

/* ─── FOOTER ─── */
footer {
  background: var(--linen-deep);
  border-top: 1px solid var(--cream-mid);
  padding: clamp(56px, 7vw, 96px) 0 40px;
  color: var(--stone);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.footer-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 260px;
}
footer h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
footer ul { display: flex; flex-direction: column; gap: 10px; }
footer li { font-size: 13px; line-height: 1.6; color: var(--stone); }
footer a { color: var(--stone); transition: color var(--ease); }
footer a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--cream-mid);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--stone);
  opacity: 0.6;
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  margin-top: var(--nav-h);
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 88px);
  background: var(--linen);
  border-bottom: 1px solid var(--cream-mid);
}
.page-hero .label { margin-bottom: 20px; }
.page-hero .display { max-width: 720px; color: var(--ink); }
.page-hero-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--stone);
  max-width: 520px;
  margin-top: 20px;
}

/* ─── SERVICES INNER PAGE ─── */
.service-detail {
  padding: clamp(56px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--border);
  background: var(--warm-white);
  color: var(--ink);
}
.service-detail--alt {
  background: var(--linen);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.service-detail-grid.reverse {
  direction: rtl;
}
.service-detail-grid.reverse > * {
  direction: ltr;
}
.service-figure {
  margin: 0;
}
.service-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.service-img--blend {
  mix-blend-mode: multiply;
}
.service-credit {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 10px;
  opacity: 0.7;
}
.service-img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream);
  position: relative;
}
.service-img-ph::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.4;
}
.service-detail--alt .service-img-ph { background: var(--cream-mid); }
.service-detail-label { margin-bottom: 18px; }
.service-detail-name {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.service-detail-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 28px;
}
.service-items { list-style: none; border-top: 1px solid var(--border); }
.service-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 16px;
}
.service-item-name { color: var(--ink); }
.service-item-note {
  font-size: 12px;
  color: var(--stone);
  font-style: italic;
  flex: 1;
}
.service-item-price {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  flex-shrink: 0;
  text-align: right;
}

/* ─── TEAM INNER PAGE ─── */
.stylist {
  padding: clamp(64px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--border);
  background: var(--warm-white);
  color: var(--ink);
}
.stylist--alt { background: var(--linen); }
.stylist:last-child { border-bottom: none; }
.stylist-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.stylist-grid.flip {
  direction: rtl;
}
.stylist-grid.flip > * {
  direction: ltr;
}
.stylist-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.stylist-img-ph {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  position: relative;
}
.stylist-img-ph::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.4;
}
.stylist--alt .stylist-img-ph { background: var(--cream-mid); }
.stylist-name {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stylist-title {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.stylist-bio {
  font-size: 15px;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 16px;
}
.stylist-specialties {
  margin: 28px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.specialty-tag {
  border: 1px solid var(--cream-mid);
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  font-family: var(--sans);
}

/* Dogs section */
.dogs-section {
  background: var(--linen);
  color: var(--ink);
  padding: clamp(60px, 8vw, 112px) 0;
  border-top: 1px solid var(--cream-mid);
}
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 48px;
}
.dog-card {
  padding-top: 0;
  border-top: none;
}
.dog-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 20px;
}
.dog-name {
  font-family: var(--serif);
  font-size: 28px;
  padding-top: 4px;
  font-weight: 400;
  margin-bottom: 6px;
}
.dog-role {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.dog-bio {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
}

/* ─── CONTACT INNER PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.info-group {
  margin-bottom: 44px;
}
.info-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: block;
}
.info-group p,
.info-group a {
  font-size: 15px;
  line-height: 1.8;
  color: var(--stone);
  display: block;
}
.info-group a { transition: color var(--ease); }
.info-group a:hover { color: var(--ink); }
.info-group .big {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--stone);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--ink); font-weight: 500; }
.hours-row .closed { opacity: 0.35; }
.map-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--linen);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(100%) contrast(90%);
}
.parking-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 2px solid var(--amber);
  background: var(--linen);
}
.parking-note h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.parking-note p { font-size: 13px; line-height: 1.75; color: var(--stone); }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--stone);
  transition: color var(--ease);
}
.social-link:hover { color: var(--ink); }
.social-link::before {
  content: '→';
  font-size: 12px;
  color: var(--amber);
}

/* ─── EYEBROW (legacy alias) ─── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
/* Eyebrow on beige/accent backgrounds — use amber */
.hero .eyebrow,
.faq .eyebrow,
.book-cta .eyebrow,
.book-cta .label,
footer .eyebrow,
.page-hero .eyebrow,
.dogs-section .eyebrow {
  color: var(--amber);
}

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

@media (max-width: 900px) {
  :root { --nav-h: 110px; }
  .nav-logo-img { height: 90px; max-width: 160px; }
  .services-intro { grid-template-columns: 1fr; }
  .services-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .service-card {
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 28px 0;
  }
  .service-card:not(:first-child) { padding-left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 520px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .service-img-ph { aspect-ratio: 16/9; }
  .stylist-grid { grid-template-columns: 1fr; }
  .stylist-grid.flip { direction: ltr; }
  .stylist-img, .stylist-img-ph { aspect-ratio: 3/4; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 4/3; }
  .dogs-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--cream);
  }
  .nav-links .nav-book {
    border: 1px solid var(--amber);
    padding: 12px 32px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .nav-toggle { display: flex; }
  .nav-inner { justify-content: space-between; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 640px) {
  :root { --pad: clamp(44px, 10vw, 64px); }
  .hero-h1 { font-size: clamp(42px, 11vw, 72px); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-name { font-size: 16px; }
  .team-role { font-size: 10px; }
  .team-bio { display: none; }
  .service-detail-name { font-size: clamp(26px, 7vw, 40px); }
  .stylist-name { font-size: clamp(32px, 9vw, 56px); }
  .faq-q { font-size: clamp(15px, 4vw, 18px); }
  .book-cta .display { font-size: clamp(32px, 9vw, 56px); }
  .dogs-grid { grid-template-columns: 1fr 1fr; }
  .hours-row { font-size: 13px; }
}

@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
  .dogs-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--white);
  padding: var(--pad) 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.testimonial-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 16px);
  font-style: italic;
  line-height: 1.85;
  color: var(--muted);
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.testimonial-service {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.testimonial-footer {
  text-align: center;
}
.testimonial-more {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--ease);
}
.testimonial-more:hover { color: var(--ink); }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card-img-wrap {
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card-img-ph {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--linen);
}
.blog-card-link:hover .blog-card-img { transform: scale(1.03); }
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.blog-card-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
  flex: 1;
}
.blog-card-read {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 8px;
}
.blog-empty {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  color: var(--stone);
  font-size: 15px;
}

/* ─── BLOG POST PAGE ─── */
.post-hero {
  margin-top: var(--nav-h);
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 88px);
  background: var(--linen);
  border-bottom: 1px solid var(--cream-mid);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.post-meta-dot { opacity: 0.4; }
.post-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 840px;
}
.post-title em { font-style: italic; font-weight: 300; }
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
}
.post-img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  margin: 0 auto 48px;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 48px 0 16px;
}
.post-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}
.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-body li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 8px;
}
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.post-cta-inline {
  margin: 48px 0;
  padding: 32px 36px;
  background: var(--linen);
  border-left: 3px solid var(--amber);
}
.post-cta-inline p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
}
.post-img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  margin: 0 auto 48px;
}
.post-img-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--linen);
  margin: 40px 0;
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-body { padding: clamp(32px, 8vw, 64px) var(--gutter); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ─── Policies ─── */
.policies-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.policy-block { }
.policy-block > p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}
.policy-rules {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid var(--border);
}
.policy-rule {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.policy-rule-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.policy-service {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
}
.policy-notice {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.policy-rule > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.policy-note {
  font-size: 14px;
  line-height: 1.8;
  color: var(--stone);
  font-style: italic;
  margin-top: 0;
}
