/* ============================================================
   CESAR BARBERSHOP — GENK
   Vintage early-1900s barbershop · warm Americana
   ============================================================ */

:root {
  --ink: #1a1a1a;
  --ink-soft: #2a2622;
  --charcoal: #3a342e;
  --cream: #f4ecd8;
  --cream-deep: #ead9b3;
  --cream-shadow: #d9c79b;
  --brass: #c9a227;
  --brass-light: #e3c25c;
  --brass-deep: #8a6f15;
  --barber-red: #9b2226;
  --barber-red-deep: #6b1518;
  --navy: #1d3557;

  --font-display: "Times New Roman", "Times", "Liberation Serif", serif;
  --font-serif: "Times New Roman", "Times", "Liberation Serif", serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Times New Roman", "Times", "Liberation Serif", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ============================================================
   PAPER / TEXTURE
   ============================================================ */
.paper {
  position: relative;
  background-color: var(--cream);
  background-image:
    radial-gradient(at 12% 8%, rgba(155, 34, 38, 0.04) 0px, transparent 50%),
    radial-gradient(at 90% 92%, rgba(29, 53, 87, 0.05) 0px, transparent 50%),
    radial-gradient(at 60% 20%, rgba(201, 162, 39, 0.06) 0px, transparent 60%);
}

.paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0 0.10  0 0 0 0.16 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
  z-index: 0;
}

.dark { background: var(--ink); color: var(--cream); }
.dark.paper {
  background-color: var(--ink);
  background-image:
    radial-gradient(at 15% 10%, rgba(201, 162, 39, 0.12) 0px, transparent 55%),
    radial-gradient(at 85% 90%, rgba(155, 34, 38, 0.10) 0px, transparent 55%);
}
.dark.paper::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.93  0 0 0 0 0.78  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* Container */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 2px 0 rgba(201,162,39,0.15), 0 8px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
@media (max-width: 860px) {
  .nav-logo { height: 44px; }
}
.nav-brand .est {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.18em;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.nav-brand-mark {
  width: 36px; height: 36px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brass-light);
  background: radial-gradient(circle at 30% 30%, #2a2622, #0e0e0e);
}

.nav-links {
  display: flex; gap: 4px;
  list-style: none; padding: 0; margin: 0;
  align-items: center;
}
.nav-links button {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 14px;
  position: relative;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
}
.nav-links button:hover { opacity: 1; color: var(--brass-light); }
.nav-links button.active { color: var(--brass-light); opacity: 1; }
.nav-links button.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--brass);
}

.nav-cta {
  background: var(--barber-red);
  color: var(--cream);
  border: 1px solid var(--brass);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 18px;
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--brass-deep);
  transition: transform .15s, background .2s;
}
.nav-cta:hover { background: var(--barber-red-deep); transform: translateY(-1px); }

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(201,162,39,0.5);
  color: var(--brass-light);
  padding: 8px 10px;
  font-size: 18px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { padding: 9px 12px; font-size: 11px; letter-spacing: 0.16em; }
  .nav-brand { font-size: 18px; }
  .nav-brand .est { font-size: 10px; }
}
.mobile-menu {
  display: none;
  background: #111;
  border-top: 1px solid rgba(201,162,39,0.3);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none; padding: 6px 0; margin: 0;
}
.mobile-menu button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu button.active { color: var(--brass-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background-color: var(--cream);
  color: var(--ink);
}
.hero::before { content: none; }
.hero::after { content: none; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-inner-single {
  grid-template-columns: 1fr;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.hero-inner-single .hero-badge,
.hero-inner-single .hero-actions {
  justify-content: center;
}
.hero-inner-single .hero-intro {
  margin-left: auto;
  margin-right: auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-deep);
  border: 1px solid rgba(201,162,39,0.55);
  padding: 8px 14px;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--barber-red); box-shadow: 0 0 8px var(--barber-red); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 0 0 0;
  color: var(--ink);
  text-shadow: none;
}
.hero-logo-wrap {
  margin: 0 0 10px;
  padding: 0;
}
.hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(201,162,39,0.15));
}
@media (max-width: 760px) {
  .hero-logo { max-width: 320px; margin: 0 auto; }
}

