/* Honeycomb Barber — warm, Asheville NC */

:root {
  --bg: #f5ede0;
  --surface: #fbf5e9;
  --surface-2: #efe4cf;
  --terra: #c46e3f;
  --terra-dark: #a45a30;
  --terra-soft: #e9c8b1;
  --sage: #8a9170;
  --sage-soft: #cfd3bf;
  --honey: #d6a04c;
  --fg: #3d2f24;
  --fg-soft: #5a4838;
  --muted: #897564;
  --border: #e3d4bd;
  --border-strong: #c9b48e;
  --font-display: 'Newsreader', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --radius: 14px;
  --radius-lg: 22px;
}

* { 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.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.012em;
  color: var(--fg);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 237, 224, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1180px; margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px; color: var(--fg); text-decoration: none;
  display: flex; align-items: baseline; gap: 8px;
  letter-spacing: -0.02em;
}
.logo .mark {
  width: 28px; height: 28px; display: inline-block;
  background: var(--terra); border-radius: 50%;
  position: relative; top: 4px;
  background-image: radial-gradient(circle at 35% 35%, var(--honey), var(--terra) 70%);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px;
  color: var(--fg-soft); text-decoration: none; font-weight: 500;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--fg); color: var(--bg) !important;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px !important; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--terra); color: var(--bg) !important; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--border-strong); border-radius: 10px; width: 42px; height: 42px; padding: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--fg); margin: 4px auto; transition: 0.2s; }
.mobile-menu { display: none; padding: 18px 24px; border-top: 1px solid var(--border); background: var(--surface); }
.mobile-menu a { display: block; padding: 14px 0; font-family: var(--font-body); font-size: 16px; color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.open { display: block; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  margin: 22px 0 28px;
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-tag {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--fg-soft); max-width: 480px; margin: 0 0 32px;
}
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}
.hero-image::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 60px rgba(196, 110, 63, 0.12);
  border-radius: var(--radius-lg);
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 40px; padding-top: 28px; border-top: 1px dashed var(--border-strong);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--muted); text-transform: uppercase;
}
.hero-meta .dot { display: inline-block; width: 6px; height: 6px; background: var(--terra); border-radius: 50%; margin-right: 8px; vertical-align: middle; }

.btn {
  display: inline-block; padding: 14px 26px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer; transition: 0.2s;
  border-radius: 999px; border: 1px solid transparent;
}
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { background: var(--terra); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface); border-color: var(--terra); color: var(--terra); }
.btn-terra { background: var(--terra); color: var(--bg); }
.btn-terra:hover { background: var(--terra-dark); }

/* ── Section heads ─────────────────────────────────── */
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.section-head p { color: var(--fg-soft); font-size: 18px; }

/* ── Service strip ─────────────────────────────────── */
.service-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .service-strip { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: 0.25s;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--terra-soft); box-shadow: 0 18px 48px -22px rgba(196, 110, 63, 0.25); }
.service-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--terra-soft); display: flex; align-items: center; justify-content: center;
  color: var(--terra-dark); margin-bottom: 24px;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 28px; margin-bottom: 8px; letter-spacing: -0.015em; }
.service-card .desc { color: var(--fg-soft); margin-bottom: 24px; font-size: 15px; min-height: 50px; }
.service-card .price {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.service-card .price strong { font-family: var(--font-display); font-size: 26px; color: var(--fg); letter-spacing: -0.01em; font-weight: 500; }

/* ── About teaser ──────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.about-copy h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; letter-spacing: -0.02em; }
.about-copy p { color: var(--fg-soft); font-size: 18px; margin-bottom: 24px; }

/* ── Featured grid ─────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-grid a {
  display: block; aspect-ratio: 4/5; overflow: hidden; position: relative;
  border-radius: var(--radius);
}
.feature-grid img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; filter: saturate(0.95); }
.feature-grid a:hover img { transform: scale(1.04); }

/* ── Reviews ───────────────────────────────────────── */
.reviews-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .reviews-row { grid-template-columns: 1fr; } }
.review {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
}
.review .stars { color: var(--honey); letter-spacing: 4px; margin-bottom: 18px; font-size: 14px; }
.review blockquote {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.4;
  margin: 0 0 24px;
  color: var(--fg);
  font-weight: 500; letter-spacing: -0.01em;
}
.review .who {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--fg-soft);
}
.review .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; color: var(--fg); font-weight: 500;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 72px 0 24px;
  border-top: 1px solid var(--fg-soft);
}
.footer .logo { color: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra-soft); margin-bottom: 18px; font-weight: 500; }
.footer p, .footer a { color: var(--surface-2); font-size: 15px; line-height: 1.85; text-decoration: none; }
.footer a:hover { color: var(--terra-soft); }
.footer-map {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--fg-soft), #2c1f17);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra-soft); font-size: 13px;
  text-align: center; padding: 20px; font-family: var(--font-mono);
}
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--fg-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Mobile sticky bar ─────────────────────────────── */
.mobile-bar {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  background: transparent;
}
.mobile-bar a {
  padding: 16px 12px; text-align: center;
  border-radius: 999px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 18px 40px -16px rgba(61, 47, 36, 0.4);
}
.mobile-bar .call { background: var(--surface); color: var(--fg); border: 1px solid var(--border-strong); }
.mobile-bar .book { background: var(--terra); color: var(--bg); }
@media (min-width: 881px) { .mobile-bar { display: none; } body { padding-bottom: 0; } }

