/* ===== Layout sections — classic neighborhood barber ===== */

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background var(--t-med), border-color var(--t-med), padding var(--t-med); border-bottom: 1px solid transparent; }
.nav.scrolled { background: color-mix(in oklab, var(--bg) 90%, transparent); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; transition: padding var(--t-med); }
.nav.scrolled .nav-in { padding-top: 12px; padding-bottom: 12px; }
.nav-logo { display: flex; align-items: center; gap: 13px; }
.nav-pole { height: 30px; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-name { font-size: 21px; font-weight: 700; white-space: nowrap; }
.nav-sub { font-size: 10px; letter-spacing: 0.34em; color: var(--ink-mute); margin-top: 4px; white-space: nowrap; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); position: relative; transition: color var(--t-fast); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0; background: var(--accent); transition: width var(--t-fast); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--ink); border: 1.5px solid var(--accent); border-radius: 100px; padding: 9px 18px; transition: background var(--t-fast), color var(--t-fast); }
.nav-phone:hover { background: var(--accent); color: var(--on-accent); }
.nav-burger { display: none; font-size: 22px; width: 44px; height: 44px; place-items: center; margin-right: -10px; }
.nav-mobile { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: grid; }
  .nav-mobile { display: flex; flex-direction: column; gap: 6px; padding: 12px var(--gutter) 22px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
  .nav-mobile a:not(.btn) { padding: 11px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
  .nav-mobile .btn { margin-top: 12px; justify-content: center; }
}

/* HERO */
.hero { position: relative; padding-top: 160px; padding-bottom: 90px; overflow: hidden; }
.hero-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 70% at 88% 10%, var(--accent-soft), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; }
.hero-eyebrow { margin-bottom: 22px; }
.hero-title { font-size: clamp(50px, 8vw, 96px); margin-bottom: 26px; text-wrap: balance; }
.hero-em { color: var(--accent); }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-soft); max-width: 48ch; margin-bottom: 32px; line-height: 1.65; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-slot { display: block; width: 100%; height: 520px; box-shadow: 0 30px 70px -30px rgba(31,27,23,0.5); }
.hero-art-tag { position: absolute; left: 18px; bottom: 18px; background: var(--ink); color: var(--on-dark); font-size: 11px; letter-spacing: 0.2em; padding: 7px 13px; border-radius: 100px; white-space: nowrap; }

/* hero layout variants */
.hero-split .hero-grid { grid-template-columns: 0.85fr 1.15fr; }
.hero-split .hero-copy { order: 2; }
.hero-split .hero-art { order: 1; }
.hero-center .hero-grid { grid-template-columns: 1fr; max-width: 920px; text-align: center; }
.hero-center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-center .hero-cta { justify-content: center; }
.hero-center .hero-slot { height: 360px; margin-top: 8px; }
@media (max-width: 860px) {
  .hero-grid, .hero-split .hero-grid { grid-template-columns: 1fr; }
  .hero-art, .hero-split .hero-art { order: -1; }
  .hero-split .hero-copy { order: 0; }
  .hero-slot { height: 320px; }
}

/* SECTION shell */
.sec { padding: clamp(70px, 9vw, 128px) 0; }
.sec-head { max-width: 680px; margin-bottom: 50px; }
.sec-title { font-size: clamp(34px, 5vw, 60px); margin-top: 14px; }

/* THE CUTS */
.cut-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .cut-grid { grid-template-columns: 1fr; } }
.cut-card { position: relative; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 32px 28px; display: flex; flex-direction: column; min-height: 240px; transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast); overflow: hidden; }
.cut-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 8px, transparent 8px 16px, var(--accent) 16px 24px, transparent 24px 32px);
  transform: translateY(4px); transition: transform var(--t-med); }
