/* =============================================================================
 * loom hair space — brand.css
 * Tokens + section styles. Mobile-first. Fluid typography via clamp().
 * Palette sampled from the Vagaro reference recording (see research/brand-profile.md).
 * ========================================================================== */

:root {
  /* Palette */
  --cream:       #EFE5DC;
  --cream-soft:  #F4ECE3;
  --oat:         #E6DACB;
  --oat-deep:    #D9CBB7;
  --gold:        #B8A084;
  --gold-soft:   #C9B59A;
  --gold-deep:   #9C8262;
  --ink:         #1A1A1A;
  --ink-soft:    #5C5752;
  --slate:       #2D343A;
  --slate-deep:  #232930;
  --slate-soft:  #9E9995;
  --white:       #FFFFFF;

  /* Surfaces */
  --bg:          var(--cream);
  --surface:     var(--oat);
  --surface-alt: var(--cream-soft);

  /* Text */
  --text:        var(--ink);
  --text-soft:   var(--ink-soft);
  --text-on-dark:#EFE7DC;

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Radii */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-card: 14px;
  --radius-pill: 999px;

  /* Borders & shadows */
  --hairline:    1px solid rgba(26,26,26,0.08);
  --shadow-sm:   0 1px 2px rgba(26,26,26,0.04);
  --shadow-card: 0 6px 28px rgba(26,26,26,0.08);
  --shadow-lift: 0 18px 60px rgba(26,26,26,0.12);

  /* Motion */
  --ease-out:    cubic-bezier(.22,.61,.36,1);
  --ease-in-out: cubic-bezier(.65,.05,.36,1);
  --t-fast:      180ms var(--ease-out);
  --t-base:      280ms var(--ease-out);
  --t-slow:      560ms var(--ease-out);

  /* Type
     - --font-display = Italiana, the tall-narrow editorial serif used on the
       Vagaro reference. We restore it for ALL section headings + value-card
       titles to keep the brand voice. Its hairline strokes need real size to
       read well; sizing is bumped throughout to compensate.
     - --font-display-fallback only kicks in if Italiana fails to load. */
  --font-display:  'Italiana', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:     'Karla', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Wordmark uses Outfit — geometric sans with circular Os, more on-brand for
     the "LOOM" brand mark than Karla's slightly elliptical letterforms. */
  --font-wordmark: 'Outfit', 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Heading sizes (fluid) */
  --fs-h1:      clamp(3rem, 8vw, 6rem);
  --fs-h2:      clamp(2.2rem, 4.6vw, 3.6rem);
  --fs-h3:      clamp(1.5rem, 2.6vw, 2rem);
  --fs-eyebrow: 0.72rem;
  --fs-body:    1rem;
  --fs-small:   0.85rem;

  /* Layout */
  --container:        76rem;
  --container-narrow: 48rem;
  --side-pad:         clamp(1.25rem, 4vw, 2.5rem);
}

/* -------------------------------------------------------------------------- *
 * Reset + base
 * -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4; tab-size: 4;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;             /* per memory: never use overflow-x:hidden on body */
  min-height: 100svh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }

ul, ol { padding: 0; list-style: none; }

::selection { background: var(--gold-soft); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden; z-index: 1000;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto;
  padding: .5rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------------------- *
 * Type — display + utilities
 * -------------------------------------------------------------------------- */

.display {
  font-family: 'Italiana', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1.display, .hero__title { font-size: var(--fs-h1); }
h2.display, .section__heading { font-size: var(--fs-h2); }
h3.display { font-size: var(--fs-h3); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 var(--space-sm);
  display: inline-block;
}
.eyebrow--inline { display: inline; margin: 0 .35em 0 0; }
.eyebrow--light { color: var(--slate-soft); }

p { color: var(--text-soft); }
p + p { margin-top: var(--space-sm); }

/* The gold hairline rule used under every section heading */
.rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-md) auto;
}
.rule--light { background: var(--gold-soft); }

