/* Neto Barber — identidad editorial de barbería clásica. Negro / crema / dorado. */

:root {
  --bg: #0a0908;
  --bg-alt: #131110;
  --card: #17140f;
  --ivory: #f3ead9;
  --text: #e9e1d1;
  --text-dim: #9c9282;
  --accent: #c9a256;
  --accent-soft: rgba(201, 162, 86, 0.14);
  --accent-dim: #7d6a3d;
  --border: #2b2620;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "EB Garamond", "Georgia", serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in-view { opacity: 1; transform: none; }

.eyebrow {
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-family: "EB Garamond", serif;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(10px);
  border-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 1.05rem;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--ivory);
}

.brand-name em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.86rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 22px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--accent); color: #14120d; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 24px; height: 1px; background: var(--ivory); }

/* ===== Hero ===== */
.hero {
  padding: 150px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-text .eyebrow { margin-bottom: 20px; display: inline-block; }

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-text h1 span { color: var(--accent); font-style: italic; font-weight: 400; }

.hero-text p {
  color: var(--text-dim);
  font-size: 1.1rem;
  font-style: italic;
  max-width: 460px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--accent); color: #14120d; }
.btn-primary:hover { background: var(--ivory); }
.btn-ghost { border: 1px solid rgba(233, 225, 209, 0.4); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-media { aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--border); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(25%) contrast(1.05); }

/* ===== Stats bar ===== */
.stats-bar {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 40px 16px;
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: none; }
.stat .num {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.stat .label {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Sections shared ===== */
section { padding: 110px 0; }

.section-head {
  margin-bottom: 60px;
}
.section-head.center { text-align: center; }
.section-head h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-top: 12px;
  color: var(--ivory);
}

/* ===== Services — editorial menu list ===== */
.menu-list { border-top: 1px solid var(--border); }

.menu-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.menu-row:hover {
  padding-left: 14px;
  border-color: var(--accent-dim);
}
.menu-row:hover::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
}

.menu-num {
  font-family: "Playfair Display", serif;
  color: var(--accent-dim);
  font-size: 0.95rem;
}

.menu-name {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--ivory);
  margin-bottom: 6px;
}

.menu-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 460px;
}

.menu-price {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--accent-dim);
  background: rgba(201, 162, 86, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.menu-row:hover .menu-price {
  background: rgba(201, 162, 86, 0.16);
  border-color: var(--accent);
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-media { position: relative; }

.about-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) contrast(1.08);
}

.about-quote {
  position: relative;
  padding-left: 6px;
}
.about-quote .mark {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.4;
  display: block;
  margin-bottom: 18px;
}
.about-quote blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 24px;
}
.about-text p { color: var(--text-dim); margin-bottom: 16px; }
.about-sign {
  margin-top: 24px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1.15rem;
}

/* ===== Gallery — bento ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 10px;
}
.bento-item {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.bento-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) contrast(1.05);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.bento-item:hover img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.05);
}
.bento-item.b-lg { grid-column: span 2; grid-row: span 2; }
.bento-item.b-wide { grid-column: span 2; }
.bento-item.b-tall { grid-row: span 2; }

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testi-card {
  padding: 34px 30px;
  border: 1px solid var(--border);
  background: var(--card);
}
.testi-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--ivory);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.testi-name { color: var(--accent); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

/* ===== CTA banner ===== */
.cta-banner {
  padding: 90px 0;
  text-align: center;
  background:
    linear-gradient(180deg, var(--bg-alt), var(--bg)),
    radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ivory);
  margin-bottom: 26px;
}

/* ===== Contact ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.info-card { background: var(--card); padding: 40px; }
.info-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 22px;
  font-size: 1.3rem;
  color: var(--ivory);
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-dim);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--text); }
.contact-list a, .contact-list div {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.98rem; color: var(--text-dim);
}
.contact-list a:hover { color: var(--accent); }
.contact-list a:last-child { border-bottom: none; }

/* ===== Footer ===== */
footer { padding: 60px 0 26px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-name { display: block; margin-bottom: 12px; }
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  font-family: "Playfair Display", serif;
  color: var(--ivory);
  margin-bottom: 14px;
  font-size: 1rem;
}
.footer-col a, .footer-col div {
  display: block;
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ===== Mobile sticky CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10,9,8,0.96);
  border-top: 1px solid var(--border);
}
.mobile-cta a {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #14120d;
  padding: 13px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Mobile ===== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; aspect-ratio: 4 / 3; margin-bottom: 6px; }
  .hero-actions { margin-bottom: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .about { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .bento-item.b-lg { grid-column: span 2; grid-row: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .menu-row { grid-template-columns: 32px 1fr; }
  .menu-price { grid-column: 2; margin-top: 6px; }
  .mobile-cta { display: block; }
  section { padding: 70px 0; }
  body { padding-bottom: 66px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 110px 0 50px; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { font-size: 1.02rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 26px 10px; }
  .stat .num { font-size: 1.6rem; }
  .stat .label { font-size: 0.68rem; }
  .section-head h2 { font-size: 1.7rem; }
  .menu-name { font-size: 1.12rem; }
  .menu-price { font-size: 1.05rem; padding: 6px 14px; justify-self: start; }
  .about-quote blockquote { font-size: 1.2rem; }
  .about-quote .mark { font-size: 3.6rem; }
  .about-photo { aspect-ratio: 4 / 4; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; gap: 6px; }
  .testi-card { padding: 26px 22px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .info-card { padding: 26px; }
  .footer-grid { gap: 30px; }
}

.nav-links.open {
  display: flex;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 78%;
  max-width: 320px;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  flex-direction: column;
  padding: 100px 34px;
  gap: 26px;
  font-size: 1.05rem;
}