.hero-amp {
  font-family: var(--font-script);
  color: var(--brass-light);
  font-size: 0.6em;
  font-weight: 400;
  text-shadow: 0 0 18px rgba(201,162,39,0.4);
  display: inline-block;
  transform: translateY(-0.15em);
}
.hero-sub {
  margin-top: 18px;
  font-family: var(--font-script);
  color: var(--barber-red);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
}
.hero-intro {
  max-width: 540px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.hero-actions {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid var(--brass);
  background: var(--barber-red);
  color: var(--cream);
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--brass-deep), 0 12px 28px rgba(0,0,0,0.18);
  transition: transform .15s, background .2s;
}
.btn:hover { background: var(--barber-red-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--barber-red);
  border-color: rgba(155,34,38,0.45);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(155,34,38,0.08); color: var(--barber-red-deep); }

.hero-meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 28px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.55);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta i {
  width: 22px; height: 1px; background: var(--brass); display: inline-block;
}

/* ============================================================
   BARBER POLE
   ============================================================ */
.pole-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.55));
}
.pole-cap {
  width: 78px;
  height: 22px;
  background: linear-gradient(180deg, #f0d27a 0%, #c9a227 35%, #7a5e10 100%);
  border-radius: 6px 6px 2px 2px;
  border: 1px solid #5a4408;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -3px 0 rgba(0,0,0,0.3);
}
.pole-cap.bot { border-radius: 2px 2px 6px 6px; }
.pole-knob {
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f4d97a, #c9a227 60%, #6e5410);
  border: 1px solid #5a4408;
  margin: -6px 0;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.5);
}
.pole-cyl {
  width: 62px;
  height: 320px;
  border-radius: 8px;
  background:
    /* glass highlight */
    linear-gradient(90deg, rgba(255,255,255,0.18) 0%, transparent 35%, transparent 65%, rgba(255,255,255,0.10) 100%),
    repeating-linear-gradient(
      115deg,
      #d9d9d9 0px, #d9d9d9 14px,
      #9b2226 14px, #9b2226 28px,
      #d9d9d9 28px, #d9d9d9 42px,
      #1d3557 42px, #1d3557 56px
    );
  background-size: 100% 100%, 100% 112px;
  animation: pole 3.2s linear infinite;
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18), inset 0 0 22px rgba(0,0,0,0.35);
  position: relative;
}
.pole-cyl::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 18%, transparent 82%, rgba(0,0,0,0.25) 100%);
  border-radius: 8px;
  pointer-events: none;
}
@keyframes pole {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 0, 0 -112px; }
}
.pole-stand {
  width: 8px;
  height: 36px;
  background: linear-gradient(180deg, #c9a227, #6e5410);
  border-radius: 2px;
}
.pole-base {
  width: 110px; height: 14px;
  background: linear-gradient(180deg, #c9a227, #6e5410);
  border-radius: 4px 4px 2px 2px;
  border: 1px solid #5a4408;
}

@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-inner .pole-wrap { order: -1; transform: scale(0.85); margin: 0 auto 8px; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-intro { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
section.block {
  position: relative;
  padding: 110px 0;
  z-index: 1;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 12px;
}
.dark .eyebrow { color: var(--brass-light); }
.eyebrow::before, .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.55;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.section-script {
  font-family: var(--font-script);
  color: var(--barber-red);
  font-size: clamp(28px, 4vw, 42px);
  display: block;
  line-height: 0.6;
  margin-bottom: 6px;
}
.dark .section-script { color: var(--brass-light); }

.section-head { text-align: center; margin-bottom: 56px; }

/* Ornate divider */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--charcoal);
  margin: 22px 0;
  opacity: 0.7;
}
.dark .divider { color: var(--brass-light); opacity: 0.55; }
.divider .line { height: 1px; width: 80px; background: currentColor; }
.divider .diamond {
  width: 8px; height: 8px;
  transform: rotate(45deg);
  background: currentColor;
}
.divider .star {
  font-size: 14px; line-height: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
  border-top: 2px solid rgba(26,26,26,0.08);
  border-bottom: 2px solid rgba(26,26,26,0.08);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy { font-family: var(--font-serif); font-size: 22px; line-height: 1.55; color: var(--ink-soft); }
.about-copy p { margin: 0 0 22px; }
.about-copy p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--barber-red);
}
.about-stats {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
  border-top: 1px solid rgba(26,26,26,0.15);
  border-bottom: 1px solid rgba(26,26,26,0.15);
  padding: 22px 0;
  font-family: var(--font-body);
}
.about-stats div { text-align: center; }
.about-stats strong {
  font-family: var(--font-display);
  display: block;
  font-size: 34px;
  color: var(--ink);
  line-height: 1;
}
.about-stats span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.75;
}

