/* =========================================================================
   DIRECTION D — "NOIR"
   Built backwards from the studio portrait. Every colour here was measured
   off that photograph rather than chosen:

     wall / ground   #191715      amber light (mid)  #a07f57
     apron black     #1e1e21      amber light (peak) #fedda4
     wood shelving   #866935      leather chair      #2e241d
     skin            #996859

   So the page and the photograph are the same room. Where Atelier (A) is cool
   brass and engraved symmetry, Noir is warm, photographic and cinematic — the
   signature motif is the vertical amber light strip from the salon wall.
   ========================================================================= */

:root {
  --bg:        #141210;
  --bg-2:      #191715;   /* the wall in the photo */
  --surface:   #201d1a;
  --leather:   #2e241d;
  --wood:      #866935;
  --line:      rgba(232,184,119,.17);
  --line-2:    rgba(232,184,119,.08);
  --fg:        #f4ece0;
  --fg-2:      rgba(244,236,224,.68);
  --fg-3:      rgba(244,236,224,.42);
  --accent:    #e8b877;   /* the amber light */
  --accent-hi: #fedda4;   /* its highlight */
  --accent-fg: #17130f;
  --ok:        #86b083;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --tracking-k: .22em;

  /* the amber strip motif — one width and one distance to the text, everywhere */
  --strip-w: 3px;
  --strip-gap: clamp(1.15rem, 2.4vw, 2.3rem);   /* ~18px on a phone, ~35px wide */

  --r-sm: 6px; --r: 14px; --r-lg: 22px; --r-pill: 999px;
  --maxw: 1300px;
  --shadow: 0 2px 10px rgba(0,0,0,.4), 0 22px 60px rgba(0,0,0,.5);
}

body {
  font-weight: 300;
  background-image:
    radial-gradient(1000px 700px at 84% -10%, rgba(232,184,119,.13), transparent 60%),
    radial-gradient(700px 520px at 0% 46%, rgba(134,105,53,.09), transparent 62%);
  background-attachment: fixed;
}

/* The recurring motif: a soft vertical amber light strip, like the wall LEDs.
   One geometry everywhere — same width, same distance from the text, and only
   ever as tall as the heading block it marks. It attaches two ways:

     .strip-h    the marked block itself holds the gap; the strip pins to its
                 inline start. Section headers work like this.
     .strip-col  a taller column already holds the gap, so its body copy lines
                 up with the heading; the strip hangs back out of the .strip-h
                 heading inside it and stops where the heading stops.

   Nothing else may position a .strip: an unpositioned one falls back to its
   static position, which lands it right against the first letter. */
.strip {
  position: absolute; inset-block: 0; width: var(--strip-w); border-radius: var(--strip-w);
  background: linear-gradient(to bottom, transparent, var(--accent-hi) 22%, var(--accent) 55%, transparent);
  opacity: .5; filter: blur(.4px);
}
.strip::after {
  content: ''; position: absolute; inset: -26px -16px;
  background: radial-gradient(closest-side, rgba(232,184,119,.22), transparent 72%);
}

.strip-h { position: relative; padding-inline-start: var(--strip-gap); }
.strip-h > .strip { inset-inline-start: 0; }

.strip-col { position: relative; padding-inline-start: var(--strip-gap); }
.strip-col > .strip-h { padding-inline-start: 0; }
.strip-col > .strip-h > .strip { inset-inline-start: calc(var(--strip-gap) * -1); }

.kicker { color: var(--accent); }
.btn { font-weight: 500; letter-spacing: .02em; }
.btn:not(.btn-ghost) {
  background: linear-gradient(180deg, var(--accent-hi), var(--accent));
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 26px rgba(232,184,119,.2);
}
.btn-ghost { box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover:not(:disabled) { background: rgba(232,184,119,.09); }

/* ------------------------------------------------------------------ header */
.hdr { position: sticky; top: 0; z-index: 100;
       transition: background-color .4s var(--ease), backdrop-filter .4s, box-shadow .4s; }
.hdr.is-stuck { background: rgba(20,18,16,.84); backdrop-filter: blur(16px) saturate(1.25);
                box-shadow: 0 1px 0 var(--line-2); }
.hdr-in { display: flex; align-items: center; gap: 1.4rem; padding-block: 1.05rem; }

.brand { flex: none; }
.brand-lockup {
  display: block; width: 186px; height: 48px;
  object-fit: contain; object-position: left center;
}
[dir="rtl"] .brand-lockup { object-position: right center; }

.nav { display: flex; align-items: center; gap: 1.9rem; margin-inline-start: auto; }
.nav > a:not(.btn) { font-size: .86rem; letter-spacing: .05em; color: var(--fg-2);
                     position: relative; padding-block: .35rem; transition: color .25s; }
.nav > a:not(.btn)::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent-hi), var(--accent));
  transform: scaleX(0); transition: transform .34s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--fg); }
