/* ==========================================================================
   The Natural — shared stylesheet
   Design system: warm-cream, one tall serif, script accent, arch photos.
   See salon-notes/design-system.md for the full spec.
   ========================================================================== */

:root{
  --cream:   #FAF6EF;
  --sand:    #F1E7D8;
  --wheat:   #DCC29E;
  --blush:   #EBD3C5;
  --bronze:  #A87749;
  --bronze-dark: #916138;
  --clay:    #B65C38;
  --espresso:#2B211B;
  --espresso-60: rgba(43,33,27,.6);
  --line:    rgba(43,33,27,.12);

  --font-display: 'Cormorant Garamond', serif;
  --font-script:  'La Belle Aurore', cursive;
  --font-body:    'Jost', sans-serif;

  --max: 1140px;
  --pad-mobile: 24px;
  --pad-desktop: 48px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--espresso);
}

h1{ font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2{ font-size: clamp(2rem, 4.2vw, 3rem); }
h3{ font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 400; }
h4{ font-size: 1.25rem; font-weight: 400; }

em, .italic{ font-style: italic; font-weight: 400; }

p{ margin: 0 0 1.2em; }
p:last-child{ margin-bottom: 0; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
}
@media (min-width: 800px){
  .container{ padding: 0 var(--pad-desktop); }
}

/* -------------------------------------------------------------------------
   Eyebrow / script accents
   ------------------------------------------------------------------------- */
.eyebrow{
  display: block;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--bronze);
  margin-bottom: 0.4em;
  font-weight: 400;
}

.label{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-60);
}

/* Item 3: the calm "big serif -> soft lede -> body" rhythm, sitewide. */
.lede{
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--espresso-60);
  max-width: 52ch;
}

/* -------------------------------------------------------------------------
   Sections / bands
   ------------------------------------------------------------------------- */
.section{
  padding: 96px 0;
}
@media (min-width: 800px){
  .section{ padding: 128px 0; }
}
.band-sand{ background: var(--sand); }
.band-cream{ background: var(--cream); }

.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* -------------------------------------------------------------------------
   Botanical divider (inline SVG sprig, used sparingly)
   ------------------------------------------------------------------------- */
.divider{
  display: flex;
  justify-content: center;
  margin: 0 auto 56px;
  opacity: 0.5;
}
.divider svg{ width: 64px; height: 32px; }
.divider path{ stroke: var(--espresso); stroke-opacity: 0.2; }

/* -------------------------------------------------------------------------
   Nav
   ------------------------------------------------------------------------- */
.site-nav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img{
  height: 28px;
  width: auto;
  mix-blend-mode: multiply;
}
.nav-logo-word{
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links{
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
}
@media (min-width: 820px){
  .nav-links{ display: flex; }
}
.nav-links a{
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--bronze);
  transition: right 200ms ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after{
  right: 0;
}
.nav-links a[aria-current="page"]{ color: var(--bronze); }

/* Item 1: scoped selector (beats .btn's later same-specificity rule) —
   CTA stays visible on mobile as a compact "Book" pill, expands to the
   full label at the desktop breakpoint. */
.site-nav .nav-cta{
  display: inline-flex;
  padding: 10px 18px;
  font-size: 0.78rem;
  white-space: nowrap;
}
.nav-cta-full{ display: none; }
.nav-cta-short{ display: inline; }
@media (min-width: 820px){
  .site-nav .nav-cta{
    padding: 14px 30px;
    font-size: 0.88rem;
  }
  .nav-cta-full{ display: inline; }
  .nav-cta-short{ display: none; }
}

.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 820px){
  .nav-toggle{ display: none; }
}
.nav-toggle span{
  display: block;
  width: 16px;
  height: 1px;
  background: var(--espresso);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after{
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--espresso);
}
.nav-toggle span::before{ top: -5px; }
.nav-toggle span::after{ top: 5px; }