.crest-logo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 20px;
}
.crest-logo img {
  width: 100%;
  height: auto;
  max-width: 380px;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.18));
}
.crest {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1.05;
  margin: 0 auto;
  position: relative;
  display: grid; place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,162,39,0.18), transparent 55%),
    var(--ink);
  color: var(--cream);
  border: 2px solid var(--brass);
  box-shadow:
    0 0 0 8px var(--cream),
    0 0 0 10px var(--ink),
    0 30px 60px rgba(0,0,0,0.25);
  padding: 36px;
  clip-path: polygon(50% 0, 100% 8%, 100% 92%, 50% 100%, 0 92%, 0 8%);
}
.crest::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(201,162,39,0.5);
  clip-path: polygon(50% 0, 100% 8%, 100% 92%, 50% 100%, 0 92%, 0 8%);
}
.crest .crest-top {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--brass-light);
}
.crest .crest-name {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin: 14px 0 6px;
  color: var(--cream);
}
.crest .crest-script {
  font-family: var(--font-script);
  color: var(--brass-light);
  font-size: 30px;
  line-height: 1;
}
.crest .crest-est {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: rgba(244,236,216,0.7);
}
.crest .crest-icons {
  margin-top: 18px;
  display: flex; justify-content: center; gap: 18px;
  color: var(--brass-light);
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-copy { font-size: 19px; }
}

/* ============================================================
   SERVICES — MENU BOARD
   ============================================================ */
