/* ================================================================
   LM HAIR CO. — style.css
   Brand tokens at :root, then base, components, sections, responsive.
   ================================================================ */

/* ---------- Brand tokens ---------- */
:root {
  /* Palette (brand board locked 2026-04-23) */
  --blush:    #F4DCDC;
  --nude:     #E8D6CF;
  --mauve:    #C9A9A3;  /* primary brand — buttons, wordmark, accents */
  --cream:    #FAF7F5;  /* default page bg */
  --espresso: #3A3432;  /* body text, dark sections */

  /* Derived */
  --mauve-dark: #B48E87;
  --mauve-soft: #E4CFC9;
  --line:       rgba(58, 52, 50, 0.12);
  --line-cream: rgba(250, 247, 245, 0.18);

  /* Typography */
  --f-display: 'Cormorant Garamond', 'The Seasons', 'Playfair Display', Georgia, serif;
  --f-body:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Scale */
  --w-wide:   1280px;
  --w-body:    960px;
  --w-prose:   640px;

  /* Spacing */
  --s-1:  .5rem;
  --s-2:  1rem;
  --s-3:  1.5rem;
  --s-4:  2rem;
  --s-5:  3rem;
  --s-6:  4.5rem;
  --s-7:  6rem;
  --s-8:  8rem;
}

/* ---------- Reset + base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--mauve-dark); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

p { margin: 0 0 1em; }

.kicker {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--mauve);
  margin-bottom: var(--s-3);
  display: inline-block;
}

.kicker--light { color: var(--mauve-soft); }

.italic { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 1rem 2.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background: var(--mauve);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--mauve-dark);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn--outline:hover {
  background: var(--espresso);
  color: var(--cream);
}

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline-cream:hover {
  background: var(--cream);
  color: var(--espresso);
}

/* ---------- Layout utilities ---------- */
.section {
  padding: var(--s-7) var(--s-4);
}
.section--tight { padding: var(--s-6) var(--s-4); }
.section--dark {
  background: var(--espresso);
  color: var(--cream);
}
.section--blush { background: var(--blush); }
.section--nude  { background: var(--nude); }

.container {
  max-width: var(--w-body);
  margin: 0 auto;
}
.container--wide  { max-width: var(--w-wide); }
.container--prose { max-width: var(--w-prose); }

.center-text { text-align: center; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav--solid {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.75rem 2rem;
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--w-wide);
  margin: 0 auto;
  gap: 2rem;
}
.nav__links {
  display: flex;
  gap: 2.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 500;
}
.nav__links--left  { justify-content: flex-end; }
.nav__links--right { justify-content: flex-start; }
.nav__links a {
  color: var(--cream);
  transition: color .2s;
}
.nav--solid .nav__links a { color: var(--espresso); }
.nav__links a:hover { color: var(--mauve); }

.nav__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  white-space: nowrap;
}
.nav--solid .nav__logo { color: var(--espresso); }

.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}
.nav--solid .nav__logo img { filter: none; }

.nav__cta {
  justify-self: end;
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--cream);
  color: var(--cream);
  transition: background .25s, color .25s;
}
.nav--solid .nav__cta {
  border-color: var(--espresso);
  color: var(--espresso);
}
.nav__cta:hover {
  background: var(--mauve);
  color: var(--cream);
  border-color: var(--mauve);
}

.nav__hamburger {
  display: none;
  background: none;
  border: 0;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: var(--cream);
  padding: 0;
}
.nav--solid .nav__hamburger { color: var(--espresso); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  color: var(--cream);
  background: var(--espresso);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,52,50,0.45) 0%, rgba(58,52,50,0.55) 60%, rgba(58,52,50,0.7) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero__kicker {
  color: var(--mauve-soft);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--mauve-soft);
}
.hero__sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(250, 247, 245, 0.85);
}

/* ---------- Info strip ---------- */
.info-strip {
  background: var(--nude);
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
}
.info-strip__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso);
}
.info-strip__right { text-align: right; }
.info-strip span + span { margin-left: 1.5rem; }