/* -------------------------------------------------------------------------- *
 * Layout
 * -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--space-3xl) 0;
}
.section__head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section__head .rule { margin: var(--space-md) auto var(--space-lg); }
.section__heading {
  text-align: center;
  margin: 0;
}
.section__heading--light { color: var(--text-on-dark); }
.section__lede {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
}

/* -------------------------------------------------------------------------- *
 * Buttons
 * -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--ghost-light {
  color: var(--text-on-dark);
  border-color: var(--text-on-dark);
}
.btn--ghost-light:hover {
  background: var(--text-on-dark);
  color: var(--slate);
}

/* -------------------------------------------------------------------------- *
 * Site header
 * -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background var(--t-base), box-shadow var(--t-base), padding var(--t-base);
  padding: 1.1rem 0;
}
.site-header.is-scrolled {
  background: rgba(239, 229, 220, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(26,26,26,0.05);
  padding: 0.4rem 0;
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
/* Text wordmark used in the header + footer (replaces the brush-script logo).
   "LOOM" on top in Karla regular with very wide tracking, "HAIR SPACE" smaller
   below at the same tracking — matches the hero title treatment. */
.site-header__brand,
.site-footer__brand { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-family: var(--font-wordmark);
  color: var(--ink);
  transition: font-size var(--t-base);
}
.brand-mark__title {
  font-weight: 400;
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  letter-spacing: 0.32em;
  color: var(--ink);
}
.brand-mark__sub {
  font-weight: 400;
  font-size: clamp(0.5rem, 0.7vw, 0.6rem);
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  margin-top: 0.45em;
}
.site-header.is-scrolled .brand-mark__title { font-size: clamp(0.8rem, 1.1vw, 1rem); }
.site-header.is-scrolled .brand-mark__sub   { font-size: clamp(0.45rem, 0.6vw, 0.55rem); }
.brand-mark--footer { font-family: var(--font-wordmark); }
.site-header.is-scrolled .site-header__cta {
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
}
.site-header.is-scrolled .site-nav__list {
  font-size: 0.76rem;
}
.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  gap: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-nav__list a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--ink);
}
.site-nav__list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-base);
}
.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after { transform: scaleX(1); }

.site-header__cta {
  margin-left: var(--space-lg);
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}
@media (max-width: 1080px) {
  .site-header__cta { margin-left: var(--space-md); }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border-radius: var(--radius-sm);
}
.nav-toggle__bar {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform var(--t-base), opacity var(--t-base);
}
body.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0;
  z-index: 49;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base);
}
.mobile-nav[aria-hidden="false"],
body.nav-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__list {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8.5vw, 3.8rem);
  line-height: 1.6;
}
.mobile-nav__cta { margin-top: var(--space-xl); }

@media (max-width: 880px) {
  .site-nav, .site-header__cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* -------------------------------------------------------------------------- *
 * Hero
 * -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--side-pad);
  overflow: hidden;
  isolation: isolate;
}
/* Hero background — atmospheric Higgsfield image sitting subtly behind the
   neutral cream gradient. The gradient is at ~85-88% alpha so the image
   shows through only as soft warm texture — the page still reads as cream. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(239,229,220,0.88) 0%, rgba(230,218,203,0.88) 60%, rgba(244,236,227,0.92) 100%),
    url('../images/heroes/hero-home.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(239,229,220,0.05) 0%, rgba(239,229,220,0.45) 70%, rgba(239,229,220,0.65) 100%);
}
.hero__content {
  text-align: center;
  max-width: 42rem;
  position: relative;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
.hero__eyebrow { margin-bottom: var(--space-lg); }
/* Hero title — Outfit regular (geometric, circular Os) with wide letter-spacing. */
.hero__title {
  font-family: var(--font-wordmark);
  font-weight: 400;
  font-size: clamp(1.6rem, 4.2vw, 3.1rem);
  letter-spacing: 0.32em;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .hero__title {
    font-size: clamp(1.3rem, 7vw, 2rem);
    letter-spacing: 0.26em;
  }
}
.hero__title-tail {
  display: block;
  font-size: 0.32em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 0.6rem;
  color: var(--ink-soft);
}
.hero .rule { margin: var(--space-lg) auto; width: 56px; }
.hero__promise {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-xl);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta { padding: 1.05rem 2rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 56px;
  display: block;
}
.hero__scroll-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  animation: scrollHint 2.4s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* -------------------------------------------------------------------------- *
 * Explore (intro)
 * -------------------------------------------------------------------------- */

