/* =========================================================
   Brand font — the "Fresh Heads" wordmark face
   ========================================================= */
@font-face {
  font-family: 'Copperplate Std Bold Condensed';
  src: url('../brand-assets/fonts/CopperplateGothicCondensedBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   Fresh Heads — "The Shop Window" design tokens
   ========================================================= */
:root {
  --forest: #283724;        /* brand primary */
  --forest-deep: #1a2517;
  --forest-mid: #35492e;
  --off-white: #FEFFFA;     /* brand secondary */
  --parchment: #f2efe3;
  --brass: #c39a4b;         /* gilt */
  --brass-light: #dcb96e;
  --brass-text: #816631;    /* darker gilt for text on light backgrounds, meets WCAG contrast */
  --oxblood: #6e2b25;       /* barber-pole red, used sparingly */
  --sage-muted: #59684f;
  --line: rgba(40, 55, 36, 0.16);
  --line-light: rgba(254, 255, 250, 0.22);

  --font-display: 'Libre Caslon Text', 'Times New Roman', serif;
  --font-label: 'Archivo Narrow', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-brand: 'Copperplate Std Bold Condensed', 'Archivo Narrow', sans-serif;

  --container-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--forest-deep);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 32px; }

::selection { background: var(--brass); color: var(--forest-deep); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; color: var(--forest-deep); }

/* =========================================================
   Type utilities
   ========================================================= */
.section-title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--brass-text); }
.section-title-light { color: var(--off-white); }
.section-title-light em { color: var(--brass); }
.section-lede {
  max-width: 600px;
  color: var(--sage-muted);
  font-size: 1.04rem;
  margin: 0 0 48px;
}
.section-lede-light { color: rgba(254, 255, 250, 0.72); }

/* Section label: hairline — ✂ LABEL ✂ — hairline */
.rule-label {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 26px;
}
.rule-label::before, .rule-label::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.rule-label span {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.76rem;
  color: var(--oxblood);
  white-space: nowrap;
}
.rule-label-light::before, .rule-label-light::after { background: var(--line-light); }
.rule-label-light span { color: var(--brass-light); }

.section { padding: 110px 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 16px 32px;
  min-height: 44px;
  border: 1.5px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn-gilt { background: var(--brass); color: var(--forest-deep); }
.btn-gilt:hover { background: var(--brass-light); box-shadow: 4px 4px 0 rgba(26, 37, 23, 0.35); }
.btn-ghost { border-color: var(--line-light); color: var(--off-white); }
.btn-ghost:hover { border-color: var(--off-white); }
.btn-outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-outline:hover { background: var(--forest); color: var(--off-white); }
.btn-outline:disabled, .btn-gilt:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }
.btn-small { padding: 10px 20px; font-size: 0.74rem; }