.nav-drawer{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad-mobile) 24px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.nav-drawer.open{ display: flex; }
.nav-drawer a{
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease;
}
.nav-drawer a:last-child{ border-bottom: none; }
.nav-drawer a:hover,
.nav-drawer a[aria-current="page"]{ color: var(--bronze); }
@media (min-width: 820px){
  .nav-drawer{ display: none !important; }
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn-primary{
  background: var(--bronze);
  color: var(--cream);
}
.btn-primary:hover{
  background: var(--bronze-dark);
}
.btn-ghost{
  background: transparent;
  color: var(--espresso);
  border-color: var(--line);
}
.btn-ghost:hover{
  border-color: var(--bronze);
  color: var(--bronze);
}
.btn:active{ transform: scale(0.98); }

.text-link{
  position: relative;
  font-weight: 500;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--bronze);
  transition: right 200ms ease;
}
.text-link:hover::after{ right: 0; }

/* -------------------------------------------------------------------------
   Arch photos — the signature motif
   ------------------------------------------------------------------------- */
.arch{
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 24px 24px;
  aspect-ratio: 3 / 4;
  background: var(--sand);
  border: 1px solid var(--line);
}
.arch img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.arch:hover img{ transform: scale(1.02); }

.arch-sm{
  border-radius: 999px 999px 12px 12px;
}

.arch-landscape{
  aspect-ratio: 4 / 3;
}

/* -------------------------------------------------------------------------
   Cards
   ------------------------------------------------------------------------- */
.card{
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}
.card-cream{
  background: var(--cream);
}
.card-menu-link{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: 1px dashed var(--wheat);
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms, background 200ms;
}
.card-menu-link:hover{
  border-color: var(--bronze);
  background: var(--sand);
}
.card-menu-link .label{ color: var(--bronze); }