.explore {
  padding: var(--space-2xl) 0;
  text-align: center;
}
.explore .section__lede { font-size: 1.15rem; }

/* -------------------------------------------------------------------------- *
 * Services accordion
 * -------------------------------------------------------------------------- */

.services {
  background: var(--surface);
}
.services__list {
  max-width: 44rem;
  margin: 0 auto;
  border-top: var(--hairline);
}
.services__item {
  border-bottom: var(--hairline);
}
.services__row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.3vw, 2.3rem);
  color: var(--ink);
}
.services__row-media {
  flex: 0 0 auto;
  width: clamp(56px, 6vw, 80px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--oat-deep);
  box-shadow: 0 1px 0 rgba(26,26,26,0.04);
  transition: transform var(--t-base), filter var(--t-base);
}
.services__row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}
.services__row:hover .services__row-media {
  transform: scale(1.02);
}
.services__row-title { flex: 1 1 auto; transition: color var(--t-base); }
.services__row:hover .services__row-title { color: var(--gold-deep); }
.services__row-meta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 520px) {
  .services__row-media { width: 48px; }
  .services__price { display: none; }
}
.services__chev {
  display: inline-block;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
  transition: transform var(--t-base);
}
.services__row[aria-expanded="true"] .services__chev {
  transform: rotate(-135deg);
}

/* Animated accordion panel using grid-template-rows 0fr → 1fr trick.
   The grid item is overflow:hidden so the height transition reveals content. */
.services__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease-out), opacity 0.3s var(--ease-out);
  max-width: 36rem;
}
.services__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.services__row[aria-expanded="true"] + .services__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.services__panel-inner > * + * { margin-top: var(--space-sm); }
.services__panel-inner > :last-child { padding-bottom: var(--space-lg); }

/* Remove the default browser focus outline on the row when clicked with
   mouse, but keep an elegant gold outline for keyboard nav (a11y). */
.services__row { outline: none; }
.services__row:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
  border-radius: var(--radius-sm);
}
.services__copy {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}
.services__duration {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
}
/* Shared subtle inline link used both for per-service "Book this service" and
   for section-level "more on this page" links. Quiet uppercase tracked,
   gold-on-cream by default, with --light variant for dark slate sections. */
.services__book,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.25rem 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
  transition: color var(--t-base), border-color var(--t-base), gap var(--t-base);
  text-decoration: none;
}
.services__book { margin-top: var(--space-sm); }
.services__book:hover,
.section-link:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
  gap: 0.75em;
}
.services__book-arrow,
.section-link__arrow {
  font-size: 1em;
  transition: transform var(--t-base);
}
.services__book:hover .services__book-arrow,
.section-link:hover .section-link__arrow {
  transform: translateX(2px);
}
.section-link--light {
  color: var(--gold-soft);
}
.section-link--light:hover {
  color: var(--text-on-dark);
  border-bottom-color: var(--gold-soft);
}
.section-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

/* -------------------------------------------------------------------------- *
 * Values cards
 * -------------------------------------------------------------------------- */