/* =========================================================
   Nav
   ========================================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 22px 0;
}
.site-nav.scrolled {
  background: var(--forest);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--container-w); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 28px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--off-white);
  font-family: var(--font-brand);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-right: auto;
}
.nav-brand-icon {
  display: inline-block; width: 24px; height: 24px; background-color: var(--brass);
  -webkit-mask: url('../brand-assets/Scissors.png') center / contain no-repeat;
  mask: url('../brand-assets/Scissors.png') center / contain no-repeat;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: rgba(254, 255, 250, 0.85);
  font-family: var(--font-label);
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--brass-light); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--brass); transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--off-white); }

/* =========================================================
   Hero — the shop window
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-slideshow { position: absolute; inset: 0; }
.hero-photo-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1s ease, transform 16s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-photo.loaded { opacity: 1; transform: scale(1); }
.hero-slide {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: kenburns 32s infinite;
}
.slide-a { background: radial-gradient(circle at 30% 30%, #3d5233, #1a2517 70%); animation-delay: 0s; }
.slide-b { background: radial-gradient(circle at 70% 40%, #4a3a22, #1a2517 70%); animation-delay: 8s; }
.slide-c { background: radial-gradient(circle at 40% 70%, #35492e, #1a2517 70%); animation-delay: 16s; }
.slide-d { background: radial-gradient(circle at 60% 60%, #2c2419, #1a2517 70%); animation-delay: 24s; }
@keyframes kenburns {
  0% { opacity: 0; transform: scale(1); }
  4% { opacity: 1; }
  22% { opacity: 1; transform: scale(1.08); }
  26% { opacity: 0; }
  100% { opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, rgba(26, 37, 23, 0.88) 30%, rgba(26, 37, 23, 0.55) 100%);
}

.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 130px 32px 120px;
}
.hero-kicker {
  font-family: var(--font-label);
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem; font-weight: 600;
  color: var(--brass-light);
  margin: 0 0 20px;
}
.hero-title {
  display: flex; flex-direction: column;
  font-family: var(--font-brand);
  text-transform: uppercase;
  line-height: 0.7;
  margin: 0 0 40px;
}
.ht-line { font-size: clamp(4rem, 13vw, 11rem); letter-spacing: 0.01em; }
.ht-solid { color: var(--off-white); }
.ht-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--brass);
  text-stroke: 2px var(--brass);
  margin-left: clamp(24px, 6vw, 110px);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Price ticker marquee along the hero's bottom edge */
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  overflow: hidden;
  background: var(--brass);
  border-top: 1px solid rgba(26, 37, 23, 0.4);
  padding: 13px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee 144s linear infinite;
}
.marquee-track span {
  font-family: var(--font-label);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem;
  color: var(--forest-deep);
  white-space: nowrap;
}
.marquee-icon {
  display: inline-block; width: 14px; height: 14px; flex-shrink: 0;
  background-color: var(--oxblood);
  -webkit-mask: url('../brand-assets/Scissors.png') center / contain no-repeat;
  mask: url('../brand-assets/Scissors.png') center / contain no-repeat;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   About
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 76px; align-items: center; }
.about-copy p { color: var(--sage-muted); }
.about-copy .dropcap::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 3.2rem;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--oxblood);
}
.shop-card {
  display: flex; gap: 0; margin-top: 36px;
  border: 1.5px solid var(--forest);
  box-shadow: 6px 6px 0 var(--parchment);
}
.shop-card .stat {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 22px 10px;
}
.shop-card .stat + .stat { border-left: 1.5px solid var(--line); }
.stat-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--forest); }
.stat-label {
  font-family: var(--font-label); text-transform: uppercase; font-size: 0.68rem;
  letter-spacing: 0.16em; font-weight: 600; color: var(--sage-muted); margin-top: 4px;
}

.about-photo {
  position: relative; aspect-ratio: 669 / 520; overflow: hidden;
  box-shadow: 10px 10px 0 rgba(195, 154, 75, 0.28);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  filter: saturate(0.92) contrast(1.04);
}
/* Same forest wash language as the hero overlay, dialled right down so the
   shop still reads warm and inviting rather than moody */
.about-photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(26, 37, 23, 0.08) 45%, rgba(26, 37, 23, 0.52) 100%);
}

/* =========================================================
   Services — the menu board
   ========================================================= */
.services { background: var(--forest); position: relative; }
.services::before {
  content: ''; position: absolute; inset: 14px; pointer-events: none;
  border: 1px solid rgba(195, 154, 75, 0.35);
  outline: 1px solid rgba(195, 154, 75, 0.18);
  outline-offset: 5px;
}
.services .container { position: relative; }

.service-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 42px; }
.tab {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.78rem; font-weight: 600;
  padding: 12px 20px; min-height: 44px;
  border: none; border-bottom: 2px solid transparent; border-radius: 0;
  background: transparent; color: rgba(254, 255, 250, 0.6);
  cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease;
}
.tab:hover { color: var(--off-white); }
.tab.active { color: var(--brass-light); border-bottom-color: var(--brass); }

/* Menu-board rows with dot leaders */
.service-list { display: flex; flex-direction: column; }
.ticket {
  display: flex; align-items: baseline; gap: 14px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(254, 255, 250, 0.12);
}
.ticket-main { display: flex; align-items: baseline; gap: 14px; flex: 1; min-width: 0; }
.ticket-main::after {
  content: ''; flex: 1;
  border-bottom: 2px dotted rgba(195, 154, 75, 0.5);
  transform: translateY(-4px);
  min-width: 40px;
}
.ticket-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--off-white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ticket-meta {
  font-family: var(--font-label); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(254, 255, 250, 0.55);
  white-space: nowrap;
}
.ticket-price {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--brass-light); white-space: nowrap;
}

/* =========================================================
   Barbers
   ========================================================= */
