/* Harbor Barber — masculine barbershop · charcoal / steel / leather */
:root {
  --blush: #3A3F46; /* steel wash used where blush was */
  --blush-deep: #2A2F36;
  --sand: #1C1F24;
  --sand-warm: #252A31;
  --rose: #C4A574; /* leather/brass accent */
  --rose-deep: #A88858;
  --ink: #E8EAED;
  --ink-deep: #F2F4F6;
  --muted: #9AA3AD;
  --cream: #121417;
  --card: #1A1D22;
  --border: #2E343C;
  --gold: #C4A574;
  --ok: #6B8F71;
  --steel: #8B95A1;
  --charcoal: #0E1013;
  --leather: #8B5E3C;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --wrap: 960px;
  --pad: max(1.25rem, env(safe-area-inset-left, 0px));
  --pad-r: max(1.25rem, env(safe-area-inset-right, 0px));
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5.5rem;
}

.wrap {
  width: min(100% - var(--pad) - var(--pad-r), var(--wrap));
  margin-inline: auto;
}

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(201, 123, 132, 0.45);
  outline-offset: 2px;
}

.ac-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 16, 19, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.ac-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.4rem;
  padding: 0.45rem 0;
}
.ac-logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-size: 1.05rem;
}
.ac-logo span { color: var(--gold); }
.ac-nav nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ac-nav nav > a:not(.btn) {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
@media (max-width: 560px) {
  .ac-nav nav > a:not(.btn) { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  letter-spacing: -0.01em;
  cursor: pointer;
  font-family: inherit;
}
.btn-call { background: var(--gold); color: #0E1013; }
.btn-call:hover { background: #3a3234; }
.btn-book { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-book:hover { background: var(--rose-deep); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; margin-top: 0.55rem; }

section.hero.photo-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  min-height: 0;
  height: clamp(220px, 32vh, 320px);
  max-height: 320px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* .hero-photo retired — real photo via .hero-bg img */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14,16,19,.82) 0%, rgba(14,16,19,.45) 42%, rgba(14,16,19,.15) 68%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 1.85rem 0 1.35rem;
  max-width: 32rem;
}
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C4A574;
}
.photo-hero h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  margin: 0.4rem 0 0.55rem;
  font-size: clamp(1.55rem, 3.8vw, 2.2rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
  line-height: 1.15;
}
.lede {
  color: rgba(255,255,255,0.88);
  margin: 0 0 1rem;
  font-size: 0.98rem;
  max-width: 36ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
@media (max-width: 560px) {
  section.hero.photo-hero {
    height: auto;
    max-height: none;
  }
  .hero-content { padding: 1.25rem 0 1.15rem; max-width: none; }
  
}

.pad { padding: 2.25rem 0; }
.pad.soft { background: var(--sand); }
.section-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}
h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.muted { color: var(--muted); margin: 0 0 1rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow);
}
.tile { text-align: left; }
.tile-icon {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blush);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}
.tile h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.stylist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}
.stylist-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.stylist-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.coming-later {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.hours-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 720px) {
  .hours-row { grid-template-columns: 1fr; }
}
.hours-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-list span { color: var(--muted); }
.area { margin: 0; font-size: 0.92rem; color: var(--muted); }

.book-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  box-shadow: var(--shadow);
}
.book-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.book-panel > p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.microcopy {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}
.review-cards .card p { margin: 0; }
.review-cards .card footer {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--rose);
}
.review-cards .card p { color: var(--ink); font-size: 0.95rem; }

.form-card {
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.form-card label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 650;
}
.form-card input,
.form-card textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.form-ok { color: var(--ok); margin: 0.35rem 0 0; font-size: 0.9rem; }

.ac-footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.ac-footer strong { color: var(--ink); }
.ac-footer a { color: var(--rose); font-weight: 600; }
.by { font-size: 0.8rem; color: var(--muted); }

.sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem max(0.85rem, env(safe-area-inset-left)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-right));
  background: rgba(14, 16, 19, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.sticky .btn { flex: 1; }
@media (min-width: 860px) {
  .sticky { display: none; }
  body { padding-bottom: 0; }
}