.values {
  padding: var(--space-2xl) 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.values__card {
  background: var(--cream-soft);
  border-radius: var(--radius-card);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border: var(--hairline);
}
.values__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-sm);
}
.values__card .rule { margin: var(--space-md) auto; }
.values__copy {
  font-size: 0.98rem;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------- *
 * Reviews
 * -------------------------------------------------------------------------- */

.reviews {
  padding: 0;
  background: var(--cream);
}
.reviews__header {
  position: relative;
}
.reviews__header-media {
  width: 100%;
  height: clamp(220px, 36vw, 340px);
  background:
    linear-gradient(180deg, rgba(239,229,220,0) 60%, rgba(239,229,220,0.7) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(217,203,183,0.6), rgba(239,229,220,0) 60%),
    radial-gradient(ellipse at 70% 40%, rgba(184,160,132,0.35), rgba(239,229,220,0) 65%),
    var(--oat);
  background-size: cover;
  background-position: center;
  position: relative;
}
/* Soft cream fade on the top + bottom edges so the photo blends into the
   cream sections instead of cutting hard with a dark line. */
.reviews__header-media::before,
.about__header-media::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(239,229,220,0) 18%,
    rgba(239,229,220,0) 82%,
    var(--cream) 100%
  );
}
/* .reviews__header-card removed — titles no longer live inside white floating
   cards. The "Reviews" heading now sits in a normal section__head above the
   photo band. Photo and slate touch directly with no overlay. */
.reviews__featured {
  background: var(--slate);
  color: var(--text-on-dark);
  padding: var(--space-2xl) var(--side-pad);
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
.reviews__heading { color: var(--text-on-dark); }
.reviews__featured .rule { margin: var(--space-md) auto var(--space-lg); }
.reviews__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  color: var(--text-on-dark);
  max-width: 42rem;
  margin: 0 auto;
}
.reviews__author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-top: var(--space-lg);
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  max-width: var(--container);
  margin: var(--space-2xl) auto;
  padding: 0 var(--side-pad);
}
/* Reviews now reads top-to-bottom as: section heading → photo → slate testimonial.
   No floating card, no overlay, the photo and slate touch directly. */
.reviews__header { position: relative; }
.reviews__header-media { position: relative; }
.reviews__card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-card);
  border: var(--hairline);
}
.reviews__card-quote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.reviews__card-author {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------- *
 * About
 * -------------------------------------------------------------------------- */

/* About + Team now flow as one continuous section. About drops most of its
   bottom padding; team kills its top padding entirely so the portrait sits
   close to the About body paragraph. */
.about { padding: var(--space-3xl) 0; background: var(--cream); }
.about__body { margin-top: 0; }
.about__header { position: relative; }
.about__header-media {
  width: 100%;
  height: clamp(220px, 36vw, 340px);
  background:
    radial-gradient(ellipse at 30% 60%, rgba(255,255,255,0.45), rgba(239,229,220,0) 55%),
    radial-gradient(ellipse at 65% 35%, rgba(217,203,183,0.55), rgba(239,229,220,0) 60%),
    var(--cream-soft);
  background-size: cover;
  background-position: center;
  position: relative;
}
/* .about__header-card removed — title now lives in a section__head above
   the photo band, matching the rest of the page. */
.about__body {
  margin-top: var(--space-xl);
  text-align: center;
}
.about__body .section__head { margin-bottom: var(--space-lg); }
.about__body .about__copy {
  font-size: 1.05rem;
}
.about__portrait {
  aspect-ratio: 4/5;
  background: var(--oat);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about__portrait--placeholder {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(239,229,220,0) 40%),
    radial-gradient(ellipse at 50% 70%, rgba(184,160,132,0.4), rgba(239,229,220,0) 65%),
    var(--oat);
  position: relative;
}
.about__portrait--placeholder::after {
  content: 'portrait';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: 0.6;
}
.about__copy { color: var(--ink-soft); }
.about__copy p { font-size: 1.05rem; }

@media (max-width: 720px) {
  .about__body {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .about__portrait { max-width: 22rem; margin: 0 auto; }
}

/* -------------------------------------------------------------------------- *
 * Team
 * -------------------------------------------------------------------------- */

/* Team is now rendered INSIDE the About section. No wrapping section element,
   so no background or padding rules needed on .team itself; it inherits the
   cream from .about. The old .team selector and its bg + paddings are removed
   to eliminate any seam between About paragraph and team cards. */
.team-block { margin-top: var(--space-xl); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  max-width: 56rem;
  margin: 0 auto;
}
.team__card {
  text-align: center;
}
.team__portrait {
  aspect-ratio: 4/5;
  background: var(--oat);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.team__portrait--placeholder {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(239,229,220,0) 40%),
    radial-gradient(ellipse at 50% 75%, rgba(184,160,132,0.4), rgba(239,229,220,0) 65%),
    var(--oat);
  position: relative;
}
.team__portrait--placeholder::after {
  content: 'portrait';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: 0.6;
}
.team__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  margin-bottom: 0.25rem;
}
.team__role { margin-bottom: var(--space-sm); }
.team__bio { color: var(--ink-soft); font-size: 0.95rem; }

/* -------------------------------------------------------------------------- *
 * Hours & Location (dark slate)
 * -------------------------------------------------------------------------- */

.hours {
  background: var(--slate);
  color: var(--text-on-dark);
}
.hours .section__heading--light,
.hours .display { color: var(--text-on-dark); }
.hours .eyebrow--light { color: var(--slate-soft); }
.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}
.hours__col .rule { margin-left: 0; margin-right: auto; }
.hours__list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(239,231,220,0.08);
  padding-bottom: 0.5rem;
}
.hours__row dt { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; color: var(--slate-soft); }
.hours__row dd { font-size: 0.92rem; color: var(--text-on-dark); }
.hours__map {
  margin: var(--space-lg) 0 var(--space-md);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(239,231,220,0.12);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  background: var(--slate-deep);
}
.hours__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Slight desaturation so the Google green/blue doesn't shout on the dark salon palette. */
  filter: saturate(0.85) brightness(0.96);
}
.hours__address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 var(--space-xl);
  color: var(--text-on-dark);
}