.barber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1.5px solid var(--forest); }
.barber-card {
  text-align: center; padding: 42px 22px 36px;
  background: var(--off-white);
  transition: background 0.2s ease;
}
.barber-card + .barber-card { border-left: 1.5px solid var(--line); }
.barber-card:hover { background: var(--parchment); }
.barber-portrait {
  width: 130px; height: 130px; margin: 0 auto 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.3rem; color: var(--off-white);
  border: 2px solid var(--brass);
  outline: 1px solid var(--line);
  outline-offset: 5px;
}
.barber-name { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 6px; }
.barber-rating {
  color: var(--brass-text); font-size: 0.9rem; font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-label);
}
.barber-rating .count { color: var(--sage-muted); font-weight: 500; }
.star-bar { position: relative; display: inline-block; letter-spacing: 2px; font-size: 0.9rem; line-height: 1; }
.star-bar-bg { color: var(--line); }
.star-bar-fill { position: absolute; top: 0; left: 0; width: var(--pct); overflow: hidden; white-space: nowrap; color: var(--brass); }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tag {
  font-family: var(--font-label); font-size: 0.66rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border: 1px solid var(--line); color: var(--sage-muted);
}
.barber-social-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-label); font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--oxblood); border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}
.barber-social-link:hover { color: var(--forest); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery-carousel { position: relative; }
.gallery-grid {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 2px;
}
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-item, .gallery-placeholder {
  flex: 0 0 calc((100% - 2 * 22px) / 3); scroll-snap-align: start;
}
.gallery-arrow {
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; z-index: 2;
  background: rgba(26, 37, 23, 0.75); color: var(--off-white);
  border: 1px solid rgba(254, 255, 250, 0.3);
  font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 0 0 2px;
  transition: background 0.2s ease;
}
.gallery-arrow:hover { background: rgba(26, 37, 23, 0.92); }
.gallery-arrow-prev { left: -20px; }
.gallery-arrow-next { right: -20px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item video {
  display: block; width: 100%; aspect-ratio: 9/16; object-fit: cover;
  background: var(--forest);
}
.gallery-play-overlay {
  display: flex; align-items: center; justify-content: center;
  position: absolute; inset: 0; margin: auto; z-index: 3;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(26, 37, 23, 0.55); border: 1.5px solid rgba(254, 255, 250, 0.7);
  cursor: pointer; padding: 0; transition: background 0.2s ease;
}
.gallery-play-overlay:hover { background: rgba(26, 37, 23, 0.75); }
.gallery-play-overlay[hidden] { display: none; }
.gallery-play-overlay-icon {
  display: block; width: 0; height: 0; margin-left: 4px;
  border-style: solid; border-width: 12px 0 12px 19px;
  border-color: transparent transparent transparent var(--off-white);
}
.gallery-pause-catcher {
  display: none; position: absolute; inset: 0; z-index: 1;
  background: none; border: none; padding: 0; margin: 0;
}
.gallery-pause-catcher[hidden] { display: none; }
.gallery-placeholder {
  overflow: hidden;
  position: relative; aspect-ratio: 4/5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-mid) 100%);
}
.gallery-placeholder:nth-child(odd) { background: linear-gradient(160deg, var(--brass) 0%, #8a692a 100%); }
.gallery-placeholder-icon {
  display: block; width: 34px; height: 34px; background-color: rgba(254, 255, 250, 0.35);
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M12 2c-2.7 0-3.06.01-4.12.06-1.06.05-1.78.22-2.41.46a4.87 4.87 0 0 0-1.76 1.15A4.87 4.87 0 0 0 2.56 5.43c-.24.63-.4 1.35-.46 2.41C2.05 8.9 2.04 9.26 2.04 12s.01 3.1.06 4.16c.05 1.06.22 1.78.46 2.41.25.65.6 1.2 1.15 1.76.56.55 1.11.9 1.76 1.15.63.24 1.35.4 2.41.46 1.06.05 1.42.06 4.12.06s3.06-.01 4.12-.06c1.06-.05 1.78-.22 2.41-.46a4.87 4.87 0 0 0 1.76-1.15 4.87 4.87 0 0 0 1.15-1.76c.24-.63.4-1.35.46-2.41.05-1.06.06-1.42.06-4.16s-.01-3.1-.06-4.16c-.05-1.06-.22-1.78-.46-2.41a4.87 4.87 0 0 0-1.15-1.76A4.87 4.87 0 0 0 18.53 2.5c-.63-.24-1.35-.4-2.41-.46C15.06 2 14.7 2 12 2zm0 1.8c2.65 0 2.97.01 4.01.06.97.04 1.5.2 1.85.34.46.18.79.39 1.14.74.35.35.56.68.74 1.14.14.35.3.88.34 1.85.05 1.04.06 1.36.06 4.01s-.01 2.97-.06 4.01c-.04.97-.2 1.5-.34 1.85-.18.46-.39.79-.74 1.14-.35.35-.68.56-1.14.74-.35.14-.88.3-1.85.34-1.04.05-1.36.06-4.01.06s-2.97-.01-4.01-.06c-.97-.04-1.5-.2-1.85-.34a3.06 3.06 0 0 1-1.14-.74 3.06 3.06 0 0 1-.74-1.14c-.14-.35-.3-.88-.34-1.85-.05-1.04-.06-1.36-.06-4.01s.01-2.97.06-4.01c.04-.97.2-1.5.34-1.85.18-.46.39-.79.74-1.14.35-.35.68-.56 1.14-.74.35-.14.88-.3 1.85-.34C9.03 3.81 9.35 3.8 12 3.8zm0 3.06a5.14 5.14 0 1 0 0 10.28 5.14 5.14 0 0 0 0-10.28zm0 8.48a3.34 3.34 0 1 1 0-6.68 3.34 3.34 0 0 1 0 6.68zm6.54-8.68a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0z"/%3E%3C/svg%3E') center / contain no-repeat;
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M12 2c-2.7 0-3.06.01-4.12.06-1.06.05-1.78.22-2.41.46a4.87 4.87 0 0 0-1.76 1.15A4.87 4.87 0 0 0 2.56 5.43c-.24.63-.4 1.35-.46 2.41C2.05 8.9 2.04 9.26 2.04 12s.01 3.1.06 4.16c.05 1.06.22 1.78.46 2.41.25.65.6 1.2 1.15 1.76.56.55 1.11.9 1.76 1.15.63.24 1.35.4 2.41.46 1.06.05 1.42.06 4.12.06s3.06-.01 4.12-.06c1.06-.05 1.78-.22 2.41-.46a4.87 4.87 0 0 0 1.76-1.15 4.87 4.87 0 0 0 1.15-1.76c.24-.63.4-1.35.46-2.41.05-1.06.06-1.42.06-4.16s-.01-3.1-.06-4.16c-.05-1.06-.22-1.78-.46-2.41a4.87 4.87 0 0 0-1.15-1.76A4.87 4.87 0 0 0 18.53 2.5c-.63-.24-1.35-.4-2.41-.46C15.06 2 14.7 2 12 2zm0 1.8c2.65 0 2.97.01 4.01.06.97.04 1.5.2 1.85.34.46.18.79.39 1.14.74.35.35.56.68.74 1.14.14.35.3.88.34 1.85.05 1.04.06 1.36.06 4.01s-.01 2.97-.06 4.01c-.04.97-.2 1.5-.34 1.85-.18.46-.39.79-.74 1.14-.35.35-.68.56-1.14.74-.35.14-.88.3-1.85.34-1.04.05-1.36.06-4.01.06s-2.97-.01-4.01-.06c-.97-.04-1.5-.2-1.85-.34a3.06 3.06 0 0 1-1.14-.74 3.06 3.06 0 0 1-.74-1.14c-.14-.35-.3-.88-.34-1.85-.05-1.04-.06-1.36-.06-4.01s.01-2.97.06-4.01c.04-.97.2-1.5.34-1.85.18-.46.39-.79.74-1.14.35-.35.68-.56 1.14-.74.35-.14.88-.3 1.85-.34C9.03 3.81 9.35 3.8 12 3.8zm0 3.06a5.14 5.14 0 1 0 0 10.28 5.14 5.14 0 0 0 0-10.28zm0 8.48a3.34 3.34 0 1 1 0-6.68 3.34 3.34 0 0 1 0 6.68zm6.54-8.68a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0z"/%3E%3C/svg%3E') center / contain no-repeat;
}
.gallery-placeholder p {
  font-family: var(--font-label); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(254, 255, 250, 0.55); margin: 0;
}
.gallery-placeholder:nth-child(odd) .gallery-placeholder-icon { background-color: rgba(26, 37, 23, 0.35); }
.gallery-placeholder:nth-child(odd) p { color: rgba(26, 37, 23, 0.5); }

/* =========================================================
   Book Now — Booksy CTA (sits at the foot of the Services menu board)
   ========================================================= */
.book-cta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 22px 28px;
  background: var(--off-white);
  box-shadow: 9px 10px 0 rgba(195, 154, 75, 0.28);
}
.book-cta-lead {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--forest-deep); margin: 0;
  flex: 1 1 auto;
}