/* Item 4: homepage "favorites" cards — tappable, art-directed. */
.card-fav{
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms ease;
}
.card-fav:hover{ border-color: var(--bronze); }
.fav-title{
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
}
.fav-duration{ margin: 6px 0 18px; }
.fav-duration-last{ margin: 6px 0 0; }
.fav-price{
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bronze);
  margin: 0;
}
.fav-arrow{
  display: inline-block;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.card-fav:hover .fav-arrow{
  opacity: 1;
  transform: translateX(0);
}

/* -------------------------------------------------------------------------
   Reveal on scroll
   ------------------------------------------------------------------------- */
/* Item 2: only hide content once JS has proven it can un-hide it again.
   html.js is added by an inline script at the very top of <head>; if JS is
   blocked or fails, html never gets the class and everything below just
   renders normally. */
.reveal, .reveal-item{
  transition: opacity 600ms cubic-bezier(.2,.6,.2,1), transform 600ms cubic-bezier(.2,.6,.2,1);
}
html.js .reveal, html.js .reveal-item{
  opacity: 0;
  transform: translateY(14px);
}
/* Specificity note: "html.js .reveal" is (0,2,1) — a bare ".reveal.is-visible"
   (0,2,0) would lose that tie-break and never reappear. Match the html.js
   prefix so this rule always wins once revealed. */
html.js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-group.is-visible .reveal-item{
  opacity: 1;
  transform: translateY(0);
}
.reveal-group.is-visible .reveal-item:nth-child(1){ transition-delay: 0ms; }
.reveal-group.is-visible .reveal-item:nth-child(2){ transition-delay: 80ms; }
.reveal-group.is-visible .reveal-item:nth-child(3){ transition-delay: 160ms; }
.reveal-group.is-visible .reveal-item:nth-child(4){ transition-delay: 240ms; }
.reveal-group.is-visible .reveal-item:nth-child(5){ transition-delay: 320ms; }
.reveal-group.is-visible .reveal-item:nth-child(6){ transition-delay: 400ms; }
.reveal-group.is-visible .reveal-item:nth-child(5){ transition-delay: 320ms; }
.reveal-group.is-visible .reveal-item:nth-child(6){ transition-delay: 400ms; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero{
  padding: 56px 0 96px;
}
@media (min-width: 900px){
  .hero{ padding: 72px 0 128px; }
}
.hero-grid{
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px){
  .hero-grid{
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
html.js .hero-photo{
  opacity: 0;
  transform: scale(1.04);
}
.hero-photo.hero-loaded{
  animation: heroReveal 900ms cubic-bezier(.2,.6,.2,1) forwards;
}
html.js .hero-copy h1{
  opacity: 0;
  transform: translateY(16px);
}
.hero-copy h1.hero-loaded{
  animation: heroRise 900ms cubic-bezier(.2,.6,.2,1) forwards;
}
@keyframes heroReveal{
  from{ opacity: 0; transform: scale(1.04); }
  to{ opacity: 1; transform: scale(1); }
}
@keyframes heroRise{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------------------
   Grids
   ------------------------------------------------------------------------- */
.grid{
  display: grid;
  gap: 32px;
}
.grid-2{ grid-template-columns: 1fr; }
.grid-3{ grid-template-columns: 1fr; }
/* Item 12: team grid goes 2-up from the base (mobile), not 1-up — a
   7,700px single-column scroll was the worst offender on the site. */
.grid-4{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 620px){
  .grid-2{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px){
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-4{ grid-template-columns: repeat(4, 1fr); }
}

/* -------------------------------------------------------------------------
   Team cards (grid on team.html, preview band on index)
   ------------------------------------------------------------------------- */
.team-card{
  display: block;
  text-align: center;
}
.team-card .arch{ margin-bottom: 16px; }
.team-card h3{
  margin-bottom: 2px;
  font-size: clamp(1.15rem, 4.5vw, 1.9rem);
}
.team-card .role-line{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-60);
}
/* Item 12: chip lives on the portrait, bottom-center, so every card's
   name/role baseline lines up regardless of whether it has a badge. */
.owner-chip{
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--clay);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Item 6b: stylist specialties as scannable chips instead of a sentence
   that repeats the bio. */
.specialty-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 1.2em;
}
.specialty-chip{
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--clay);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   Service menu (fine-dining style)
   ------------------------------------------------------------------------- */
.menu-group{
  max-width: 720px;
  margin-bottom: 64px;
  scroll-margin-top: 120px;
}
.menu-group:last-child{ margin-bottom: 0; }
.menu-group-head{
  margin-bottom: 24px;
}
.menu-group-head .eyebrow{ margin-bottom: 0.15em; }

/* Item 5: slim sticky category jump-row, under the main nav. */
.menu-jump{
  position: sticky;
  top: 84px;
  z-index: 30;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.menu-jump-inner{
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 14px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-60);
  scrollbar-width: none;
}
.menu-jump-inner::-webkit-scrollbar{ display: none; }
.menu-jump-inner a{
  flex: 0 0 auto;
  white-space: nowrap;
  transition: color 200ms ease;
}
.menu-jump-inner a:hover{ color: var(--bronze); }
.menu-item{
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child{ border-bottom: none; }
.menu-item-name{
  flex: 1 1 auto;
  min-width: 0;
}
.menu-item-name .item-title{
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}
.menu-item-name .item-duration{
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-60);
  margin-top: 4px;
}
.menu-item-leader{
  flex: 1 1 24px;
  border-bottom: 1px dotted var(--wheat);
  margin: 0 4px;
  transform: translateY(-8px);
  min-width: 12px;
}
.menu-item-price{
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  white-space: nowrap;
}

@media (max-width: 479px){
  .menu-item{
    flex-wrap: nowrap;
  }
  .menu-item-name{
    flex: 1 1 auto;
    padding-right: 12px;
  }
  .menu-item-leader{
    display: none;
  }
  .menu-item-price{
    flex: 0 0 auto;
  }
}

.policy-block{
  margin-top: 80px;
  padding: 40px;
  border-radius: 16px;
  background: var(--sand);
  border: 1px solid var(--line);
}
.policy-block h4{ margin-bottom: 1em; }
.policy-block ul{
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--espresso-60);
}
.policy-block li{
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.policy-block li:last-child{ border-bottom: none; }

/* -------------------------------------------------------------------------
   Location cards
   ------------------------------------------------------------------------- */
.location-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-placeholder{
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background:
    repeating-linear-gradient(45deg, rgba(43,33,27,.04) 0 2px, transparent 2px 14px),
    var(--sand);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  transition: border-color 200ms ease;
}
.map-placeholder .label{ max-width: 24ch; transition: color 200ms ease; }
a.map-placeholder:hover{ border-color: var(--bronze); }
a.map-placeholder:hover .label{ color: var(--bronze); }

/* Item 7: Dayton card as the feature, Xenia balanced alongside. */
.locations-grid{
  display: grid;
  gap: 32px;
}
@media (min-width: 900px){
  .locations-grid{
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }
}

/* -------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------- */
.form-grid{
  display: grid;
  gap: 24px;
}
.form-row-2{
  display: grid;
  gap: 24px;
}
@media (min-width: 700px){
  .form-row-2{
    grid-template-columns: 1fr 1fr;
  }
}
.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field label{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-60);
}
.field label .req{
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.field input,
.field select,
.field textarea{
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 4px var(--blush);
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid{
  border-color: var(--clay);
}
.field-hint{
  font-size: 0.82rem;
  color: var(--espresso-60);
}

/* Item 8: submit button — full-width thumb target on mobile, natural
   width at desktop (the inline align-self:flex-start it replaced was on
   the wrong axis for a grid item and did nothing). */
.form-submit{
  justify-self: stretch;
}
@media (min-width: 700px){
  .form-submit{ justify-self: start; }
}

.success-panel{
  padding: 48px;
  border-radius: 16px;
  background: var(--sand);
  border: 1px solid var(--line);
  text-align: center;
  scroll-margin-top: 110px;
}
.success-panel .eyebrow{ margin: 0 auto 0.4em; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer{
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid{
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 700px){
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-logo img{
  height: 64px;
  width: auto;
  mix-blend-mode: multiply;
  margin-bottom: 16px;
}
.footer-nav{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}
.footer-nav a{ transition: color 200ms ease; }
.footer-nav a:hover{ color: var(--bronze); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--espresso-60);
}
.footer-login{
  color: var(--espresso-60);
  font-size: 0.78rem;
}
.footer-login:hover{ color: var(--bronze); }

/* -------------------------------------------------------------------------
   Focus states — keyboard visibility everywhere
   ------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.mt-0{ margin-top: 0; }
.center{ text-align: center; }
.stack{ display: flex; flex-direction: column; }
.muted{ color: var(--espresso-60); }
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------------------------
   Round 2 — hero location chips
   ------------------------------------------------------------------------- */
.hero-locations{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.loc-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--sand);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso-60);
  transition: border-color 200ms ease, color 200ms ease;
}
.loc-chip::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--bronze);
  flex: 0 0 auto;
}
.loc-chip-soon::before{ background: var(--wheat); }
.hero-locations a:hover .loc-chip{
  border-color: var(--bronze);
  color: var(--bronze);
}

/* -------------------------------------------------------------------------
   Round 2 — homepage service-category cards (unpriced)
   ------------------------------------------------------------------------- */
.fav-note{
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--espresso-60);
  margin: 8px 0 16px;
}
.fav-more{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
}

/* -------------------------------------------------------------------------
   Round 2 — services page: unpriced editorial service groups
   ------------------------------------------------------------------------- */
.service-desc{
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--espresso);
  margin: 0 0 0.8em;
  max-width: 64ch;
}
.service-quote{
  font-size: 0.92rem;
  color: var(--espresso-60);
  margin: 0;
  max-width: 64ch;
}
.service-note-global{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin: 0 0 56px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--sand);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--espresso);
}