@media (max-width: 720px) {
  .hours__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* -------------------------------------------------------------------------- *
 * Contact (dark slate, second band)
 * -------------------------------------------------------------------------- */

.contact {
  background: var(--slate-deep);
  color: var(--text-on-dark);
  text-align: center;
  padding-bottom: var(--space-2xl);
}
.contact__inner { max-width: 42rem; margin: 0 auto; }
.contact .section__heading--light { margin-bottom: 0; }
.contact .rule { margin: var(--space-md) auto var(--space-xl); }
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0 auto var(--space-xl);
  max-width: 28rem;
}
.contact__channel {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid rgba(239,231,220,0.16);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  transition: border-color var(--t-base), background var(--t-base);
}
.contact__channel:hover {
  border-color: var(--gold-soft);
  background: rgba(184,160,132,0.08);
}
.contact__channel-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-soft);
}
.contact__channel-value {
  color: var(--text-on-dark);
  font-size: 0.95rem;
}
.contact__cta { padding: 1rem 2rem; }

/* -------------------------------------------------------------------------- *
 * Footer
 * -------------------------------------------------------------------------- */

.site-footer {
  background: var(--cream);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: var(--hairline);
}
.site-footer__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
}
/* footer brand-mark uses the same wordmark; no img sizing needed */
.site-footer__brand .brand-mark { transform: none; }
.site-footer__nav ul {
  display: flex;
  gap: var(--space-md) var(--space-lg);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer__nav a:hover { color: var(--gold-deep); }
.site-footer__social {
  display: flex;
  gap: var(--space-md);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  justify-self: end;
}
.site-footer__credit {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: var(--space-md) 0 0;
  padding-top: var(--space-md);
  border-top: var(--hairline);
}

@media (max-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__social { justify-self: center; }
}

/* =============================================================================
 * Inner pages — page-hero, booking CTA, About long-form, Services notes,
 * Reviews grid, Contact form, shared two-col layout, rich-text body, text-link.
 * ========================================================================== */

.page-hero {
  padding: calc(var(--space-3xl) + 3rem) 0 var(--space-xl);
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(239,229,220,0.90), rgba(239,229,220,0.92)),
    var(--page-hero-bg, none);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  text-align: center;
}
.page-hero--about    { --page-hero-bg: url('../images/heroes/hero-about.jpg'); }
.page-hero--services { --page-hero-bg: url('../images/heroes/hero-services.jpg'); }
.page-hero--gallery  { --page-hero-bg: url('../images/heroes/hero-gallery.jpg'); }
.page-hero--contact  { --page-hero-bg: url('../images/heroes/hero-contact.jpg'); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.page-hero .rule { margin: var(--space-md) auto var(--space-lg); }
.page-hero__intro {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

/* Booking CTA — closing band on every inner page. Cream surface to keep the
   site quiet; the gold button is the only loud element. */
.booking-cta {
  background: var(--cream);
  text-align: center;
}
.booking-cta__inner { padding: 0; }
.booking-cta__btn { margin-top: var(--space-lg); padding: 1.1rem 2.2rem; }

/* About — long form sections */
.about-story .section__heading,
.about-founder .section__heading,
.pricing-notes .section__heading,
.reviews-external .section__heading,
.team-join .section__heading {
  text-align: center;
}
.rich-text { color: var(--ink-soft); }
.rich-text p { font-size: 1.05rem; line-height: 1.75; margin-bottom: var(--space-md); }
.rich-text p:last-child { margin-bottom: 0; }

.about-founder { background: var(--cream-soft); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-founder__portrait {
  aspect-ratio: 4/5;
  background: var(--oat);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-founder__portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-founder__bio .section__heading,
.about-founder__bio .rule { text-align: left; margin-left: 0; }
.about-founder__bio .rule { margin: var(--space-md) 0 var(--space-lg); }
.about-founder__bio .eyebrow { margin-bottom: var(--space-xs); }
.about-founder__bio p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: var(--space-md); }

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-founder__portrait { max-width: 22rem; margin: 0 auto; }
  .about-founder__bio .section__heading,
  .about-founder__bio .rule { text-align: center; margin-left: auto; margin-right: auto; }
}

/* Services — pricing notes */
.pricing-notes { background: var(--cream); }
.notes-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.notes-list li {
  padding-left: var(--space-md);
  border-left: 2px solid var(--gold);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.notes-list li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

/* Team — join section */
.team-join { background: var(--cream-soft); }
.text-link {
  border-bottom: 1px solid var(--gold);
  transition: color var(--t-base), border-color var(--t-base);
}
.text-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* Reviews — full grid */
.reviews-grid { background: var(--cream); }
.reviews-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.reviews-grid__card {
  background: var(--white);
  border: var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-md);
}
.reviews-grid__quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
}
.reviews-grid__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: var(--hairline);
  padding-top: var(--space-md);
  gap: var(--space-md);
}
.reviews-grid__author {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.reviews-grid__service {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.reviews-external { background: var(--cream-soft); }
.reviews-external__links { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-top: var(--space-lg); }

/* Contact page — channels + form grid */
.contact-page { background: var(--cream); }
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
}
.contact-page__channels .section__heading,
.contact-page__form-col .section__heading {
  text-align: left;
}
.contact-page__channels .rule,
.contact-page__form-col .rule {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}
.contact-page__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-page__list li {
  padding: var(--space-md) 0;
  border-bottom: var(--hairline);
}
.contact-page__list li:last-child { border-bottom: 0; }
.contact-page__list .eyebrow { margin-bottom: 0.35rem; }
.contact-page__list a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color var(--t-base), border-color var(--t-base);
}
.contact-page__list a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
.contact-page__form-lede { color: var(--ink-soft); margin-bottom: var(--space-lg); }

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); position: relative; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(26,26,26,0.12);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,160,132,0.18);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form__submit { align-self: flex-start; margin-top: var(--space-sm); padding: 0.95rem 2.2rem; }
.contact-form__note { font-size: 0.85rem; color: var(--ink-soft); margin-top: var(--space-xs); }