/* =========================================================
   Reviews
   ========================================================= */
.review-sources { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.review-sources a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--line); padding: 10px 18px; min-height: 40px;
  color: var(--forest-deep); transition: border-color 0.2s ease, color 0.2s ease;
}
.review-sources a strong { color: var(--brass-text); font-family: var(--font-display); font-weight: 400; }
.review-sources a:hover { border-color: var(--brass); color: var(--oxblood); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--off-white);
  border: 1.5px solid var(--line);
  padding: 30px 26px 24px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: -14px; right: 18px;
  font-family: var(--font-display);
  font-size: 4.4rem; line-height: 1; color: var(--brass);
  background: var(--off-white); padding: 0 6px;
  pointer-events: none;
}
.review-stars { color: var(--brass); letter-spacing: 3px; margin-top: 10px; }
.review-quote { color: var(--forest-deep); font-size: 0.98rem; flex: 1; margin: 0; }
.review-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 0.8rem; border-top: 1px solid var(--line); padding-top: 12px;
}
.review-name { font-weight: 700; }
.review-barber { color: var(--sage-muted); font-style: italic; font-family: var(--font-display); }
.verified-badge {
  font-family: var(--font-label); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--brass); color: var(--oxblood);
  padding: 3px 8px; align-self: flex-start;
}

