:root {
  --bg: #0c0b0a;
  --surface: #15130f;
  --surface-2: #1c1a16;
  --fg: #efe7d6;
  --muted: #8a8275;
  --border: #2a2620;
  --accent: #7d1e2b;
  --accent-hi: #9a2a3a;
  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.font-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
.font-body { font-family: var(--font-body); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.accent { color: var(--accent-hi); }
.rule { height: 1px; background: var(--border); border: 0; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo .amp { color: var(--accent-hi); font-style: italic; }
.nav-links { display: none; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-cta {
  display: inline-block;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--fg);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-hi); }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--fg); }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mobile-menu a:last-child { border-bottom: 0; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .nav-inner { height: 76px; padding: 0 32px; }
}

/* Grain overlay */
.grain {
  position: relative;
  isolation: isolate;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  z-index: 1;
}
.grain > * { position: relative; z-index: 2; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #1a1612;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.55) 0%, rgba(12,11,10,0.25) 35%, rgba(12,11,10,0.85) 88%, rgba(12,11,10,0.95) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.96;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--fg);
  opacity: 0.8;
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot {
  width: 4px; height: 4px; background: var(--accent-hi); border-radius: 50%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: all 0.18s;
}
.btn-primary {
  background: var(--accent);
  color: var(--fg);
}
.btn-primary:hover { background: var(--accent-hi); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); }
.btn-block { display: block; width: 100%; text-align: center; }

/* Sections */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section-tight { padding: 48px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section-head .link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}
.section-head .link:hover { color: var(--fg); border-color: var(--fg); }

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

/* Service strip */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.svc-card:hover { background: var(--surface); }
.svc-card .icon {
  width: 44px; height: 44px;
  color: var(--accent-hi);
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0;
  font-weight: 600;
}
.svc-card p { color: var(--muted); margin: 0; font-size: 15px; }
.svc-card .price {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  border-top: 1px solid var(--border);
}
.svc-card .price strong { color: var(--accent-hi); font-size: 20px; font-family: var(--font-display); letter-spacing: 0; }

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

/* About teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-teaser .img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
}
.about-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 600;
}
.about-teaser p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  opacity: 0.85;
  margin: 0 0 28px;
  max-width: 540px;
}

@media (min-width: 768px) {
  .about-teaser { grid-template-columns: 5fr 7fr; gap: 80px; }
}

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.featured-grid .tile {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  position: relative;
  overflow: hidden;
}
.featured-grid .tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,11,10,0.55) 100%);
  transition: opacity 0.3s;
}
.featured-grid .tile:hover::after { opacity: 0.4; }

@media (min-width: 768px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .featured-grid .tile.tall { grid-row: span 2; aspect-ratio: 1/2; }
}

/* Reviews */
.reviews {
  position: relative;
}
.review-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 88%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.review-card .stars {
  color: var(--accent-hi);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}
.review-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 28px;
  color: var(--fg);
}
.review-card cite {
  font-style: normal;
  margin-top: auto;
  display: block;
}
.review-card cite .name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.review-card cite .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@media (min-width: 768px) {
  .review-card { flex: 0 0 460px; }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 100px;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer p, .footer a { font-size: 15px; line-height: 1.7; color: var(--fg); }
.footer a:hover { color: var(--accent-hi); }
.footer .map {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; }
  .footer { padding-bottom: 64px; }
}

/* Mobile bottom bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-bar .call {
  background: var(--surface);
  color: var(--fg);
  border-right: 1px solid var(--border);
}
.mobile-bar .book {
  background: var(--accent);
  color: var(--fg);
}
.mobile-bar svg { width: 16px; height: 16px; }
@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

/* Page header (interior pages) */
.page-head {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.page-head .eyebrow { display: block; margin-bottom: 16px; }
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  margin: 0 0 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.page-head p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--fg);
  opacity: 0.75;
  max-width: 640px;
  margin: 0;
}

/* Price table */
.menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.menu-group h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 24px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.menu-row .desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.menu-row .duration {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-row .price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-hi);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .menu { grid-template-columns: 1fr 1fr; gap: 64px 96px; }
  .menu-group:last-child { grid-column: 1 / -1; }
}

/* Sticky book CTA on services */
.sticky-cta {
  position: sticky;
  bottom: 88px;
  z-index: 40;
  margin: 48px auto 0;
  max-width: 320px;
}
@media (min-width: 768px) {
  .sticky-cta { bottom: 32px; }
}

/* Gallery */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-chip {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover { color: var(--fg); border-color: var(--fg); }
.filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg);
}
.masonry {
  columns: 2;
  column-gap: 8px;
}
.masonry .item {
  break-inside: avoid;
  margin-bottom: 8px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.masonry .item.h1 { aspect-ratio: 1/1; }
.masonry .item.h2 { aspect-ratio: 3/4; }
.masonry .item.h3 { aspect-ratio: 4/5; }
.masonry .item.h4 { aspect-ratio: 2/3; }
.masonry .item:hover { transform: scale(1.02); }
.masonry .item.hidden { display: none; }
@media (min-width: 640px) {
  .masonry { columns: 3; column-gap: 12px; }
  .masonry .item { margin-bottom: 12px; }
}
@media (min-width: 1024px) {
  .masonry { columns: 4; }
}

/* Booking */
.booking-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.booking-shell .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-shell h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0;
  max-width: 480px;
}
.booking-shell p { color: var(--muted); max-width: 440px; margin: 0; }

/* Forms */
.form { display: grid; gap: 18px; max-width: 540px; }
.form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 0;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--accent-hi);
}
.form textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Barber cards */
.barbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.barber-card {
  background: var(--surface);
  border: 1px solid var(--border);
}
.barber-card .photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
}
.barber-card .body { padding: 24px; }
.barber-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 6px;
  font-weight: 600;
}
.barber-card .specialty {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 16px;
}
.barber-card .ig {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  display: inline-block;
}
.barber-card .ig:hover { color: var(--fg); }
.barber-card .btn { display: block; text-align: center; }
@media (min-width: 640px) {
  .barbers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .barbers-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td {
  padding: 14px 0;
  font-size: 15px;
}
.hours-table td:first-child {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hours-table td.closed { color: var(--muted); }
.hours-table tr.today td:first-child { color: var(--accent-hi); }
.tap-call {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.tap-call:hover { color: var(--accent-hi); }
.contact-block { padding: 32px 0; border-bottom: 1px solid var(--border); }
.contact-block:last-child { border-bottom: 0; }
.contact-block h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 500;
}
.contact-block p { margin: 0; font-size: 16px; line-height: 1.7; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.map-large {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background-image: linear-gradient(135deg, transparent 24%, rgba(125,30,43,0.08) 25%, rgba(125,30,43,0.08) 26%, transparent 27%, transparent 74%, rgba(125,30,43,0.08) 75%, rgba(125,30,43,0.08) 76%, transparent 77%);
  background-size: 60px 60px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* Pull quote */
.pull-quote {
  margin: 48px 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  color: var(--fg);
}
