/* Ace Barbershop DTLV — personalized, no stock shop photos */
:root {
  --ink: #1a120e;
  --paper: #faf6f1;
  --soft: #f0e6dc;
  --accent: #c2410c;
  --muted: color-mix(in srgb, var(--ink) 55%, transparent);
  --line: color-mix(in srgb, var(--ink) 12%, transparent);
  --font: "DM Sans", system-ui, sans-serif;
  --serif: "Bitter", Georgia, serif;
  --w: 1040px;
  --ease: cubic-bezier(.22,1,.36,1);
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
.wrap { width: min(100% - 2.5rem, var(--w)); margin-inline: auto; }

.owner {
  background: #ecfdf5; color: #065f46; font-size: .78rem;
  text-align: center; padding: .55rem 1rem; line-height: 1.5;
  border-bottom: 1px solid #a7f3d0;
}
.owner strong { color: #064e3b; }
.owner a { color: #0f766e; margin-left: .3rem; text-decoration: underline; text-underline-offset: 2px; }
.ribbon {
  background: #fff7ed; color: #9a3412; font-size: .72rem; font-weight: 600;
  text-align: center; padding: .4rem 1rem; border-bottom: 1px solid #fed7aa;
}

.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 90%, white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; gap: 1rem; min-height: 64px; }
.brand { display: flex; align-items: center; gap: .75rem; margin-right: auto; }
.mono {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: .85rem;
  letter-spacing: .04em; flex-shrink: 0;
}
.logo-text strong {
  display: block; font-family: var(--serif); font-size: 1.05rem;
  letter-spacing: -.02em; line-height: 1.15;
}
.logo-text span {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.nav-links { display: none; gap: 1.35rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.call-pill {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--paper);
  padding: .55rem 1rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  transition: background .2s, transform .2s var(--ease);
}
.call-pill:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.menu-btn {
  width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; border-radius: 10px; cursor: pointer;
  display: grid; place-items: center; gap: 5px;
}
.menu-btn i { display: block; width: 16px; height: 1.5px; background: var(--ink); }
.mobile { display: none; flex-direction: column; padding: 0 0 1rem; }
.mobile.open { display: flex; }
.mobile a { padding: .7rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
@media (min-width: 820px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
}

.hero { padding: 3.25rem 0 2.75rem; }
.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.8vw, 3.5rem);
  line-height: 1.08; letter-spacing: -.03em;
  margin: 0 0 .55rem; max-width: 16ch;
}
.hero .sub {
  font-size: 1.05rem; color: var(--muted); margin: 0 0 1.25rem;
}
.hero .lede {
  font-size: 1.05rem; color: var(--muted); max-width: 38rem; margin: 0 0 1.5rem;
}
.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.3rem; border-radius: 999px; font-weight: 650; font-size: .95rem;
  border: 1.5px solid transparent; transition: .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { filter: brightness(1.05); }
.btn-line { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--ink); }

.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
@media (min-width: 640px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact {
  background: var(--soft); border: 1px solid var(--line);
  border-radius: 14px; padding: 1rem 1.05rem;
}
.fact strong {
  display: block; font-family: var(--serif); font-size: 1.35rem; line-height: 1.1;
}
.fact span { font-size: .78rem; color: var(--muted); }

/* identity panel instead of stock photo */
.hero-panel {
  margin-top: 2.5rem;
  display: grid; gap: 1rem;
}
@media (min-width: 860px) {
  .hero-panel { grid-template-columns: 1fr 1.2fr; gap: 1.25rem; align-items: stretch; }
}
.id-card {
  background: var(--ink); color: var(--paper);
  border-radius: 18px; padding: 1.75rem 1.6rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px;
}
.id-card .big-mono {
  font-family: var(--serif); font-size: clamp(3.5rem, 10vw, 5rem);
  line-height: .9; letter-spacing: -.04em; opacity: .95;
}
.id-card .id-meta { margin-top: 1.5rem; }
.id-card .id-meta p { margin: .2rem 0; opacity: .85; font-size: .95rem; }
.id-card .id-meta strong { opacity: 1; font-size: 1.1rem; }

.map-card {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  display: flex; flex-direction: column;
  min-height: 240px;
}
.map-card iframe {
  border: 0; width: 100%; flex: 1; min-height: 220px;
  filter: grayscale(.15) contrast(1.02);
}
.map-card .map-foot {
  display: flex; justify-content: space-between; align-items: center; gap: .75rem;
  padding: .75rem 1rem; background: #fff; border-top: 1px solid var(--line);
  font-size: .85rem;
}
.map-card .map-foot a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

section { padding: 3.5rem 0; border-top: 1px solid var(--line); }
.sec-soft { background: var(--soft); }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 .55rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: -.02em; margin: 0 0 1rem; line-height: 1.15;
}
.intro { color: var(--muted); max-width: 36rem; margin: 0 0 1.75rem; }

.menu { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.menu li {
  display: grid; grid-template-columns: 1fr auto; gap: .4rem 1.25rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.menu h3 { font-family: var(--serif); font-size: 1.2rem; margin: 0 0 .15rem; font-weight: 600; }
.menu p { margin: 0; color: var(--muted); font-size: .95rem; grid-column: 1; }
.menu .dot { font-size: .85rem; font-weight: 650; color: var(--accent); }
.menu-note { margin-top: 1.2rem; font-family: var(--serif); font-style: italic; color: var(--muted); font-size: .95rem; }

.details {
  display: grid; gap: 2rem;
}
@media (min-width: 800px) { .details { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.visit-list { list-style: none; margin: 0; padding: 0; }
.visit-list li { padding: .85rem 0; border-bottom: 1px solid var(--line); }
.visit-list strong {
  display: block; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .15rem;
}
.visit-list a { text-decoration: underline; text-underline-offset: 3px; }
.visit-list a:hover { color: var(--accent); }

form.simple { display: grid; gap: .8rem; }
form.simple label { display: grid; gap: .3rem; font-size: .85rem; font-weight: 600; color: var(--muted); }
form.simple input, form.simple textarea {
  width: 100%; padding: .75rem .9rem; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink);
}
form.simple input:focus, form.simple textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-color: var(--accent);
}
form.simple textarea { min-height: 96px; resize: vertical; }
.form-hint { font-size: .8rem; color: var(--muted); margin: 0; }

.personal {
  border: 1px dashed color-mix(in srgb, var(--accent) 40%, var(--line));
  background: color-mix(in srgb, var(--accent) 6%, var(--paper));
  border-radius: 14px; padding: 1.1rem 1.2rem; margin-top: 1.5rem;
  font-size: .92rem; color: var(--muted);
}
.personal strong { color: var(--ink); }

footer.site {
  padding: 2.25rem 0 5.5rem; border-top: 1px solid var(--line);
  background: var(--soft); font-size: .9rem; color: var(--muted);
}
@media (min-width: 800px) { footer.site { padding-bottom: 2.25rem; } }
.foot { display: grid; gap: 1rem; }
@media (min-width: 700px) { .foot { grid-template-columns: 1.4fr 1fr 1fr; } }
.fine { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .8rem; }
.fine a { text-decoration: underline; text-underline-offset: 2px; }

.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: .5rem; padding: .7rem .85rem;
  background: color-mix(in srgb, var(--paper) 94%, white);
  border-top: 1px solid var(--line); backdrop-filter: blur(10px);
}
.sticky .btn { flex: 1; }
@media (min-width: 800px) { .sticky { display: none; } }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