/* ── Price table ───────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 56px; }
.price-table tr { border-bottom: 1px dashed var(--border-strong); }
.price-table td { padding: 22px 0; vertical-align: baseline; }
.price-table .name { font-family: var(--font-display); font-size: 22px; color: var(--fg); letter-spacing: -0.01em; font-weight: 500; }
.price-table .desc { color: var(--muted); font-size: 14px; padding: 4px 24px 0 0; max-width: 360px; }
.price-table .dur { font-family: var(--font-mono); font-size: 12px; color: var(--terra); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; padding: 0 24px; }
.price-table .pri { font-family: var(--font-display); font-size: 26px; color: var(--fg); text-align: right; white-space: nowrap; font-weight: 500; }
.price-cat {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); padding: 32px 0 12px;
}
.price-cat::after {
  content: ''; display: block; width: 40px; height: 2px; background: var(--terra); margin-top: 10px;
}
@media (max-width: 720px) {
  .price-table .desc { display: none; }
  .price-table .dur { padding: 0 12px; font-size: 10px; }
  .price-table .name { font-size: 18px; }
  .price-table .pri { font-size: 20px; }
}

/* ── Sticky CTA ────────────────────────────────────── */
.sticky-cta {
  position: sticky; bottom: 88px; z-index: 40;
  background: var(--terra); color: var(--bg);
  padding: 16px 24px; text-align: center; border-radius: 0;
  font-size: 14px; font-weight: 500;
}
.sticky-cta a { color: var(--bg); text-decoration: underline; }
@media (min-width: 881px) { .sticky-cta { bottom: 0; } }

/* ── Gallery ───────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 48px; }
.chip {
  font-family: var(--font-body); font-size: 13px;
  padding: 10px 18px; background: var(--surface); color: var(--fg);
  border: 1px solid var(--border-strong); border-radius: 999px; cursor: pointer; transition: 0.2s;
  font-weight: 500;
}
.chip:hover { border-color: var(--terra); color: var(--terra); }
.chip.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.masonry { column-count: 4; column-gap: 16px; }
@media (max-width: 1024px) { .masonry { column-count: 3; } }
@media (max-width: 720px) { .masonry { column-count: 2; column-gap: 12px; } }
.masonry .tile {
  break-inside: avoid; margin-bottom: 16px;
  overflow: hidden; position: relative;
  border-radius: var(--radius);
}
.masonry .tile img { width: 100%; height: auto; transition: 0.4s; }
.masonry .tile:hover img { transform: scale(1.05); }
.tile.hide { display: none; }

/* ── Booking ───────────────────────────────────────── */
.book-iframe {
  width: 100%; min-height: 540px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: var(--font-body); font-size: 14px;
  text-align: center; padding: 48px; line-height: 1.8;
}
.contact-form { display: grid; gap: 18px; }
.contact-form label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border-strong);
  color: var(--fg); padding: 14px 16px; font-family: var(--font-body); font-size: 16px;
  border-radius: 12px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--terra);
}

/* ── Barber cards ──────────────────────────────────── */
.barber-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .barber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .barber-grid { grid-template-columns: 1fr; } }
.barber {
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.barber img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.barber .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.barber h3 { font-size: 26px; margin-bottom: 4px; letter-spacing: -0.015em; }
.barber .spec { font-family: var(--font-mono); font-size: 11px; color: var(--terra); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.18em; }
.barber p { color: var(--fg-soft); font-size: 14px; margin-bottom: 16px; flex: 1; }
.barber .ig { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-bottom: 16px; }

/* ── Contact ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px dashed var(--border-strong);
}
.hours-list .day { font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.hours-list .time { font-family: var(--font-display); font-size: 20px; color: var(--fg); font-weight: 500; }
.big-phone {
  display: block;
  font-family: var(--font-display); font-size: clamp(40px, 7vw, 72px);
  color: var(--fg); text-decoration: none;
  margin: 24px 0; letter-spacing: -0.025em; font-weight: 500;
}
.big-phone:hover { color: var(--terra); }
.contact-card {
  border-radius: var(--radius); padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.contact-card h3 { font-family: var(--font-mono); font-size: 11px; color: var(--terra); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
.contact-card p { color: var(--fg-soft); margin: 0; font-size: 15px; }

/* ── Honeycomb decorative bg ───────────────────────── */
.honey-bg {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(214, 160, 76, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(196, 110, 63, 0.07) 0%, transparent 40%);
}