@media (max-width: 720px) {
  .contact-page__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* =============================================================================
 * Services page — full categorized menu (separate from the homepage accordion).
 * ========================================================================== */

.services-menu { background: var(--cream); }
.services-menu__lede {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto var(--space-2xl);
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.services-menu__cat + .services-menu__cat { margin-top: var(--space-3xl); }
.services-menu__cat-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.services-menu__cat-head .rule { margin: var(--space-md) auto 0; }
.services-menu__cat-name {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
}
.services-menu__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}
.services-menu__item { display: flex; }
.services-menu__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--space-lg);
  background: var(--cream-soft);
  border: 1px solid rgba(26,26,26,0.06);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--ink);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.services-menu__row:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.services-menu__row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.services-menu__name {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: 0.005em;
  margin: 0;
}
.services-menu__price {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  white-space: nowrap;
}
.services-menu__copy {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
  flex: 1 1 auto;
}
.services-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: gap var(--t-base), border-color var(--t-base);
}
.services-menu__row:hover .services-menu__cta {
  border-bottom-color: var(--gold);
  gap: 0.75em;
}
.services-menu__cta-arrow { transition: transform var(--t-base); }
.services-menu__row:hover .services-menu__cta-arrow { transform: translateX(2px); }

/* =============================================================================
 * Gallery page — before / after pairs + standalone shots grid.
 * ========================================================================== */