/* -------------------------------------------------------------------------
   Round 2 — homepage "nails, too" band
   ------------------------------------------------------------------------- */
.nail-artists{ margin-top: 8px; }
.nail-artist{
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: center;
}
.nail-artist .arch{ margin: 0; }
.nail-artist-copy h3{ margin-bottom: 2px; }
.nail-artist-copy .role-line{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-60);
  margin: 0 0 12px;
}
.nail-artist-copy .btn{ margin-top: 18px; }
@media (max-width: 540px){
  .nail-artist{ grid-template-columns: 1fr; gap: 18px; }
  .nail-artist .arch{ max-width: 180px; }
}

/* -------------------------------------------------------------------------
   Round 2 — team group photo crop fix (only that image's frame)
   ------------------------------------------------------------------------- */
.arch-team-group{ aspect-ratio: 5 / 4; }
.arch-team-group img{ object-position: center 16%; }
@media (max-width: 620px){
  .arch-team-group{ aspect-ratio: 4 / 3; }
  .arch-team-group img{ object-position: center 14%; }
}

/* -------------------------------------------------------------------------
   Round 2 — gentle scroll parallax on arch photos (index only).
   Extra vertical headroom on the image so a ±16px shift never reveals the
   frame edge; the shift is set as a custom property by main.js.
   ------------------------------------------------------------------------- */