.services { background: var(--cream); color: var(--ink); }
.menu-board {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(180deg, #211c16 0%, #15110d 100%);
  border: 2px solid var(--brass);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 60px rgba(0,0,0,0.6),
    0 30px 60px rgba(0,0,0,0.5);
  padding: 56px clamp(24px, 6vw, 72px);
  position: relative;
}
.menu-board::before, .menu-board::after {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: radial-gradient(circle, #f0d27a, #8a6f15);
}
.menu-board::before { top: 14px; left: 14px; box-shadow: 0 0 0 4px var(--ink); }
.menu-board::after { top: 14px; right: 14px; box-shadow: 0 0 0 4px var(--ink); }
.menu-board .corners-bot {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; pointer-events: none;
}
.menu-board .corners-bot span {
  width: 18px; height: 18px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: radial-gradient(circle, #f0d27a, #8a6f15);
  box-shadow: 0 0 0 4px var(--ink);
}
.menu-head {
  text-align: center; margin-bottom: 36px;
  border-bottom: 1px double rgba(201,162,39,0.45);
  padding-bottom: 26px;
}
.menu-head h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  margin: 0;
  letter-spacing: 0.03em;
  color: var(--brass-light);
}
.menu-head .sub {
  font-family: var(--font-script);
  color: var(--cream);
  font-size: 28px;
  line-height: 0.8;
  display: block;
  margin-top: 4px;
}
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 56px;
}
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(244,236,216,0.18);
}
.menu-item:last-child, .menu-item.no-border { border-bottom: 0; }
.menu-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
  font-size: 13px;
  width: 24px;
}
.menu-name {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--cream);
}
.menu-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.5);
  margin-top: 3px;
}
.menu-price {
  font-family: var(--font-display);
  color: var(--brass-light);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.menu-foot {
  text-align: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px double rgba(201,162,39,0.45);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(244,236,216,0.75);
}
/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-group {
  border: 1px solid rgba(201,162,39,0.35);
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.acc-group.open {
  border-color: var(--brass);
  background: rgba(201,162,39,0.05);
}
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.acc-head:hover { background: rgba(201,162,39,0.06); }
.acc-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.acc-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.acc-count {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.5);
}
.acc-chev {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  font-size: 18px;
  color: var(--brass-light);
  background: rgba(0,0,0,0.4);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1;
}
.acc-body {
  overflow: hidden;
  transition: max-height .35s ease;
}
.acc-list {
  list-style: none;
  margin: 0;
  padding: 4px 24px 22px;
}
.acc-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(244,236,216,0.18);
}
.acc-list li:last-child { border-bottom: 0; }
.acc-name {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--cream);
}
.acc-dots {
  flex: 1;
  height: 1px;
  background-image: radial-gradient(circle, rgba(244,236,216,0.35) 1px, transparent 1.5px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: center;
  margin: 0 6px;
  align-self: center;
}
.acc-price {
  font-family: var(--font-display);
  color: var(--brass-light);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .acc-head { padding: 18px 16px; }
  .acc-list { padding: 4px 16px 18px; }
  .acc-count { display: none; }
  .acc-name { font-size: 17px; }
  .acc-price { font-size: 18px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26,26,26,0.15);
  background: var(--ink);
  cursor: pointer;
  aspect-ratio: 1/1;
  transition: transform .25s, box-shadow .25s;
}
.gal:hover { transform: translateY(-3px); box-shadow: 0 18px 32px rgba(0,0,0,0.25); }
.gal-1 { grid-column: span 6; aspect-ratio: 6/5; }
.gal-2 { grid-column: span 3; }
.gal-3 { grid-column: span 3; }
.gal-4 { grid-column: span 4; aspect-ratio: 4/5; }
.gal-5 { grid-column: span 4; aspect-ratio: 4/5; }
.gal-6 { grid-column: span 4; aspect-ratio: 4/5; }
.gal-7 { grid-column: span 6; aspect-ratio: 6/4; }
.gal-8 { grid-column: span 6; aspect-ratio: 6/4; }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal { grid-column: span 1 !important; aspect-ratio: 1/1 !important; }
  .gal-1, .gal-7, .gal-8 { grid-column: span 2 !important; aspect-ratio: 16/10 !important; }
}

.gal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.gal:hover .gal-img { transform: scale(1.05); }

.gal-inner {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(244,236,216,0.65);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(140deg, #1a1a1a 0%, #2a221c 100%);
}
.gal-inner::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px dashed rgba(201,162,39,0.35);
}
.gal-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass-light);
  background: rgba(0,0,0,0.55);
  padding: 5px 9px;
  border: 1px solid rgba(201,162,39,0.4);
}
.gal-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  text-align: center;
  padding: 0 14px;
}
.gal-icon {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--brass-light);
  margin-bottom: 8px;
  opacity: 0.6;
}

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8,6,4,0.92);
  display: grid; place-items: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.lb-box {
  width: auto;
  max-width: 92vw;
  max-height: 86vh;
  border: 2px solid var(--brass);
  box-shadow: 0 0 0 6px var(--ink), 0 0 40px rgba(201,162,39,0.2);
  position: relative;
  background: #15110d;
  display: flex;
}
.lb-img {
  display: block;
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lb-close {
  position: absolute; top: -22px; right: -22px;
  width: 44px; height: 44px;
  background: var(--cream);
  border: 2px solid var(--brass);
  border-radius: 50%;
  color: var(--ink);
  font-size: 18px;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(20,16,12,0.85);
  border: 1px solid var(--brass);
  color: var(--brass-light);
  font-size: 22px;
}
.lb-nav.prev { left: -22px; }
.lb-nav.next { right: -22px; }
.lb-caption {
  position: absolute; bottom: -44px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream);
}

