/* ================================================================
   CUTS & STYLES BY DURAN — VARIATION B
   "Modern upscale barber": charcoal + brass, sleek, contemporary
   grooming-brand feel. Dark UI, gold hairlines, refined restraint.
   All branding lives in the custom properties below.
   ================================================================ */
:root {
  /* client brand */
  --brand:  #c9a24b;   /* brass / gold */
  --accent: #8f3b3b;   /* muted oxblood — used sparingly */

  /* brass ramp */
  --brass:        #c9a24b;
  --brass-bright: #e4c37e;
  --brass-deep:   #9c7a2f;

  /* charcoal ramp (paper → ink is inverted here: dark base) */
  --char-950: #100e0b;   /* deepest — page base */
  --char-900: #16130f;
  --char-850: #1c1815;   /* raised surfaces / cards */
  --char-800: #221d18;
  --char-700: #2c261f;   /* hairline-lit edges */
  --line:     #342d24;   /* hairline / border on dark */

  /* text on dark */
  --cream:      #f4ede0;  /* primary text */
  --cream-soft: #b7ab97;  /* secondary text */
  --cream-dim:  #7d7362;  /* tertiary / captions */

  /* typefaces (loaded via Google Fonts <link> in each page head) */
  --font-display: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  /* legacy tokens mapped so any un-restyled template class still reads sanely */
  --ink: var(--cream);
  --ink-soft: var(--cream-soft);
  --paper: var(--char-950);
  --paper-deep: var(--char-900);
  --white: var(--char-950);
}

/* ================================================================
   Base
   ================================================================ */
html { scroll-behavior: smooth; }

body {
  background-color: var(--char-950);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  /* soft brass glow bleeding from the top, then settling to charcoal */
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(201, 162, 75, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #121009 0%, var(--char-950) 40%);
  background-attachment: fixed;
}

/* fine film-grain over everything, extremely subtle on dark */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.035;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  letter-spacing: 0.005em;
  font-weight: 600;
  color: var(--cream);
}

::selection { background: var(--brass); color: var(--char-950); }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* ================================================================
   Small atoms
   ================================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass));
}

/* thin numbered index label, gold outline */
.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass-deep);
  opacity: 0.55;
  user-select: none;
}

.rule-dotted { border: none; border-top: 1px solid var(--line); }

/* hairline divider with a gold center pip */
.hair {
  display: flex; align-items: center; gap: 1rem;
  color: var(--brass);
}
.hair::before, .hair::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--line));
}
.hair::after { background: linear-gradient(90deg, var(--line), transparent); }

/* ================================================================
   Buttons — flat, sharp, gold. No letterpress offset (that's Var A).
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-brand {
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  color: #17130b;
  box-shadow: 0 10px 30px -12px rgba(201, 162, 75, 0.6);
}
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(201, 162, 75, 0.75); }
.btn-brand:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); background: rgba(201,162,75,0.05); }
.btn-accent {
  background: transparent;
  color: var(--brass-bright);
  border-color: var(--brass);
}
.btn-accent:hover { background: var(--brass); color: #17130b; transform: translateY(-2px); }
.btn-sm { padding: 0.62rem 1.15rem; font-size: 0.72rem; }

/* ================================================================
   Header / nav
   ================================================================ */
.topbar {
  background: #0b0906;
  color: var(--cream-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.topbar a { color: var(--brass); text-decoration: none; }
.topbar a:hover { color: var(--brass-bright); }

.site-header {
  background: rgba(16, 14, 11, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.wordmark .spark { color: var(--brass); display: inline-flex; }
.wordmark .mark-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.28rem;
  font-weight: 600;
}

.navlink {
  position: relative;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-soft);
  text-decoration: none;
  padding: 0.25rem 0;
}
.navlink::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1px;
  background: var(--brass);
  transition: right 220ms ease;
}
.navlink:hover { color: var(--cream); }
.navlink:hover::after { right: 0; }
.navlink.active { color: var(--brass); }
.navlink.active::after { right: 0; }

/* mobile panel */
.nav-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--char-900);
}
.nav-panel.open { display: block; }
.nav-panel a {
  display: block;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav-panel a:hover { background: var(--char-850); color: var(--brass); }

.hamburger { border: 1px solid var(--line); border-radius: 2px; padding: 0.5rem 0.65rem; background: transparent; color: var(--cream); }
.hamburger:hover { border-color: var(--brass); color: var(--brass); }

/* ================================================================
   Hero
   ================================================================ */
.hero-display {
  font-size: clamp(2.9rem, 7.5vw, 6rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}

/* the dark showpiece panel — glow + monogram */
.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    radial-gradient(130% 90% at 30% 0%, rgba(201,162,75,0.14) 0%, transparent 55%),
    linear-gradient(160deg, #1c1712 0%, #100d0a 100%);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9), inset 0 1px 0 rgba(228,195,126,0.12);
  overflow: hidden;
}
.hero-panel .rays { position: absolute; inset: 0; opacity: 0.16; }

/* rotating gold seal */
.stamp { animation: spin 30s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream-soft);
  background: rgba(255,255,255,0.015);
}
.chip .dot { width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--brass); box-shadow: 0 0 8px var(--brass); }

/* barber-pole helix stripe, used as a vertical rule accent */
.pole {
  width: 12px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    -45deg,
    var(--brass) 0 8px,
    #17130b 8px 16px,
    var(--accent) 16px 24px,
    #17130b 24px 32px
  );
  box-shadow: inset 0 0 6px rgba(0,0,0,0.6), 0 0 0 1px var(--line);
}