.nav > a:not(.btn):hover::after, .nav > a.is-active::after { transform: scaleX(1); }
.nav > a.is-active { color: var(--accent); }
.nav-book { padding: .74em 1.5em; font-size: .82rem; }

.hdr-r { display: flex; align-items: center; gap: .8rem; }
.lang { background: rgba(232,184,119,.08); }
.burger { display: none; width: 42px; height: 42px; flex-direction: column;
          justify-content: center; align-items: center; gap: 6px; }
.burger span { width: 22px; height: 1.5px; background: var(--fg); border-radius: 2px;
               transition: transform .3s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 920px) {
  .burger { display: flex; }
  .nav { position: fixed; inset: 0; z-index: 99; flex-direction: column; justify-content: center;
         gap: 2rem; background: rgba(20,18,16,.97); backdrop-filter: blur(18px);
         opacity: 0; pointer-events: none; transition: opacity .32s var(--ease); }
  .nav.is-open { opacity: 1; pointer-events: auto; }
  .nav > a:not(.btn) { font-size: 1.3rem; font-family: var(--font-display); }
}

/* -------------------------------------------------------------------- hero
   The portrait is the page. Copy sits in the dark left third, exactly where
   the photograph's own background falls away. */
.hero { position: relative; overflow: hidden; }
.hero-in {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center;
  padding-block: clamp(1.6rem, 4vw, 3.6rem) clamp(2rem, 4vw, 3rem);
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem; }
.hero-head { display: flex; flex-direction: column; gap: 1.3rem; }
.hero-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.9rem, 7.2vw, 5.8rem); line-height: .98; letter-spacing: -.014em;
}
.hero-h1 .l1, .hero-h1 .l2 { display: block; }
.hero-h1 .l2 {
  font-style: italic;
  background: linear-gradient(96deg, var(--accent-hi), var(--wood) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--fg-2); font-size: clamp(1rem, 1.3vw, 1.1rem); max-width: 44ch; }
.hero-cta { display: flex; gap: .7rem; flex-wrap: wrap; }
.hero-langs {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; letter-spacing: .06em; color: var(--accent);
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: .42em 1em;
}
.hero-open { display: flex; align-items: center; gap: .6rem; font-size: .84rem; color: var(--fg-3); }

.hero-fig { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-fig img { width: 100%; }
/* warm gradient scrim so the headline side and the photo side share one light */
.hero-fig::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(20,18,16,.72), transparent 46%);
}
[dir="rtl"] .hero-fig::after { background: linear-gradient(260deg, rgba(20,18,16,.72), transparent 46%); }
/* The open/closed badge used to float over the portrait. It read as a UI chip
   stuck on a photograph, and the same status is stated in Visit. */

.hero-stats {
  display: flex; gap: clamp(1.6rem, 4vw, 3.6rem); flex-wrap: wrap;
  padding-top: 1.6rem; padding-bottom: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-2);
}
.hero-stats div { display: flex; flex-direction: column; gap: .15rem; }
.hero-stats dt { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.7rem);
                 color: var(--accent); line-height: 1; }
.hero-stats dd { font-size: .74rem; letter-spacing: .11em; text-transform: uppercase; color: var(--fg-3); }

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-fig { order: -1; }
}

/* ---------------------------------------------------------------- sections */
.sec { padding-block: clamp(3.2rem, 7vw, 6.2rem); position: relative; }
.sec-h { margin-bottom: clamp(1.8rem, 3.5vw, 3rem); max-width: 62ch; }
/* the row variant holds a .strip-h block of its own, so it carries no gap */
.sec-h-row { display: flex; align-items: flex-end; justify-content: space-between;
             gap: 1.6rem; flex-wrap: wrap; max-width: none; padding-inline-start: 0; }
.sec-t { font-family: var(--font-display); font-weight: 400;
         font-size: clamp(2rem, 4.4vw, 3.5rem); line-height: 1.04;
         letter-spacing: -.012em; margin-top: .55rem; }
.sec-s { color: var(--fg-2); margin-top: .8rem; max-width: 52ch; }