[data-parallax] img{
  height: calc(100% + 44px);
  margin-top: -22px;
  transform: translateY(var(--py, 0px));
  will-change: transform;
}
[data-parallax]:hover img{
  transform: translateY(var(--py, 0px)) scale(1.02);
}

/* -------------------------------------------------------------------------
   Round 2 — booking form photo attachments
   ------------------------------------------------------------------------- */
/* The visually-hidden file input must beat ".field input { width:100% }"
   (0,1,1) or its absolutely-positioned box overflows the viewport. */
.field input[type="file"].sr-only{ width: 1px; }
.photo-add{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px dashed var(--wheat);
  background: var(--cream);
  cursor: pointer;
  align-self: flex-start;
  transition: border-color 200ms ease, background 200ms ease;
}
.photo-add:hover{ border-color: var(--bronze); background: var(--sand); }
.photo-add[hidden]{ display: none; }
.photo-add-label{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
}
.photo-add-hint{
  font-size: 0.75rem;
  color: var(--espresso-60);
}
.photo-thumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.photo-thumbs:empty{ display: none; }
.photo-thumb{
  position: relative;
  width: 84px;
  height: 104px;
  border-radius: 999px 999px 8px 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
}
.photo-thumb img{ width: 100%; height: 100%; object-fit: cover; }
.photo-thumb-remove{
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(43,33,27,.72);
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}
.photo-thumb-remove:hover{ background: var(--espresso); }

/* -------------------------------------------------------------------------
   Booking-page availability picker (mocked, hashed by stylist + date)
   ------------------------------------------------------------------------- */
.avail-overview{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--sand);
}
.avail-overview img{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.avail-name{
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.avail-days{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  padding: 14px 2px 6px;
  scroll-snap-type: x proximity;
}
.avail-day{
  flex: 0 0 108px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 10px;
  background: #fff;
}
.avail-day-name{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso-60);
}
.avail-day-date{
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 2px 0 10px;
}
.avail-slot{
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--wheat);
  border-radius: 8px;
  padding: 6px 4px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.avail-slot:last-child{ margin-bottom: 0; }
.avail-slot:hover{ background: var(--sand); }
.avail-slot.picked{ background: var(--bronze); border-color: var(--bronze); color: #fff; }
.avail-none{
  font-size: 0.78rem;
  color: var(--espresso-60);
  padding: 6px 0;
}

/* -------------------------------------------------------------------------
   Stylist gallery + lightbox
   ------------------------------------------------------------------------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px){
  .gallery-grid{ grid-template-columns: repeat(4, 1fr); }
}
.gallery-tile{
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--sand);
  padding: 0;
}
.gallery-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.gallery-tile:hover img{ transform: scale(1.05); }
.gallery-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(43, 33, 27, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease;
}
.gallery-lightbox.open{ opacity: 1; visibility: visible; }
.gallery-lightbox img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.gallery-lightbox-close{
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.15);
  border: 1px solid rgba(250, 246, 239, 0.4);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal, .reveal-item,
  html.js .reveal, html.js .reveal-item{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-photo, .hero-copy h1{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .arch img{ transition: none; }
  [data-parallax] img,
  [data-parallax]:hover img{ transform: none !important; }
  *{ transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