/* ---------- Value prop ---------- */
.value {
  text-align: center;
  padding: var(--s-8) 2rem;
}
.value h2 {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}
.value__body {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--espresso);
  opacity: 0.8;
}

/* ---------- Services (4-card grid, photo + caption) ---------- */
.services {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--s-7) 2rem;
}
.services__head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.services__head h2 { color: var(--cream); }
.services__head .kicker { color: var(--mauve-soft); }
.services__grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  display: block;
  position: relative;
}
.service-card__img {
  aspect-ratio: 3 / 4;
  background: var(--mauve);
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform .5s ease;
}
.service-card:hover .service-card__img { transform: scale(1.02); }
.service-card__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
}
.service-card__arrow {
  font-size: 1rem;
  color: var(--mauve-soft);
  transition: transform .25s;
}
.service-card:hover .service-card__arrow { transform: translateX(4px); }
.services__foot {
  text-align: center;
  margin-top: var(--s-5);
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--mauve);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  font-family: var(--f-body);
}
.marquee__track span {
  display: inline-block;
}
.marquee__dot {
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Pricing list ---------- */
.pricing {
  background: var(--cream);
  padding: var(--s-7) 2rem;
}
.pricing__head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.pricing__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.price-card {
  background: #fff;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid var(--line);
  text-align: center;
}
.price-card__name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--espresso);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.price-card__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--espresso);
  opacity: 0.72;
  margin-bottom: 1rem;
}
.price-card__price {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--mauve-dark);
}
.pricing__note {
  text-align: center;
  margin-top: var(--s-4);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--espresso);
  opacity: 0.6;
}

/* ---------- About ---------- */
.about {
  background: var(--nude);
  padding: var(--s-7) 2rem;
}
.about__grid {
  max-width: var(--w-body);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__photo {
  aspect-ratio: 3 / 4;
  background: var(--mauve-soft);
  background-size: cover;
  background-position: center;
}
.about__text h2 { margin-bottom: 1.5rem; }
.about__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--mauve-dark);
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--mauve);
}

/* ---------- Process ---------- */
.process {
  padding: var(--s-7) 2rem;
  text-align: center;
}
.process__head { margin-bottom: var(--s-5); }
.process__grid {
  max-width: var(--w-body);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step__num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--mauve);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.step__body {
  font-size: 0.88rem;
  opacity: 0.75;
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--blush);
  padding: var(--s-7) 2rem;
  text-align: center;
}
.final-cta h2 {
  max-width: 680px;
  margin: 0 auto 1rem;
}
.final-cta p {
  max-width: 480px;
  margin: 0 auto 2rem;
  color: var(--espresso);
  opacity: 0.75;
}

/* ---------- Divider (flourish) ---------- */
.flourish {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-family: var(--f-display);
  color: var(--mauve);
  font-size: 1.25rem;
  letter-spacing: 1rem;
  padding: 1rem 0;
}
.flourish::before { content: '✦ ✦ ✦'; }

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: var(--s-7) 2rem var(--s-4);
}
.footer__watermark {
  position: absolute;
  left: -2rem;
  bottom: -4rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24rem;
  line-height: 1;
  color: rgba(201, 169, 163, 0.08);
  pointer-events: none;
  user-select: none;
}
.footer__inner {
  position: relative;
  z-index: 2;
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.footer__col h4 {
  font-family: var(--f-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--mauve-soft);
  margin-bottom: 1.25rem;
}
.footer__col p,
.footer__col a {
  font-size: 0.85rem;
  color: rgba(250, 247, 245, 0.85);
  line-height: 1.75;
  margin: 0 0 0.35rem;
  display: block;
}
.footer__col a:hover { color: var(--mauve); }

.footer__ig {
  max-width: var(--w-wide);
  margin: var(--s-5) auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.footer__ig-thumb {
  aspect-ratio: 1 / 1;
  background: var(--mauve);
  background-size: cover;
  background-position: center;
}
.footer__bottom {
  position: relative;
  z-index: 2;
  max-width: var(--w-wide);
  margin: var(--s-5) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 245, 0.6);
}

/* ---------- Generic page header (for /about, /services, etc.) ---------- */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: var(--nude);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin: 0; }
.page-header .kicker { color: var(--mauve-dark); }
.page-header__sub {
  max-width: 38rem;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.78;
}
/* When a content section directly follows .page-header, collapse the
   stacked top padding — the header already provides breathing room. */
