/* The Barberhood — standalone site (not ivyroom) */

@font-face {
  font-family: "Albertson";
  src: url("fonts/Albertson.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #1c1917;
  --bg-elevated: #292524;
  --bg-soft: #faf7f2;
  --text: #faf7f2;
  --text-muted: #a8a29e;
  --text-colored: #d4b872;
  --accent: #c9a962;
  --accent-soft: rgba(201, 169, 98, 0.15);
  --border: rgba(250, 247, 242, 0.12);
  --header-h: 3.25rem;
  --pricing-h: 2.75rem;
  --top-cluster-h: calc(var(--header-h) + var(--pricing-h));
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Albertson", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--top-cluster-h);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(72rem, 100% - 2rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(40rem, 100% - 2rem);
}

/* Fixed header + sticky pricing strip */
.top-cluster {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  min-height: var(--header-h);
  padding: 0.35rem 1rem;
  border-bottom: 1px solid var(--border);
}

.brand-mark {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 0.35rem 0.75rem;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(to right, transparent, #000 0.5rem, #000 calc(100% - 0.5rem), transparent);
}

.nav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    gap: 0.35rem 1.25rem;
    mask-image: none;
  }
}

.nav a {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.btn-call {
  flex-shrink: 0;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-call:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

/* Sticky pricing bar (under header, same fixed cluster) */
.pricing-bar {
  min-height: var(--pricing-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #25201c 0%, #1c1917 100%);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pricing-bar__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0.35rem 0.75rem;
  list-style: none;
  white-space: nowrap;
}

.pricing-bar__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.85rem;
  border-right: 1px solid var(--border);
  font-size: 0.78rem;
}

.pricing-bar__list li:last-child {
  border-right: none;
}

.pricing-bar .name {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-bar .amt {
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 767px) {
  body {
    padding-top: var(--header-h);
  }

  .pricing-bar {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 52rem);
  display: grid;
  place-items: center;
}

.hero__view-prices {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1rem;
  margin: 2rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(28, 25, 23, 0.75) 45%,
    rgba(28, 25, 23, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 2rem 1.25rem 3rem;
  max-width: 40rem;
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-muted);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero__location {
  margin: 0.75rem 0 1.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.btn--primary:hover {
  background: #d4b872;
  border-color: #d4b872;
  text-decoration: none;
}

.btn--block {
  width: 100%;
  margin-top: 1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--tight {
  padding-top: 2.5rem;
}

.section--book {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section--alt {
  background: #231f1b;
}

.section--hours {
  padding-bottom: 5rem;
}

.section__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: normal;
  letter-spacing: 0.02em;
  color: var(--text-colored);
}

.section__lede {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.subheading {
  margin: 1.5rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.muted {
  color: var(--text-muted);
}

.list-plain {
  margin: 0;
  padding-left: 1.2rem;
}

.list-plain li {
  margin-bottom: 0.35rem;
}

/* Price grid — mobile-first; desktop layout unchanged from 768px up */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) and (max-width: 767px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(6, minmax(9.5rem, 1fr));
    gap: 0.75rem;
  }
}

.price-card {
  margin: 0;
  padding: 1.1rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-align: center;
}

.price-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.price-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--accent);
}

@media (max-width: 767px) {
  .price-card {
    padding: 1.2rem 1.15rem;
    min-height: 5.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .price-card h3 {
    font-size: 0.85rem;
    line-height: 1.25;
  }

  .price-card__price {
    font-size: 1.8rem;
  }
}

/* Split layout */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }

  .split--reverse .split__figure {
    order: -1;
  }
}

.split__figure {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.split__figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
    max-height: 22rem;
  }

  .gallery__item--wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.gallery__item {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Info grid */
.info-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.info-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: normal;
}

.info-card .list-plain {
  padding-left: 1rem;
}

.info-card a {
  word-break: break-word;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: #141210;
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.footer__meta {
  margin: 0.35rem 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.5;
}