/* ============================================================
   BOOKING (Cal.com frame)
   ============================================================ */
.booking { background: var(--cream); }
.booking-frame {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 22px;
  border: 2px solid var(--brass);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 0 0 8px var(--cream),
    0 0 0 10px var(--ink),
    0 36px 60px rgba(0,0,0,0.18);
}
.booking-frame::before, .booking-frame::after,
.booking-frame .corner-bl, .booking-frame .corner-br {
  content: "";
  position: absolute; width: 24px; height: 24px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  background: radial-gradient(circle, #f0d27a, #8a6f15);
}
.booking-frame::before { top: -12px; left: -12px; }
.booking-frame::after { top: -12px; right: -12px; }
.booking-frame .corner-bl { bottom: -12px; left: -12px; }
.booking-frame .corner-br { bottom: -12px; right: -12px; }

.booking-notice {
  font-family: var(--font-serif);
  font-style: italic;
  text-align: center;
  font-size: 18px;
  color: var(--brass-light);
  padding: 12px 0 22px;
}
.cal-host {
  background: var(--cream);
  color: var(--ink);
  min-height: 620px;
  position: relative;
  display: grid; place-items: center;
  border: 1px solid rgba(201,162,39,0.35);
}
.cal-placeholder {
  text-align: center;
  padding: 60px 30px;
  max-width: 460px;
}
.cal-placeholder h4 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 10px;
  color: var(--ink);
}
.cal-placeholder code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  background: var(--ink);
  color: var(--brass-light);
  padding: 4px 10px;
  display: inline-block;
  border-radius: 2px;
  margin: 8px 0;
}
.cal-placeholder p {
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 16px;
}
.cal-placeholder .todo {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--barber-red);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); color: var(--ink); }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: stretch;
}
.map-frame {
  position: relative;
  border: 2px solid var(--brass);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
  min-height: 460px;
  background: #eadfc6;
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%; min-height: 460px;
  border: 0; filter: grayscale(0.15) sepia(0.15) contrast(0.98);
}
.contact-info {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(180deg, #211c16 0%, #15110d 100%);
  border: 2px solid var(--brass);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 60px rgba(0,0,0,0.5);
  padding: 36px;
  font-family: var(--font-serif);
  color: var(--cream);
  position: relative;
}
.contact-info h4 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--brass-light);
}
.contact-info .addr {
  font-size: 19px; line-height: 1.5;
  font-style: italic;
  margin: 8px 0 20px;
  color: rgba(244,236,216,0.85);
}
.contact-info a { color: var(--brass-light); text-decoration: none; }
.contact-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(244,236,216,0.18);
  font-family: var(--font-body);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .day { letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; color: rgba(244,236,216,0.75); }
.contact-row .hrs { font-family: var(--font-serif); font-style: italic; color: var(--cream); font-size: 16px; }
.contact-row.closed .hrs { color: var(--barber-red); font-style: italic; }
.contact-row.today {
  background: rgba(201,162,39,0.10);
  margin: 0 -14px; padding: 10px 14px;
  border-left: 2px solid var(--brass);
}
.contact-row.today .day { color: var(--brass-light); }