/* ----------------------------------------------------------------- gallery */
/* .craft is now only the tinted band the gallery sits on — the close-ups it
   used to hold are entries in GALLERY. */
.craft { background: var(--bg-2); border-block: 1px solid var(--line-2); }
.gal-filter { color: var(--fg-2); box-shadow: inset 0 0 0 1px var(--line); }
.gal-filter.is-on { background: linear-gradient(180deg, var(--accent-hi), var(--accent)); color: var(--accent-fg); }
.gal-grid { grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); }
.gal-item { box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.ig-line { margin-top: 2.2rem; text-align: center; }
.ig-line a { display: inline-flex; align-items: center; gap: .5rem; color: var(--fg-3);
             font-size: .88rem; letter-spacing: .06em; transition: color .25s; }
.ig-line a:hover { color: var(--accent); }

/* ---------------------------------------------------------------- services
   A menu, not cards: each service is one ruled line — name, dotted leader,
   price — like a printed tariff, with the description set small underneath. */
.svc-list { display: block; max-width: 860px; border-top: 1px solid var(--line-2); }
.svc { background: none; border: 0; border-bottom: 1px solid var(--line-2); border-radius: 0;
       padding: clamp(.75rem, 1.6vw, 1rem) .35rem; gap: .28rem;
       transition: background-color .3s, background .3s; }
.svc:hover { transform: none; box-shadow: none;
             background: linear-gradient(90deg, rgba(232,184,119,.06), transparent 70%); }
.svc.is-feature { border-inline-start: 2px solid var(--accent); padding-inline-start: 1.05rem;
                  background: linear-gradient(90deg, rgba(232,184,119,.09), transparent 75%); }
.svc.is-popular::after { display: none; }
.svc.is-popular .svc-n::before { content: '★'; color: var(--accent); font-size: .62em;
                                 margin-inline-end: .55em; }
.svc-h { align-items: center; gap: .7rem; }
.svc-i { background: var(--accent); width: 18px; height: 18px; }
.svc-n { font-family: var(--font-display); font-weight: 400;
         font-size: clamp(1.08rem, 1.6vw, 1.28rem);
         display: flex; align-items: center; min-width: 0; }
.svc-n::after { content: ''; flex: 1; min-width: 2.5ch; margin-inline: .9em;
                border-bottom: 1px dotted color-mix(in oklab, var(--fg-3) 45%, transparent);
                transform: translateY(.3em); }
.svc-p { font-family: var(--font-display); font-size: clamp(1.08rem, 1.6vw, 1.28rem);
         color: var(--accent); }
.svc-d { max-width: 60ch; font-size: .88rem; }
.svc-d, .svc-f { padding-inline-start: calc(18px + .7rem); }
.svc-f { border-top: 0; padding-top: 0; }
.svc-t { font-size: .74rem; }
.svc-b { color: var(--accent); font-size: .8rem; }
@media (max-width: 560px) { .svc-d, .svc-f { padding-inline-start: 0; } }

/* ------------------------------------------------------------ before/after */
.ba-sec { background: var(--bg-2); border-block: 1px solid var(--line-2); }
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ba-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.ba-head { display: flex; flex-direction: column; gap: 1rem; }
.ba-copy .sec-t { margin-top: .3rem; }
.ba { box-shadow: var(--shadow); }
.ba-handle { background: linear-gradient(180deg, var(--accent-hi), var(--accent)); color: var(--accent-fg); }
.ba-line { background: var(--accent-hi); box-shadow: 0 0 14px rgba(254,221,164,.5); }
.ba-tag { background: rgba(20,18,16,.72); }
@media (max-width: 860px) { .ba-wrap { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------- about */
.about { background: var(--bg-2); border-block: 1px solid var(--line-2); }
.about-wrap { display: grid; grid-template-columns: .85fr 1.15fr;
              gap: clamp(2rem, 5vw, 4.4rem); align-items: center; }
.about-fig { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-fig img { width: 100%; }
.about-copy { display: flex; flex-direction: column; gap: 1rem; }
.about-copy p { color: var(--fg-2); max-width: 56ch; }
.about-langs { color: var(--accent) !important; }
.about-sig { font-family: var(--font-display); font-style: italic; font-size: 1.95rem;
             color: var(--fg) !important; opacity: .85; margin-top: .3rem; }
@media (max-width: 860px) { .about-wrap { grid-template-columns: 1fr; } .about-fig { max-width: 430px; } }

/* -------------------------------------------------------------------- quiz */
.quiz-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.quiz { background: linear-gradient(165deg, var(--surface), var(--bg-2)); border-color: var(--line-2); }
.quiz-prog span { background: linear-gradient(90deg, var(--accent-hi), var(--accent)); }
.quiz-opt { box-shadow: inset 0 0 0 1px var(--line-2); }
.quiz-opt:hover { box-shadow: inset 0 0 0 1px var(--accent); background: rgba(232,184,119,.07); }
.quiz-res { color: var(--accent); }
@media (max-width: 860px) { .quiz-wrap { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- reviews */
.rev { background: linear-gradient(165deg, var(--surface), var(--bg-2)); border-color: var(--line-2); }
.rev-stars { color: var(--accent); }
.rev p { font-family: var(--font-display); font-size: 1.16rem; line-height: 1.55; color: var(--fg); }

/* ----------------------------------------------------------------- booking */
.book-sec { background: var(--bg-2); border-block: 1px solid var(--line-2); }
.bk { background: linear-gradient(165deg, var(--surface), var(--bg)); }
.bk-step.is-on .bk-step-n { background: linear-gradient(180deg, var(--accent-hi), var(--accent)); color: var(--accent-fg); }
.bk-svc.is-sel, .bk-day.is-sel { box-shadow: inset 0 0 0 2px var(--accent); background: rgba(232,184,119,.1); }
.bk-slot.is-sel { background: linear-gradient(180deg, var(--accent-hi), var(--accent)); color: var(--accent-fg); }
.bk-field input, .bk-field textarea { background: var(--bg); border-color: var(--line-2); }
.bk-field input:focus, .bk-field textarea:focus { border-color: var(--accent); }
.bk-summary { background: var(--bg); border-color: var(--line-2); }
.bk-total dd, .bk-done h3 { color: var(--accent); }
.bk-done-tick svg { stroke: var(--accent); }

/* ------------------------------------------------------------------- visit */
.visit-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 3.6rem); align-items: start; }
.visit-addr { font-style: normal; color: var(--fg-2); line-height: 1.85; margin-top: 1.3rem; }
.visit-addr strong { color: var(--fg); font-weight: 500; }
.visit-addr a { color: var(--accent); }
.visit-actions { display: flex; gap: .7rem; margin-top: 1.2rem; flex-wrap: wrap; }
.visit-sub { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
             margin-top: 2.2rem; margin-bottom: .5rem;
             font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
             color: var(--fg-3); font-weight: 400; }
.hrs-row.is-today { color: var(--accent); }
.visit-side { display: grid; gap: 1rem; }
.card { padding: 1.6rem; border: 1px solid var(--line-2); border-radius: var(--r);
        background: linear-gradient(165deg, var(--surface), var(--bg-2)); }
.card h3 { font-family: var(--font-display); font-size: 1.34rem; font-weight: 400; margin-bottom: .35rem; }
.card p { color: var(--fg-2); font-size: .9rem; margin-bottom: 1rem; }
.loyal-dot.is-on { background: var(--accent); }
.loyal-count { font-size: .8rem !important; color: var(--fg-3) !important; margin: .8rem 0 0 !important;
               letter-spacing: .09em; }
.loyal-reward { color: var(--accent) !important; }
@media (max-width: 860px) { .visit-wrap { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ footer */
.foot { border-top: 1px solid var(--line-2); padding-block: clamp(2.6rem, 5vw, 4rem); background: var(--bg-2); }
.foot-in { display: grid; gap: 1.2rem; justify-items: center; text-align: center; }
.foot-mark { display: block; width: 62px; height: 62px; object-fit: contain; }
.foot-made { color: var(--accent); font-size: .84rem; letter-spacing: .08em; }
.foot-links { display: flex; gap: 1.8rem; }
.foot-links a { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
                color: var(--fg-2); transition: color .25s; }
.foot-links a:hover { color: var(--accent); }
.foot-legal { font-size: .74rem; color: var(--fg-3); }

/* --------------------------------------------------- coverage / area chips
   He has no shopfront, so the "Visit" block lists where he travels instead. */
.visit-areanote { color: var(--fg-2); margin-top: 1.2rem; max-width: 46ch; }
.area-chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
  list-style: none; padding: 0; margin-top: 1.1rem;
}
.area-chips li {
  font-size: .82rem; color: var(--fg-2);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .38em 1em; background: rgba(232,184,119,.05);
}