.cut-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 20px 40px -26px rgba(31,27,23,0.5); }
.cut-card:hover::after { transform: none; }
.cut-icon { color: var(--accent); margin-bottom: 18px; }
.cut-name { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cut-desc { color: var(--ink-soft); font-size: 16px; flex: 1; }
.cut-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.cut-price { font-size: 19px; font-weight: 600; color: var(--accent); letter-spacing: 0.04em; }
.cut-book { font-size: 13px; font-weight: 600; color: var(--ink); opacity: 0; transform: translateX(-6px); transition: opacity var(--t-fast), transform var(--t-fast); }
.cut-card:hover .cut-book { opacity: 1; transform: none; }

/* THE NUMBERS band */
.numbers { background: var(--ink); color: var(--on-dark); padding: 40px 0; }
.numbers-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.num-cell { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1 1 auto; min-width: 110px; position: relative; }
.num-cell:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); width: 1px; height: 44px; background: rgba(242,235,221,0.16); }
.num-big { font-size: clamp(34px, 4.5vw, 52px); color: var(--accent); line-height: 1; }
.num-small { font-size: 12px; letter-spacing: 0.18em; color: rgba(242,235,221,0.7); }
@media (max-width: 720px) { .num-cell:not(:last-child)::after { display: none; } .num-cell { flex-basis: 40%; } }

/* WALK-IN POLICY */
.walkin { padding-top: clamp(60px, 8vw, 110px); padding-bottom: clamp(60px, 8vw, 110px); }
.walkin-wrap { max-width: 920px; text-align: center; margin: 0 auto; }
.walkin .kicker { margin-bottom: 24px; }
.walkin-copy { font-size: clamp(24px, 3.6vw, 40px); line-height: 1.35; color: var(--ink); text-wrap: balance; }

/* VISIT (charcoal card) */
.visit-card { background: var(--ink); color: var(--on-dark); border-radius: var(--r-lg); padding: clamp(32px, 5vw, 60px); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; gap: 36px; } }
.visit-info .kicker { color: var(--accent); }
.visit-addr { font-size: clamp(34px, 4.6vw, 56px); margin: 16px 0 6px; color: var(--on-dark); }
.visit-postal { font-size: 12px; letter-spacing: 0.18em; color: rgba(242,235,221,0.6); margin-bottom: 30px; }
.visit-meta { display: flex; gap: 48px; flex-wrap: wrap; }
.visit-k { display: block; font-size: 11px; letter-spacing: 0.18em; color: rgba(242,235,221,0.6); margin-bottom: 12px; }
.visit-hours td { padding: 6px 24px 6px 0; font-size: 15px; color: var(--on-dark); }
.visit-hours td:last-child { font-family: "Spline Sans Mono", monospace; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(242,235,221,0.78); padding-right: 0; }
.visit-phone { font-family: var(--serif); font-size: 26px; color: var(--on-dark); display: block; transition: color var(--t-fast); }
.visit-phone:hover { color: var(--accent); }
.visit-btn { margin-top: 20px; }
.visit-map { position: relative; }
.visit-map-slot { display: block; width: 100%; height: 360px; }
.visit-map-frame {
  display: block; width: 100%; height: 360px; border: 0;
  border-radius: var(--r-md);
  box-shadow: 0 0 0 1px var(--line);
  filter: saturate(0.9) contrast(0.98);
}
.visit-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); }
.visit-pin .pole { height: 50px; box-shadow: 0 12px 28px -8px rgba(0,0,0,0.5); }

/* FOOTER */
.footer { background: var(--bg-2); }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(56px, 7vw, 96px) var(--gutter); flex-wrap: wrap; }
.footer-big { font-size: clamp(40px, 6.5vw, 78px); }
.footer-book { font-size: 16px; padding: 17px 30px; }
.footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px var(--gutter); flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 700; }
.footer-pole { height: 24px; }
.footer-fine { font-size: 11px; letter-spacing: 0.1em; color: var(--ink-mute); text-align: right; }
@media (max-width: 640px) { .footer-fine { text-align: left; } }