.contact-mini {
  margin-top: 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.contact-mini a {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid rgba(201,162,39,0.4);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: rgba(0,0,0,0.15);
}
.contact-mini a:hover { background: rgba(201,162,39,0.10); }

.contact-social {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-social a {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(201,162,39,0.45);
  background: rgba(0,0,0,0.18);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.contact-social a:hover {
  background: rgba(201,162,39,0.14);
  color: var(--brass-light);
  border-color: var(--brass);
}
.contact-social svg { flex-shrink: 0; }

/* Booking — single CTA */
.booking-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 8px;
}
.booking-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  padding: 22px 44px;
  letter-spacing: 0.26em;
}

.contact-info .eyebrow { color: var(--brass-light) !important; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
  .map-frame iframe { min-height: 320px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d0d0d;
  color: rgba(244,236,216,0.55);
  padding: 50px 0 30px;
  text-align: center;
  border-top: 1px solid rgba(201,162,39,0.25);
}
.footer .pole-mini {
  width: 14px; height: 70px;
  margin: 0 auto 22px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    115deg,
    #d9d9d9 0 6px,
    #9b2226 6px 12px,
    #d9d9d9 12px 18px,
    #1d3557 18px 24px
  );
  background-size: 100% 48px;
  animation: pole 3.2s linear infinite;
  border: 1px solid rgba(201,162,39,0.4);
}
.footer h5 {
  font-family: var(--font-display);
  color: var(--brass-light);
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: 0.06em;
}
.footer .tag {
  font-family: var(--font-script);
  color: var(--brass);
  font-size: 22px;
  margin-bottom: 18px;
}
.footer small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 14px;
  color: rgba(244,236,216,0.4);
}

/* Italic / fancy headings */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .section-script,
.menu-head h3, .menu-head .sub,
.acc-label, .acc-name, .acc-price,
.contact-info h4, .footer h5, .footer .tag,
.crest-name, .crest-script, .crest-top, .crest-est,
.hero-sub, .hero-amp, .nav-brand, .menu-foot,
.cal-placeholder h4, .lb-caption,
.gal-label {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 700;
}

.section-script, .hero-sub, .crest-script, .footer .tag,
.menu-head .sub, .gal-label, .lb-caption, .menu-foot {
  font-weight: 500;
}

.section-title, .hero-title, .menu-head h3,
.crest-name, .contact-info h4 {
  font-weight: 900;
  letter-spacing: 0.005em;
}

/* Body stays upright Roboto */
body, p, .hero-intro, .hero-badge, .eyebrow,
.nav-links button, .nav-cta, .btn, .acc-count,
.contact-row .day, .contact-mini a, .menu-num,
.about-stats span, .about-stats strong, small,
.cal-placeholder p, .cal-placeholder code, .cal-placeholder .todo,
.booking-notice {
  font-style: normal;
}

.about-stats strong { font-family: var(--font-display); font-style: italic; font-weight: 900; }
.booking-notice { font-family: var(--font-display); font-style: italic; font-weight: 500; }


