/* ===================================================================
   The Barber Shop (Long Beach) — concept redesign by rainearcher
   Heritage barbershop, est. 1921. Warm cream + oxblood barber-red +
   brass. Mobile-first. Oswald display / Inter body. Variation on the
   agency's service-business template (cf. sites/frank-marrone-sons-plumbing).
   =================================================================== */

:root {
  --ink:       #1C1714;
  --ink-soft:  #2A231E;
  --muted:     #6B5F54;
  --muted-lt:  #998A7B;
  --line:      #E3D9C9;
  --bg:        #F6F0E6;
  --surface:   #FFFDF8;
  --bg-soft:   #EFE6D6;
  --bg-tan:    #ECE0CC;
  --red:       #A8332B;
  --red-dark:  #8C271F;
  --red-deep:  #5E1A14;
  --brass:     #A87C34;
  --brass-lt:  #CBA45C;
  --cream:     #F6F0E6;

  --maxw: 1140px;
  --pad: clamp(1.1rem, 4vw, 2.2rem);
  --r: 10px;
  --shadow: 0 1px 2px rgba(28,23,20,.08), 0 8px 28px rgba(28,23,20,.09);
  --shadow-lg: 0 18px 50px rgba(28,23,20,.20);

  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 {
  font-size: clamp(1.78rem, 7.4vw, 4rem);
  letter-spacing: -0.01em;
}
h1 .hl { color: var(--red); }
h2 { font-size: clamp(1.5rem, 5.4vw, 2.6rem); }
h3 { font-size: 1.16rem; font-weight: 600; letter-spacing: 0; }

.lead {
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  color: var(--muted);
  line-height: 1.64;
  max-width: 58ch;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .7rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: #FFF;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: var(--r);
  border: 2px solid var(--red);
  min-height: 48px;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; min-height: 44px; }
.btn--brass { background: var(--brass); border-color: var(--brass); color: #1C1714; }
.btn--brass:hover { background: #946C2C; border-color: #946C2C; color: #FFF; }
.btn--ghost {
  background: transparent;
  color: #FFF;
  border-color: rgba(246,240,230,.5);
}
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.arrow { transition: transform .18s ease; }
.btn:hover .arrow, .tlink:hover .arrow, .cat__cta:hover .arrow { transform: translateX(3px); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
}
.tlink:hover { color: var(--red); }
.tlink--light { color: var(--cream); }
.tlink--light:hover { color: var(--brass-lt); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,240,230,.93);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 14px rgba(28,23,20,.08); }
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 66px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; min-width: 0; }
.brand__pole { width: 14px; height: 38px; border-radius: 7px; flex: none;
  background: repeating-linear-gradient(45deg, var(--red) 0 6px, var(--cream) 6px 12px, #1E4E7A 12px 18px, var(--cream) 18px 24px);
  border: 1.5px solid var(--brass); }
.brand__name { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand__name b {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand__name span {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .62rem;
  color: var(--brass);
  margin-top: .18rem;
}

.nav { display: none; margin-left: auto; gap: 1.5rem; }
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav a:hover { color: var(--red); }

.header-cta { display: none; }

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 66px 0 auto 0;
  z-index: 49;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .8rem var(--pad) 1.4rem;
  transform: translateY(-130%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  padding: .85rem .2rem;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.02rem;
  border-bottom: 1px solid var(--bg-soft);
}
.mobile-nav .btn { justify-content: center; margin-top: .8rem; border-bottom: none; color: #FFF; }
.mobile-nav .tlink-call {
  text-align: center;
  font-weight: 600;
  color: var(--red);
  padding-top: 1rem;
  border-bottom: none;
}

/* ---------- Hero ---------- */
.hero { padding: clamp(2.2rem, 6vw, 4rem) 0 clamp(1.4rem, 4vw, 2.4rem); }
.hero .wrap { display: grid; gap: clamp(1.8rem, 5vw, 3rem); }
.hero__intro { min-width: 0; }
.hero__lead { margin-top: 1.05rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.3rem;
  margin-top: 1.7rem;
}
.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  margin-top: 1.7rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}
.hero__note .tick { color: var(--red); font-weight: 700; margin-right: .25rem; }

/* ---------- Hero photo + credentials card ---------- */
.hero__art { position: relative; min-width: 0; max-width: 360px; margin-inline: auto; }
.hero__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 7px solid var(--surface);
  outline: 1px solid var(--line);
  filter: sepia(0.16) saturate(1.05) contrast(1.04) brightness(1.01);
}
.hero__cap {
  position: absolute; top: .9rem; left: .9rem;
  background: rgba(28,23,20,.82);
  color: var(--cream);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .68rem;
  font-weight: 500;
  padding: .35rem .65rem;
  border-radius: 6px;
  border: 1px solid var(--brass);
}
.cred-card {
  margin-top: -2.4rem;
  margin-inline: auto;
  position: relative;
  width: min(94%, 420px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cred-card__head {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
}
.cred-card__head .yr {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brass-lt);
  line-height: 1;
  flex: none;
}
.cred-card__head b {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: .98rem;
  display: block;
}
.cred-card__head span { font-size: .78rem; color: #C9B79C; }
.cred-card__rows { list-style: none; }
.cred-card__rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.cred-card__rows span { color: var(--muted); }
.cred-card__rows b {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: .9rem;
  color: var(--ink);
  text-align: right;
}

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: #D9CBB6; }
.trust .wrap {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding-block: 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .88rem;
}
.trust .dot { color: var(--brass-lt); margin-right: .5rem; font-size: .7rem; vertical-align: middle; }

/* ---------- Sections ---------- */
.section { padding: clamp(2.8rem, 7vw, 5rem) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(1.7rem, 4vw, 2.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head h2 { margin-bottom: .75rem; }

/* ---------- Price menu ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.menu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: 1rem 1.35rem;
  border-top: 1px solid var(--line);
}
.menu-list li:first-child { border-top: none; }
.menu-list .svc { min-width: 0; }
.menu-list .svc b {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .015em;
  font-size: 1.02rem;
  color: var(--ink);
  display: block;
}
.menu-list .svc span { color: var(--muted); font-size: .9rem; display: block; margin-top: .12rem; }
.menu-list .dots { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-.32rem); min-width: 12px; }
.menu-list .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--red);
  flex: none;
}
.menu-note {
  background: var(--bg-tan);
  color: var(--ink-soft);
  font-size: .92rem;
  padding: 1rem 1.35rem;
  border-top: 1px solid var(--line);
}
.menu-note b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; }
.menu-aside {
  background: var(--ink);
  color: #D9CBB6;
  border-radius: 14px;
  padding: 1.7rem 1.5rem;
  align-self: start;
}
.menu-aside .eyebrow { color: var(--brass-lt); }
.menu-aside h3 { color: var(--cream); margin-bottom: .7rem; }
.menu-aside p { font-size: .96rem; color: #C4B49C; margin-bottom: 1.1rem; }
.menu-aside .btn { color: #FFF; }
.menu-aside .same-day {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .8rem;
  color: var(--brass-lt);
  border-top: 1px solid rgba(246,240,230,.14);
  padding-top: 1rem;
}

/* ---------- Heritage band ---------- */
.heritage { background: var(--ink); color: #E5D9C6; position: relative; }
.heritage .eyebrow { color: var(--brass-lt); }
.heritage h2 { color: var(--cream); }
.heritage-grid { display: grid; gap: 2rem; align-items: center; }
.heritage p { color: #C8B9A2; margin-bottom: 1rem; max-width: 60ch; }
.pull {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 3.4vw, 1.5rem);
  color: var(--cream);
  line-height: 1.2;
  border-left: 4px solid var(--red);
  padding-left: 1rem;
  margin: 1.4rem 0;
}
.stat-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.stat-tiles div {
  background: rgba(246,240,230,.05);
  border: 1px solid rgba(246,240,230,.14);
  border-radius: var(--r);
  padding: 1.1rem 1.15rem;
}
.stat-tiles b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--brass-lt);
  display: block;
  line-height: 1;
}
.stat-tiles span { font-size: .82rem; color: #B5A488; margin-top: .35rem; display: block; }

/* ---------- Why us ---------- */
.why-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem;
  border-top: 3px solid var(--brass);
}
.why-card b {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.05rem;
  color: var(--ink);
  display: block;
  margin-bottom: .4rem;
}
.why-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Visit / hours / contact ---------- */
.visit { background: var(--red-deep); color: #F0DFD2; }
.visit .eyebrow { color: var(--brass-lt); }
.visit h2 { color: var(--cream); }
.visit .lead { color: #E2CDC0; }
.visit-grid { display: grid; gap: 2.2rem; }
.visit h2 { margin-bottom: .8rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.hours-card {
  list-style: none;
  display: grid;
  gap: .2rem;
  background: rgba(246,240,230,.06);
  border: 1px solid rgba(246,240,230,.16);
  border-radius: var(--r);
  padding: 1.5rem 1.6rem;
  align-self: start;
}
.hours-card .hc-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .78rem;
  color: var(--brass-lt);
  margin-bottom: .7rem;
}
.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-top: 1px solid rgba(246,240,230,.12);
  font-size: .98rem;
}
.hours-card li:first-of-type { border-top: none; }
.hours-card .day { color: #E2CDC0; font-weight: 500; }
.hours-card .hrs { font-family: var(--font-display); letter-spacing: .02em; color: var(--cream); }
.hours-card .closed { color: #C99; }
.hours-foot {
  display: block;
  margin-top: .6rem;
  padding-top: .8rem !important;
  border-top: 1px solid rgba(246,240,230,.12);
  font-size: .82rem;
  color: #D8C2B4;
  line-height: 1.55;
}
.contact-list { list-style: none; display: grid; gap: .8rem; margin-top: 1.5rem; }
.contact-list li { display: grid; grid-template-columns: 70px 1fr; gap: .8rem; align-items: baseline; font-size: 1rem; }
.ci-label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .74rem;
  color: #D0B9A9;
}
.contact-list a { font-weight: 600; color: var(--brass-lt); }
.contact-list a:hover { text-decoration: underline; }
.contact-list span { color: #F0DFD2; }

/* ---------- Welcome / inclusive note ---------- */
.welcome { background: var(--bg-tan); }
.welcome .wrap { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; justify-content: center; text-align: center; }
.welcome img { width: 64px; height: auto; border-radius: 5px; border: 1px solid var(--line); flex: none; }
.welcome p {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .95rem;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #15110E;
  color: #978778;
  padding: clamp(2.4rem, 6vw, 3.4rem) 0 2.2rem;
}
.site-footer .wrap { display: grid; gap: 1.6rem; }
.site-footer .brand__name b { color: var(--cream); }
.site-footer p { font-size: .92rem; line-height: 1.65; max-width: 46ch; }
.foot-meta { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; color: #BBAB99; }
.foot-links { display: flex; flex-wrap: wrap; gap: .9rem 1.6rem; }
.foot-links a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-weight: 500; font-size: .85rem; color: #C7B7A4; }
.foot-links a:hover { color: var(--brass-lt); }
.foot-legal {
  font-size: .8rem;
  color: #786A5C;
  border-top: 1px solid #2A2017;
  padding-top: 1.4rem;
  line-height: 1.7;
}
.foot-legal a { color: #C7B7A4; text-decoration: underline; }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 48;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(28,23,20,.16);
  padding: .65rem var(--pad);
  transform: translateY(120%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.callbar.show { transform: translateY(0); }
.callbar span { font-size: .88rem; color: var(--muted); line-height: 1.3; }
.callbar strong { color: var(--ink); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   BREAKPOINTS
   =================================================================== */
@media (min-width: 620px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .trust .wrap { flex-direction: row; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; text-align: center; }
}

@media (min-width: 860px) {
  .hero .wrap { grid-template-columns: 1.08fr .92fr; align-items: center; }
  .hero__art { order: 2; }
  .menu-grid { grid-template-columns: 1.4fr .6fr; align-items: start; }
  .heritage-grid { grid-template-columns: 1.15fr .85fr; }
  .visit-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
}

@media (min-width: 960px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; margin-left: .3rem; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
  .callbar { display: none; }
  .why-cards { grid-template-columns: repeat(4, 1fr); }
}
