/* See's Barbershop — directional preview
   Palette: charcoal/black background, warm cream text, deep amber accent. */

:root {
  --bg: #0e0e0f;
  --bg-alt: #161617;
  --bg-elev: #1d1d1f;
  --line: #2a2a2c;
  --text: #f3ead8;          /* warm cream */
  --text-muted: #a9a395;
  --accent: #c8861d;        /* deep amber */
  --accent-hover: #e09a2a;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --radius: 6px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 .6em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; letter-spacing: .08em; text-transform: uppercase; }

p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 760px; }

.kicker {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  font-weight: 600;
}

.eyebrow {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #1a1208; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); color: #1a1208; opacity: .95; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--text); color: var(--text); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,15,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .9rem 1.25rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .65rem; color: var(--text); font-weight: 700; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--accent); color: #1a1208;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: .04em;
}
.brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .06em; }
.nav-links { margin-left: auto; display: flex; gap: 1.5rem; }
.nav-links a { color: var(--text); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { white-space: nowrap; }
.nav-toggle {
  display: none;
  background: none; border: 0; padding: 6px;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s; }

/* ---------- Hero ---------- */
.hero {
  min-height: 78vh;
  display: flex; align-items: center;
  padding: 6rem 1.25rem 5rem;
  background:
    linear-gradient(180deg, rgba(14,14,15,.92) 0%, rgba(14,14,15,.78) 60%, var(--bg) 100%),
    url('https://images.unsplash.com/photo-1593702275687-f8b402bf1fb5?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero h1 { margin-bottom: 1rem; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-meta { display: flex; align-items: center; gap: .65rem; color: var(--text-muted); font-size: .95rem; }
.stars { color: var(--accent); letter-spacing: .12em; }

/* ---------- Sections ---------- */
.section { padding: 5rem 1.25rem; }
.section-alt { background: var(--bg-alt); }
.section h2 { margin-bottom: 1.5rem; }

/* ---------- Services ---------- */
.services { list-style: none; padding: 0; margin: 1rem 0 0; max-width: 760px; }
.services li {
  display: flex; align-items: baseline; gap: .75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.svc-name { font-weight: 500; }
.svc-name em { color: var(--text-muted); font-style: normal; font-weight: 400; font-size: .9em; margin-left: .25rem; }
.svc-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.svc-price { color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }
.services-note { margin-top: 2rem; color: var(--text-muted); font-size: .9rem; font-style: italic; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--bg-elev); }
.gallery img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}
.gallery figure:hover img { transform: scale(1.04); opacity: .92; }

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review {
  margin: 0;
  padding: 1.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review .stars { display: block; font-size: 1.1rem; margin-bottom: .75rem; }
.review p { font-size: 1.05rem; color: var(--text); }
.review cite { color: var(--text-muted); font-style: normal; font-size: .9rem; }

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.visit-info .btn { margin: 0 .5rem .5rem 0; }
.info-list { margin: 2rem 0; padding: 0; }
.info-list dt { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-top: 1rem; }
.info-list dd { margin: .35rem 0 0; font-size: 1.05rem; }
.hours-heading { margin-top: 2rem; }
.hours { width: 100%; border-collapse: collapse; max-width: 360px; }
.hours th, .hours td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours th { color: var(--text-muted); font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.visit-map { aspect-ratio: 4 / 5; min-height: 360px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }

/* ---------- Footer ---------- */
.footer { background: #08080a; padding: 2.5rem 1.25rem; border-top: 1px solid var(--line); margin-top: 2rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer-brand { font-size: 1.4rem; margin: 0; }
.footer-meta { color: var(--text-muted); font-size: .9rem; margin: .25rem 0 0; }
.socials { display: flex; gap: 1.25rem; }
.socials a { color: var(--text-muted); font-size: .9rem; }
.socials a:hover { color: var(--accent); }
.copyright { color: var(--text-muted); font-size: .85rem; width: 100%; margin: 0; padding-top: 1rem; border-top: 1px solid var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; aspect-ratio: 4 / 3; }
}

@media (max-width: 680px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0;
    padding: .5rem 1.25rem;
    margin: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .hero { min-height: 70vh; padding: 4rem 1.25rem 3.5rem; }
  .section { padding: 3.5rem 1.25rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 240px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
