﻿/* ============================================================
   D' Payano Barber Shop — site.css
   THEME — DO NOT BREAK (source of truth: legacy css/freelancer.css)
   ------------------------------------------------------------
   Primary brand:  burgundy #7f212f  (--red)     hover/accent: #ce132f (--red-bright)
   Secondary:      navy     #2c3e50  (--navy … --navy-darker)
   NEVER use teal/green (#18bc9c etc.) — that is dead stock-template
   source left in scss/_variables.scss. The scss/ folder is NOT the
   brand; freelancer.css is. Do not "restore" colors from scss/.
   CONTRAST RULES:
   - On light backgrounds  → use --red / --red-dark / --red-deep.
   - On navy/dark sections → use --red-light (#e56a76) or
     --red-bright (#ce132f). Raw --red is too dark to read on navy.
   - Text on --red buttons → #fff only. Stars stay --gold.
   - Open/closed status dots: green/red are semantic, not brand.
   To change the palette, edit ONLY the variables in :root below.
   ============================================================ */

:root {
  --red: #7f212f;
  --red-dark: #6b1c29;
  --red-deep: #451019;
  --red-light: #e56a76;
  --red-bright: #ce132f;
  --navy: #2c3e50;
  --navy-dark: #1a252f;
  --navy-darker: #111a22;
  --ink: #1c2733;
  --paper: #f6f8f9;
  --paper-darker: #eef2f4;
  --line: #dfe6ea;
  --muted: #5d6f80;
  --gold: #d9b36a;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(17, 26, 34, .07);
  --shadow-md: 0 10px 30px rgba(17, 26, 34, .12);
  --shadow-lg: 0 24px 60px rgba(17, 26, 34, .22);
  --font-display: "Bebas Neue", "Montserrat", sans-serif;
  --font-body: "Montserrat", -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* stop iOS inflating text in landscape */
  text-size-adjust: 100%;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section { position: relative; }
section[id], header[id] { scroll-margin-top: 84px; }

/* ---------- Minimal grid (replaces Bootstrap) ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.row { display: flex; flex-wrap: wrap; margin: 0 -0.7rem; }
[class*="col-"] { padding: 0 0.7rem; width: 100%; min-width: 0; }
.col-12 { width: 100%; }
@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
}
@media (min-width: 992px) {
  .col-lg-4 { width: 33.3333%; }
  .col-lg-5 { width: 41.6667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.3333%; }
  .col-lg-offset-1 { margin-left: 8.3333%; }
}
.align-center { align-items: center; }
.gap-y { row-gap: 1.4rem; }

/* ---------- Typography ---------- */
.display-1, .display-2, .display-3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: .95;
  margin: 0;
}
.display-1 { font-size: clamp(3.4rem, 9vw, 6.5rem); }
.display-2 { font-size: clamp(2.6rem, 6vw, 4rem); }
.display-3 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

.lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-red {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(127, 33, 47, .35);
}
.btn-red:hover, .btn-red:focus {
  background: var(--red-bright);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(127, 33, 47, .45);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover, .btn-ghost-light:focus {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost-dark:hover, .btn-ghost-dark:focus {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: .7rem 1.3rem; font-size: .74rem; }

/* ---------- Navbar ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding: 1.1rem 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
  background: linear-gradient(rgba(17, 26, 34, .55), transparent);
}
.site-nav.scrolled {
  background: rgba(17, 26, 34, .96);
  padding: .6rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #fff;
}
.brand img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--red-light); }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .08em;
  line-height: 1;
}
.brand .brand-sub {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .34em;
  color: var(--red-light);
  text-transform: uppercase;
  margin-top: .2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem 0;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red-bright);
  transition: width .2s ease;
}
.nav-links a:not(.btn):hover { color: #fff; }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.35rem;
  padding: .6rem .55rem;
  cursor: pointer;
}

body.nav-open { overflow: hidden; }

@media (max-width: 991px) {
  /* z-index keeps the toggle tappable above the open drawer (its close button) */
  .nav-toggle { display: inline-flex; position: relative; z-index: 1041; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh; /* iOS/Safari: track the real viewport, not the URL-bar one */
    width: min(78vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.4rem;
    padding: 5.5rem 2.2rem 2.4rem;
    background: var(--navy-darker);
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
    overflow-y: auto;
    z-index: 1040;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 1rem; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(17, 26, 34, .6);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1029;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  overflow: hidden;
  background: var(--navy-dark);
  color: #fff;
}
/* photo + darkening layer on their own element so the photo can slowly zoom
   (ken-burns); the element's own background stays as flat-navy fallback */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 26, 34, .78), rgba(17, 26, 34, .88)),
    url("../img/bg.jpg") center 30% / cover no-repeat;
  animation: heroZoom 16s ease-out forwards;
}
.hero > .container { position: relative; z-index: 1; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 48px,
    #fff 48px 96px,
    var(--navy) 96px 144px
  );
  opacity: .85;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.6rem; /* clears the est-stamp that pokes above the card when stacked */
  align-items: center;
}
.hero-copy { max-width: 40rem; }
@media (min-width: 992px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, 415px); gap: clamp(3rem, 6vw, 5.5rem); }
}
.hero-badge {
  width: 104px; height: 104px;
  border-radius: 50%;
  border: 3px solid var(--red-light);
  object-fit: cover;
  box-shadow: 0 0 0 8px rgba(229, 106, 118, .16), var(--shadow-md);
  margin-bottom: 1.6rem;
}
.hero h1 span { color: var(--red-light); }
.hero-sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  max-width: 34rem;
  margin: 1.4rem 0 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.rating {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.rating .stars { color: var(--gold); font-size: .95rem; letter-spacing: .1em; }
.rating .score { font-weight: 800; font-size: 1.05rem; }
.rating .count { color: rgba(255, 255, 255, .65); font-size: .85rem; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: .45rem .95rem;
}
.trust-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 179, 106, .25);
}
.trust-chip.open .dot { background: #2ecc8f; box-shadow: 0 0 0 3px rgba(46, 204, 143, .25); }
.trust-chip.closed .dot { background: #e67e78; box-shadow: 0 0 0 3px rgba(230, 126, 120, .25); }

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}
.hero-card ul { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .15);
  font-size: .88rem;
}
.hero-card li span:first-child { color: rgba(255, 255, 255, .65); }
.hero-card li span:last-child { font-weight: 700; }
.hero-card li.today span { color: var(--red-light); }

/* ---------- Sections ---------- */
.section-pad { padding: 6.5rem 0; }
.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after,
.section-head.center .eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); }

/* ---------- Services ---------- */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .service-img { position: relative; overflow: hidden; }
.service-card .service-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-card .service-img .icon {
  position: absolute;
  left: 1.4rem; bottom: -1.4rem;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--red);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}
.service-body { padding: 2.4rem 1.8rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: .06em;
  margin-bottom: .7rem;
}
.service-body p { color: var(--muted); line-height: 1.7; font-size: .95rem; margin-bottom: 1.1rem; }
.service-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
}
.service-body .tags span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-deep);
  background: rgba(127, 33, 47, .1);
  padding: .3rem .7rem;
  border-radius: 999px;
}
.pricing-note {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--muted);
  font-size: .92rem;
}
.pricing-note a { color: var(--red-dark); font-weight: 700; }

/* ---------- About ---------- */
.about {
  background: var(--navy-dark);
  color: #fff;
}
.about .eyebrow { color: var(--red-light); }
.about .lead-text { color: rgba(255, 255, 255, .75); }
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; display: block; }
.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}
.about-photo .photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.3rem;
  background: linear-gradient(transparent, rgba(17, 26, 34, .92));
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red-light);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}
.stat {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 1.1rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
  letter-spacing: .05em;
}
.stat span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.why-item .icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--red-dark);
  background: rgba(127, 33, 47, .1);
  margin-bottom: 1.2rem;
}
.why-item h3 { font-size: 1rem; font-weight: 800; margin-bottom: .55rem; }
.why-item p { color: var(--muted); font-size: .9rem; line-height: 1.65; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { background: var(--paper-darker); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-grid figure.wide { grid-column: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform .5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.3rem 1rem;
  background: linear-gradient(transparent, rgba(17, 26, 34, .9));
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure.wide { grid-column: span 2; }
}

/* ---------- Reviews ---------- */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.reviews-summary { display: flex; align-items: center; gap: 1.1rem; }
.reviews-summary .big-score {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--navy);
}
.reviews-summary .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .12em; }
.reviews-summary small { display: block; color: var(--muted); }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: .4rem; right: 1.3rem;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(229, 106, 118, .3);
}
.review-card .stars { color: var(--gold); font-size: .85rem; letter-spacing: .12em; margin-bottom: 1rem; }
.review-card blockquote {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink);
}
.review-card .who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.review-card .who i {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--red-light);
  display: grid;
  place-items: center;
  font-size: .8rem;
}
.review-card .who strong { display: block; font-size: .88rem; }
.review-card .who span { font-size: .74rem; color: var(--muted); }
.translated { display: block; font-size: .72rem; color: var(--muted); font-style: italic; margin-top: .5rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: .9rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: .97rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform .2s ease; color: var(--red-dark); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--red-deep); }
.faq-item .faq-body { padding: 0 1.5rem 1.3rem; color: var(--muted); line-height: 1.7; font-size: .93rem; }
.faq-item .faq-body a { color: var(--red-dark); font-weight: 700; }