.gallery-pairs { background: var(--cream); }
.ba-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  margin-top: var(--space-xl);
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.ba-pair__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.ba-pair__shot {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--oat);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.ba-pair__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.ba-pair__shot:hover img { transform: scale(1.02); }
.ba-pair__cap {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(255,255,255,0.92);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.ba-pair__meta {
  text-align: center;
  padding-top: var(--space-sm);
}
.ba-pair__meta .eyebrow { color: var(--gold-deep); margin-bottom: 0.35rem; }
.ba-pair__label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  color: var(--ink);
}

@media (max-width: 720px) {
  /* Tight proximity: meta sits flush under its media so the eye reads it
     as a caption for the pair above, not a header for the pair below.
     Width contrast: meta narrows to nest inside the media footprint.
     Hairline anchor: small gold rule above the eyebrow, like a magazine
     caption mark. Reduced --space-2xl between pairs keeps the rhythm
     unambiguous while tightening the page so less scrolling. */
  .ba-list { gap: var(--space-2xl); }
  .ba-pair { gap: var(--space-xs); }
  .ba-pair__meta {
    max-width: 16rem;
    margin-inline: auto;
    padding-top: var(--space-sm);
    position: relative;
  }
  .ba-pair__meta::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto var(--space-sm);
  }
  .ba-pair__meta .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.25rem;
  }
  .ba-pair__label {
    font-size: clamp(1.15rem, 4.4vw, 1.4rem);
    line-height: 1.25;
  }
}

@media (min-width: 880px) {
  .ba-pair {
    grid-template-columns: 3fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  .ba-pair__meta { text-align: left; padding-top: 0; }
}

.gallery-grid { background: var(--cream-soft); }
.gallery-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.gallery-grid__item figure { position: relative; }
.gallery-grid__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--oat);
  transition: transform 0.6s var(--ease-out);
}
.gallery-grid__item:hover img { transform: scale(1.02); }
.gallery-grid__item figcaption {
  margin-top: var(--space-sm);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------- *
 * Fallback page
 * -------------------------------------------------------------------------- */

.page-fallback,
.page-404 {
  min-height: 70svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) 0;
}
.page-404__actions { display: flex; gap: var(--space-md); justify-content: center; margin-top: var(--space-lg); flex-wrap: wrap; }

/* -------------------------------------------------------------------------- *
 * Reduced motion
 * -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