/* =========================================================
   Contact / Location
   ========================================================= */
.contact { background: var(--parchment); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 34px; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-list strong {
  font-family: var(--font-label); text-transform: uppercase; font-size: 0.7rem;
  letter-spacing: 0.16em; font-weight: 700; color: var(--oxblood);
}
.contact-list a { border-bottom: 1px solid var(--brass); }
.contact-list em { color: var(--sage-muted); font-size: 0.85rem; }
.hours-title { font-size: 1.15rem; margin-bottom: 14px; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.hours-table td { padding: 8px 0; border-bottom: 1px dotted rgba(40, 55, 36, 0.3); font-size: 0.92rem; }
.hours-table td:first-child {
  font-family: var(--font-label); text-transform: uppercase; font-size: 0.74rem;
  font-weight: 600; letter-spacing: 0.08em; color: var(--sage-muted);
}
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.today td { color: var(--oxblood); font-weight: 700; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-row a {
  font-family: var(--font-label); font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1.5px solid var(--line); padding: 10px 18px; min-height: 40px;
  display: inline-flex; align-items: center;
}
.social-row a:hover { border-color: var(--brass); color: var(--oxblood); }

.map-embed {
  width: 100%; aspect-ratio: 4/3; border: 0; display: block;
  filter: grayscale(0.25) contrast(1.05);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--forest-deep); color: rgba(254, 255, 250, 0.75); padding: 60px 0 0; overflow: hidden; }
.footer-word {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  font-family: var(--font-brand);
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(220, 185, 110, 0.75);
  text-stroke: 1.5px rgba(220, 185, 110, 0.75);
  white-space: nowrap;
  margin-bottom: 36px;
  user-select: none;
}
.footer-bottom {
  padding: 22px 0; text-align: center; font-size: 0.78rem; color: rgba(254, 255, 250, 0.5);
  border-top: 1px solid var(--line-light);
}

/* =========================================================
   Motion preferences
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .marquee-track { animation: none; }
  .hero-slide { animation: none; opacity: 0; }
  .slide-a { opacity: 1; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .ht-line { font-size: clamp(5rem, 24vw, 6.5rem); }
  .ht-outline { -webkit-text-stroke: 1px var(--brass); text-stroke: 1px var(--brass); }
  .gallery-pause-catcher:not([hidden]) { display: block; bottom: 42px; cursor: pointer; }
  .footer-word {
    -webkit-text-stroke: 1px rgba(220, 185, 110, 0.75);
    text-stroke: 1px rgba(220, 185, 110, 0.75);
  }
  .footer-word { font-size: clamp(2.6rem, 15vw, 4rem); }
  .section { padding: 76px 0; }
  .container, .nav-inner { padding: 0 22px; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; background: var(--forest);
    flex-direction: column; padding: 20px 28px; gap: 4px;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-light); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero-content { padding: 110px 22px 130px; }
  .barber-grid { grid-template-columns: 1fr; }
  .barber-card + .barber-card { border-left: none; border-top: 1.5px solid var(--line); }
  .review-grid { grid-template-columns: 1fr; }
  .ticket-name { white-space: normal; flex-basis: 100%; }
  .ticket-main { flex-wrap: wrap; }
  .ticket-main::after { display: none; }
  .ticket-meta { flex-basis: 100%; }
  .shop-card { flex-direction: column; }
  .shop-card .stat + .stat { border-left: none; border-top: 1.5px solid var(--line); }
  .services::before { inset: 8px; }

  .gallery-item, .gallery-placeholder { flex: 0 0 100%; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 1.4rem; }
  .gallery-arrow-prev { left: -6px; }
  .gallery-arrow-next { right: -6px; }
}