/* ---------- Visit / Map ---------- */
.visit { background: var(--navy-darker); color: #fff; }
.visit .eyebrow { color: var(--red-light); }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 1.6rem; }
.hours-table td {
  padding: .8rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .15);
  font-size: .95rem;
}
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr.today td { color: var(--red-light); font-weight: 800; }
.hours-table tr.closed-day td:last-child { color: rgba(255, 255, 255, .45); }
.visit-card { max-width: 460px; }
.visit-card .address { line-height: 1.7; color: rgba(255, 255, 255, .8); margin-bottom: 1.6rem; }
.visit-card .address strong { color: #fff; }
.visit-card .areas { font-size: .85rem; color: rgba(255, 255, 255, .6); margin: -1rem 0 1.8rem; }
.visit-card .areas i { color: var(--red-light); margin-right: .35rem; }
.visit-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .12);
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(69, 16, 25, .94), rgba(69, 16, 25, .94)),
    url("../img/bg.jpg") center / cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 6.5rem 0;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 48px,
    #fff 48px 96px,
    var(--navy) 96px 144px
  );
  opacity: .85;
}
.final-cta > .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, .85); max-width: 34rem; margin: 1.2rem auto 2.4rem; font-size: 1.05rem; line-height: 1.7; }
/* gap keeps the two CTA buttons from sitting flush/overlapping when they wrap on mobile */
.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.final-cta .phone-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .1em;
  color: #fff;
  display: block;
  margin-top: 1.6rem;
  text-decoration: none;
}
.final-cta .phone-big:hover { color: #f2c9cf; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1218; color: rgba(255, 255, 255, .6); padding: 3.5rem 0 5.5rem; }
.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer h4 {
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; font-size: .88rem; }
.site-footer a { color: rgba(255, 255, 255, .65); text-decoration: none; }
.site-footer a:hover { color: var(--red-light); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  padding-top: 1.8rem;
  font-size: .78rem;
}

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1040;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom, 0px); /* iPhone home indicator */
}
.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem .5rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.sticky-bar .call { background: var(--red); color: #ffffff; }
.sticky-bar .directions { background: var(--navy-dark); color: #fff; }
@media (max-width: 991px) {
  .sticky-bar { display: grid; }
  body { padding-bottom: 58px; }
}

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed;
  right: 1.4rem; bottom: 5rem;
  z-index: 1035;
  width: 44px; height: 44px;
  border-radius: 8px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--red); color: #ffffff; }
@media (max-width: 991px) { .to-top { bottom: 4.8rem; right: 1rem; } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Outlined display watermarks (modern barbershop flavor) ---------- */
.section-wm { overflow: hidden; }
.section-wm > .container { position: relative; z-index: 1; }
.wm {
  position: absolute;
  top: 1rem;
  right: -1.2rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 1;
  letter-spacing: .08em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(127, 33, 47, .14);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.wm-light { -webkit-text-stroke-color: rgba(255, 255, 255, .12); }
.wm-center { left: 50%; right: auto; transform: translateX(-50%); top: .4rem; }
@supports not (-webkit-text-stroke: 1px #000) { .wm { display: none; } }
@media (max-width: 767px) {
  .wm { font-size: clamp(3.2rem, 16vw, 6rem); top: .4rem; opacity: .8; }
}

/* ---------- Ticker band (under hero) ---------- */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: .95rem 0;
  border-bottom: 4px solid var(--navy);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
  white-space: nowrap;
}
.ticker-group span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .22em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
}
.ticker-group span::after {
  content: "\2726";
  color: var(--red-light);
  font-size: .8rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Steps strip (how it works) ---------- */
.steps { background: #fff; border-bottom: 1px solid var(--line); padding: 4.5rem 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.4rem;
}
.step { position: relative; padding-top: .4rem; }
.step .num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--red);
  opacity: .28;
  position: absolute;
  top: -1.2rem; right: 0;
}
.step h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: .5rem; letter-spacing: .02em; }
.step p { color: var(--muted); font-size: .92rem; line-height: 1.65; margin: 0; }
.step .step-line {
  width: 44px; height: 3px;
  background: var(--red);
  margin-bottom: 1.1rem;
}