.page-header + section { padding-top: var(--s-5); }

/* ---------- Stub page for placeholder sections ---------- */
.stub {
  max-width: var(--w-prose);
  margin: 0 auto;
  padding: var(--s-6) 2rem;
  text-align: center;
}
.stub__body { opacity: 0.75; font-size: 0.95rem; line-height: 1.8; }

/* ---------- 404 ---------- */
.notfound {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.notfound__big {
  font-family: var(--f-display);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  color: var(--mauve);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .process__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__ig { grid-template-columns: repeat(5, 1fr); }
  .footer__watermark { font-size: 14rem; }
}

@media (max-width: 720px) {
  .nav__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .nav__logo { justify-self: center; font-size: 1.25rem; }
  .info-strip__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .info-strip__right { text-align: center; }
  .info-strip span + span { margin-left: 1rem; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__ig { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: column; gap: 1rem; }
  .section, .services, .pricing, .about, .process, .final-cta, .value, .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero { padding: 7rem 1.5rem 4rem; }
}

/* ---------- Nav drawer (mobile) ---------- */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82%, 360px);
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a {
  font-family: var(--f-display);
  font-size: 1.75rem;
  color: var(--espresso);
  letter-spacing: 0.03em;
}
.nav__drawer a:hover { color: var(--mauve); }
.nav__drawer-cta { margin-top: 2rem; }
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58, 52, 50, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--espresso);
  cursor: pointer;
}

/* ================================================================
   PORTFOLIO PAGE
   ================================================================ */
.portfolio {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s-7) var(--s-4);
}
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--s-5);
}
.filter-btn {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.filter-btn:hover { border-color: var(--mauve); color: var(--mauve-dark); }
.filter-btn.is-active {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.portfolio-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--nude);
}
.portfolio-tile__img {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.portfolio-tile:hover .portfolio-tile__img { transform: scale(1.04); }
.portfolio-tile__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(58,52,50,0.7) 70%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.portfolio-tile__cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.85;
}
.portfolio-tile__label {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.portfolio__foot {
  margin-top: var(--s-7);
  padding: var(--s-6) 2rem;
  background: var(--blush);
  text-align: center;
}
.portfolio__foot h2 { margin-bottom: 1rem; }
.portfolio__foot p { max-width: 30rem; margin: 0 auto 1.75rem; opacity: 0.8; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-page {
  padding: var(--s-7) var(--s-4);
  max-width: var(--w-wide);
  margin: 0 auto;
}
.about-page__intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.about-page__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 22%;
}
.about-page__lead h2 {
  margin-bottom: 1.5rem;
}
.about-page__lead p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.85;
}
.about-page__philosophy { padding: var(--s-7) var(--s-4); }
.about-page__philosophy .container { max-width: 720px; text-align: center; }
.about-page__quote {
  margin: var(--s-5) 0 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  color: var(--mauve-dark);
  border: 0;
  padding: 0;
}
.about-page__specialties { padding: var(--s-7) var(--s-4); }
.about-page__specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-5);
}
.about-page__specialty-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.about-page__specialty-grid p { opacity: 0.8; }
.about-page__expect { padding: var(--s-7) var(--s-4); }
.about-page__steps {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.about-page__steps li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--cream);
  border: 1px solid var(--line);
}
.about-page__step-num {
  font-family: var(--f-display);
  font-size: 2.25rem;
  color: var(--mauve);
  line-height: 1;
}
.about-page__steps h4 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}
.about-page__steps p { margin: 0; opacity: 0.8; }
.about-page__cta { padding: var(--s-7) var(--s-4); }
.about-page__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ================================================================
   SERVICES PAGE — alternating image / content blocks
   ================================================================ */