/* ================================================================
   Marquee strip — thin gold rule, small caps
   ================================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0906;
  color: var(--brass);
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  white-space: nowrap;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: marquee 34s linear infinite;
  width: max-content;
}
.marquee-track .sep { color: var(--cream-dim); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================================================================
   Service / price cards
   ================================================================ */
.card-service {
  position: relative;
  background: linear-gradient(180deg, var(--char-850), var(--char-900));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.9rem 1.6rem 1.6rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.card-service:hover {
  transform: translateY(-4px);
  border-color: var(--brass-deep);
  box-shadow: 0 28px 50px -30px rgba(0,0,0,0.9), inset 0 1px 0 rgba(228,195,126,0.1);
}
.card-service .num {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
  opacity: 0.75;
}
.card-service .icon {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(201,162,75,0.16), transparent 70%);
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.card-service h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--cream); }
.card-service p { color: var(--cream-soft); font-size: 0.92rem; line-height: 1.6; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
}
.card-link:hover { color: var(--brass-bright); }

/* price list rows (services page) */
.price-list { border-top: 1px solid var(--line); }
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--line);
}
.price-row .p-name { font-family: var(--font-display); font-size: 1.28rem; color: var(--cream); font-weight: 600; }
.price-row .p-lead { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 1.25rem; }
.price-row .p-price { font-family: var(--font-body); font-weight: 700; color: var(--brass); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; white-space: nowrap; }
.price-row .p-desc { flex-basis: 100%; font-size: 0.82rem; color: var(--cream-dim); margin-top: 0.05rem; }

.price-group-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.35rem;
}

/* ================================================================
   Testimonials
   ================================================================ */
.quote-card {
  position: relative;
  background: linear-gradient(180deg, var(--char-850), var(--char-900));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.6rem 1.7rem 1.6rem;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.55;
}
.quote-card blockquote { font-family: var(--font-display); font-size: 1.24rem; line-height: 1.45; color: var(--cream); font-weight: 500; }
.quote-card figcaption { margin-top: 1.1rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim); }
.quote-card figcaption::before { content: "— "; color: var(--brass); }

.stars { color: var(--brass); letter-spacing: 0.2em; font-size: 0.82rem; }

/* ================================================================
   CTA band
   ================================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  background:
    radial-gradient(90% 140% at 80% 0%, rgba(201,162,75,0.14) 0%, transparent 55%),
    linear-gradient(160deg, #17130d 0%, #0d0b08 100%);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(201,162,75,0.05) 0 1px, transparent 1px 22px);
}
.cta-band .display { font-size: clamp(2rem, 5vw, 3.6rem); }

/* ================================================================
   Hours table & map placeholder
   ================================================================ */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.hours-table th { font-weight: 600; color: var(--cream); font-family: var(--font-body); letter-spacing: 0.02em; }
.hours-table td { text-align: right; color: var(--cream-soft); font-variant-numeric: tabular-nums; }
.hours-table tr.today th { color: var(--brass); }
.hours-table tr.today td { color: var(--brass-bright); }
.hours-table tr.closed td { color: var(--cream-dim); }

.map-ph {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 260px;
  overflow: hidden;
  background-color: #0c0a07;
  background-image:
    repeating-linear-gradient(0deg, rgba(201,162,75,0.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(201,162,75,0.05) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 92px);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -90%);
  color: var(--brass);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.7));
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, -90%); } 50% { transform: translate(-50%, -110%); } }
.map-label {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: var(--char-850);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
}

/* ================================================================
   Forms
   ================================================================ */
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #0c0a07;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.8rem 0.95rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--cream);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--cream-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.16);
}
.field select { appearance: none; }

/* ================================================================
   Numbered process / about lists
   ================================================================ */
.step { display: flex; gap: 1.15rem; align-items: flex-start; }
.step .step-num {
  flex: none;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass-deep);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(201,162,75,0.2), transparent 70%);
  color: var(--brass);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
}

details.faq {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--char-850), var(--char-900));
  padding: 0;
}
details.faq + details.faq { margin-top: 0.9rem; }
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
details.faq summary::after { content: "+"; font-family: var(--font-body); font-size: 1.35rem; color: var(--brass); }
details.faq[open] summary::after { content: "\2212"; }
details.faq .faq-body { padding: 0 1.3rem 1.2rem; color: var(--cream-soft); font-size: 0.94rem; line-height: 1.65; }

/* ================================================================
   Footer
   ================================================================ */
.site-footer {
  background: #0b0906;
  color: var(--cream-soft);
  border-top: 1px solid var(--brass-deep);
}
.site-footer .wordmark { color: var(--cream); }
.site-footer a { color: var(--cream-soft); text-decoration: none; }
.site-footer a:hover { color: var(--brass); }
.footer-links a { display: block; padding: 0.24rem 0; font-size: 0.92rem; }
.footer-fine { font-size: 0.76rem; color: var(--cream-dim); }

.footer-ghost {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3rem, 12vw, 9rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 75, 0.14);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* ================================================================
   Misc
   ================================================================ */
.tick { color: var(--brass); font-weight: 800; }

.reveal { animation: rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.reveal-1 { animation-delay: 90ms; }
.reveal-2 { animation-delay: 200ms; }
.reveal-3 { animation-delay: 330ms; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .stamp, .marquee-track, .map-pin, .reveal { animation: none !important; }
  html { scroll-behavior: auto; }
}