/* ---------- EST stamp (hero) ---------- */
.hero-card { position: relative; }
.est-stamp {
  position: absolute;
  top: -52px; right: -6px;
  width: 112px; height: 112px;
  animation: stamp-spin 22s linear infinite;
  filter: drop-shadow(0 6px 14px rgba(17, 26, 34, .4));
}
.est-stamp text {
  fill: var(--red-light);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.est-stamp .center {
  fill: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 1px;
}
@keyframes stamp-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 575px) { .est-stamp { width: 92px; height: 92px; top: -42px; } }

/* ---------- About pull-quote ---------- */
.about-quote {
  margin: 2rem 0 0;
  padding: 1.4rem 0 0 1.6rem;
  border-left: 3px solid var(--red-light);
}
.about-quote p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  margin: 0 0 .6rem;
}
.about-quote cite {
  color: var(--red-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-style: normal;
}

/* ---------- Service price heads (cards) ---------- */
.service-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .05em;
  color: var(--red-deep);
  white-space: nowrap;
}

/* ---------- Menu board (bookable services) ---------- */
.menu-board {
  margin-top: 3.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.4rem 2rem 2rem;
}
.menu-head { text-align: center; margin-bottom: 1.8rem; }
.menu-head p { color: var(--muted); font-size: .92rem; margin: .4rem 0 0; }
.menu-list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.menu-list li + li { border-top: 1px dashed var(--line); }
.menu-list a {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .95rem .4rem;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s ease, padding .15s ease;
  border-radius: 6px;
}
.menu-list a:hover { background: rgba(127, 33, 47, .05); padding-left: .9rem; }
.menu-name {
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-name em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .06em;
  margin-left: .5rem;
}
.menu-dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-4px);
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .05em;
  color: var(--red-deep);
}
@media (max-width: 575px) {
  .menu-name { white-space: normal; }
  .menu-board { padding: 1.8rem 1.2rem 1.4rem; }
}

/* ---------- Team / barber section ---------- */
.team-card {
  background: var(--navy-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 48px,
    #fff 48px 96px,
    var(--navy) 96px 144px
  );
  opacity: .85;
}
.team-avatar {
  position: relative;
  width: 128px; height: 128px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(229, 106, 118, .16), var(--shadow-md);
}
.team-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  opacity: .35;
}
.team-initial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: #fff;
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: .1em;
  color: #fff;
  margin: 0 0 .3rem;
}
.team-title {
  color: var(--red-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}
.team-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.team-badges span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: .4rem .85rem;
}
.team-badges i { color: var(--red-light); }

/* ---------- Mobile refinements ---------- */
@media (max-width: 767px) {
  .section-pad { padding: 4.5rem 0; }
  .final-cta { padding: 4.5rem 0; }
  .steps { padding: 3.5rem 0; }
  .map-frame, .map-frame iframe { min-height: 340px; }
}
@media (max-width: 575px) {
  .final-ctas { flex-direction: column; align-items: stretch; }
  .about-stats { gap: .6rem; margin-top: 1.6rem; }
  .stat { padding: .9rem .5rem; }
  .stat strong { font-size: 1.5rem; }
  .stat span { font-size: .6rem; letter-spacing: .08em; }
  .hero-card { padding: 1.6rem 1.4rem; }
  .reviews-summary .big-score { font-size: 3rem; }
}
@media (max-width: 479px) {
  /* brand + hamburger overflow on narrow phones — compact the brand */
  .brand { gap: .55rem; }
  .brand img { width: 36px; height: 36px; }
  .brand .brand-name { font-size: 1.25rem; }
  .brand .brand-sub { letter-spacing: .18em; font-size: .54rem; }
  .display-1 { font-size: 3.1rem; }
}
@media (max-height: 620px) {
  /* landscape phones: hero eats the screen */
  .hero { padding: 7rem 0 4.5rem; }
  .hero-badge { width: 80px; height: 80px; margin-bottom: 1rem; }
}

/* ============================================================
   AJAX busy state (js/ajax-forms.js — admin + booking pages):
   spinner overlay while a form submits in the background;
   page controls are frozen.
   ============================================================ */
#ajax-busy {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 26, 34, .45);
}
.ajax-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .25);
  border-top-color: #fff;
  animation: ajax-spin .8s linear infinite;
}
@keyframes ajax-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ajax-spinner { animation-duration: 1.6s; } }
body.ajax-busy button,
body.ajax-busy select,
body.ajax-busy input { pointer-events: none; }
body.ajax-busy .btn { opacity: .55; }