.services-page {
  padding: var(--s-7) var(--s-4);
  max-width: var(--w-wide);
  margin: 0 auto;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-block--reverse .service-block__img { order: 2; }
.service-block__img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}
.service-block__content h2 {
  margin: 0.5rem 0 1rem;
}
.service-block__content > p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.75rem;
}
.service-block__includes {
  background: var(--cream);
  padding: 1.5rem;
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.service-block__includes h4 {
  font-size: 0.75rem;
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mauve);
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.service-block__includes ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  columns: 2;
  column-gap: 1.5rem;
  font-size: 0.92rem;
}
.service-block__includes li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.25rem;
}
.service-block__includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--mauve);
  font-size: 0.7rem;
  top: 0.55rem;
}
.service-block__timing {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.7;
}
.service-block__pricing {
  margin-bottom: 1.75rem;
}
.service-block__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.service-block__price-row:last-child { border-bottom: 0; }
.service-block__price-tier {
  font-family: var(--f-display);
  font-size: 1.15rem;
}
.service-block__price-detail {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 0.15rem;
}
.service-block__price-amount {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--mauve-dark);
  white-space: nowrap;
}
.services-page__note { padding: var(--s-7) var(--s-4); }
.services-page__note .container { max-width: 640px; }
.services-page__cta { padding: var(--s-7) var(--s-4); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page {
  padding: var(--s-7) var(--s-4);
  max-width: var(--w-wide);
  margin: 0 auto;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--s-6);
}
.contact-info { font-size: 0.95rem; }
.contact-info__block {
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.contact-info__block:last-child { border-bottom: 0; margin-bottom: 0; }
.contact-info__block h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.contact-info address {
  font-style: normal;
  line-height: 1.7;
}
.contact-info address a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--mauve-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.contact-info__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
}
.contact-info__hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--line);
}
.contact-info__hours li:last-child { border-bottom: 0; }
.contact-info__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}
.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.contact-info__list strong {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mauve);
}
.contact-info__list a {
  font-size: 1rem;
  color: var(--espresso);
}
.contact-info__list a:hover { color: var(--mauve-dark); }

.contact-form-wrap h2 { margin: 0.5rem 0 0.75rem; }
.contact-form-wrap > p { opacity: 0.8; margin-bottom: 2rem; }
.contact-form {
  display: grid;
  gap: 1.25rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mauve-dark);
  margin-bottom: 0.5rem;
}
.contact-form__field em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.6;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--espresso);
  width: 100%;
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--mauve);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 8rem; }
.contact-form__note {
  font-size: 0.85rem;
  opacity: 0.65;
  margin: 0;
}
.contact-form__submit { justify-self: start; }

.contact-page__map {
  max-width: var(--w-wide);
  margin: 0 auto var(--s-7);
  padding: 0 var(--s-4);
}
.contact-page__map iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.25) contrast(0.95);
}

/* ================================================================
   RESPONSIVE — new pages
   ================================================================ */
@media (max-width: 960px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .about-page__intro { grid-template-columns: 1fr; gap: var(--s-4); }
  .about-page__photo { aspect-ratio: 16 / 10; max-height: 480px; }
  .about-page__specialty-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .service-block { grid-template-columns: 1fr; gap: var(--s-4); }
  .service-block--reverse .service-block__img { order: 0; }
  .service-block__img { aspect-ratio: 16 / 10; max-height: 380px; }
  .contact-page__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

@media (max-width: 720px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .filter-btn { padding: 0.55rem 1rem; font-size: 0.65rem; letter-spacing: 0.18em; }
  .about-page__steps li { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.25rem; }
  .service-block__includes ul { columns: 1; }
  .contact-form__row { grid-template-columns: 1fr; }
  .page-header { padding: 7.5rem 1.5rem 3rem; }
  .page-header__sub { font-size: 0.95rem; }
}