/* Tablet & below */
@media (max-width: 980px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  section.block { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .menu-board { padding: 44px 28px; }
  .booking-frame { padding: 18px; }
  .contact-info { padding: 28px; }
}

/* Phones */
@media (max-width: 760px) {
  body { font-size: 15px; }

  /* Navbar */
  .nav-inner { padding: 10px 14px; gap: 10px; }
  .nav-logo { height: 40px; }
  .nav-cta {
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
    box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--brass-deep);
  }

  /* Hero */
  .hero { padding: 56px 0 72px; }
  .hero-inner { gap: 28px; }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 0.22em;
    padding: 7px 12px;
    margin-bottom: 18px;
  }
  .hero-logo { max-width: min(78vw, 320px); margin: 0 auto; }
  .hero-sub { font-size: clamp(24px, 7vw, 32px); }
  .hero-intro { font-size: 15px; line-height: 1.6; margin-top: 20px; padding: 0 4px; }
  .hero-actions { margin-top: 26px; gap: 10px; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; padding: 14px 18px; font-size: 12px; letter-spacing: 0.18em; }
  .hero-meta { gap: 14px; margin-top: 24px; font-size: 10px; }

  /* Section chrome */
  section.block { padding: 64px 0; }
  .section-title { font-size: clamp(30px, 9vw, 44px); }
  .section-script { font-size: clamp(22px, 6vw, 30px); }
  .section-head { margin-bottom: 32px; }
  .divider .line { width: 50px; }

  /* About */
  .about-grid { gap: 32px; }
  .about-copy { font-size: 17px; }
  .about-copy p:first-child::first-letter { font-size: 50px; padding: 4px 10px 0 0; }
  .crest-logo { padding: 10px; }
  .crest-logo img { max-width: 280px; }

  /* Services / menu board */
  .menu-board { padding: 34px 16px; }
  .menu-head { margin-bottom: 26px; padding-bottom: 18px; }
  .menu-head h3 { font-size: clamp(26px, 8vw, 36px); }
  .menu-head .sub { font-size: 20px; }
  .acc-head { padding: 16px 14px; gap: 10px; }
  .acc-label { font-size: 14px; letter-spacing: 0.12em; }
  .acc-meta { gap: 8px; }
  .acc-chev { width: 28px; height: 28px; font-size: 16px; }
  .acc-list { padding: 4px 14px 16px; }
  .acc-list li { padding: 12px 0; gap: 8px; }
  .acc-name { font-size: 16px; }
  .acc-price { font-size: 17px; }

  /* Gallery */
  .gallery-grid { gap: 10px; }
  .gal-label { font-size: 14px; }
  .gal-icon { font-size: 28px; }
  .gal-tag { font-size: 9px; padding: 4px 7px; letter-spacing: 0.18em; top: 10px; left: 10px; }
  .lb-close { top: -16px; right: -16px; width: 38px; height: 38px; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-nav.prev { left: -16px; }
  .lb-nav.next { right: -16px; }

  /* Booking */
  .booking-frame { padding: 14px; }
  .cal-host { min-height: 520px; }
  .cal-placeholder { padding: 40px 18px; }
  .cal-placeholder h4 { font-size: 22px; }
  .cal-placeholder code { font-size: 11px; word-break: break-all; }
  .booking-notice { font-size: 15px; padding: 8px 0 16px; }
  .booking-cta-wrap { padding: 14px 0 4px; }
  .booking-cta {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    text-align: center;
    padding: 18px 20px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  /* Contact */
  .contact-grid { gap: 24px; }
  .contact-info { padding: 22px 18px; }
  .contact-info h4 { font-size: 22px; }
  .contact-info .addr { font-size: 16px; }
  .contact-mini { grid-template-columns: 1fr; gap: 8px; }
  .contact-mini a {
    width: 100% !important;
    padding: 14px 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    word-break: break-word;
  }
  .contact-social { gap: 8px; }
  .contact-social a {
    flex: 1 1 100%;
    padding: 13px 10px;
    letter-spacing: 0.16em;
  }
  .contact-row { padding: 9px 0; }
  .contact-row .day { font-size: 10px; letter-spacing: 0.12em; }
  .contact-row .hrs { font-size: 14px; }

  /* Footer */
  .footer { padding: 36px 0 24px; }
  .footer h5 { font-size: 20px; }
  .footer .tag { font-size: 18px; }
  .footer small { font-size: 10px; letter-spacing: 0.16em; }
}

/* Small phones */
@media (max-width: 420px) {
  .wrap, .wrap-narrow { padding: 0 14px; }
  .nav-inner { padding: 8px 10px; }
  .nav-logo { height: 36px; }
  .nav-cta { font-size: 9px; padding: 7px 8px; letter-spacing: 0.1em; }
  .hero-title { letter-spacing: 0; }
  .hero-sub { font-size: clamp(22px, 8vw, 28px); }
  .menu-board { padding: 28px 12px; }
  .acc-label { font-size: 13px; letter-spacing: 0.08em; }
  .acc-name { font-size: 15px; }
  .acc-price { font-size: 16px; }
  .booking-cta { letter-spacing: 0.12em; padding: 16px 14px; }
  .contact-social a span { font-size: 10px; }
}

/* Global overflow / media safety */
html, body { max-width: 100%; overflow-x: hidden; }
img, iframe, svg, video { max-width: 100%; }
.menu-board, .booking-frame, .contact-info, .map-frame { max-width: 100%; }

/* iOS tap highlight */
button, a { -webkit-tap-highlight-color: rgba(201,162,39,0.2); }
