/* ROBET — brutalist system.
   Black/white + one harsh accent. Thick borders, zero radius, raw grid,
   oversized grotesk + monospace. No gradients, no shadows-as-softness. */
:root {
  --ink: #0a0a0a;
  --paper: #f3f1ea;
  --accent: #f5f500;   /* electric yellow */
  --accent2: #ff2e1f;  /* alarm red */
  --bord: 5px solid var(--ink);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }   /* brutalist negative-margins safety guard */
main:focus { outline: none; }
main:focus-visible { outline: none; }   /* skip-link target: no ring on programmatic focus */

/* keyboard focus ring — two-layer so it's visible on BOTH dark hero + paper sections */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(10, 10, 10, .85);
  border-radius: 0;
}

/* skip-to-content: hidden until keyboard focus, then brutalist top-left */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--accent); color: var(--ink); font-weight: 800; text-transform: uppercase;
  padding: 12px 18px; border: 5px solid var(--ink); text-decoration: none;
  transition: top .15s;
}
.skip:focus { top: 12px; }

/* respect reduced-motion: kill transitions/transforms/smooth-scroll */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .cta:hover { transform: none; }
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  -webkit-font-smoothing: none;
  line-height: 1.05;
}
.mono { font-family: "SF Mono", "Courier New", monospace; font-weight: 700; }
a { color: inherit; }

/* ── top bar: logo UL, hamburger UR ── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: var(--paper);
  border-bottom: var(--bord);
}
.logo {
  font-size: clamp(18px, 5.5vw, 28px); letter-spacing: -1px; text-transform: uppercase;
  background: var(--ink); color: var(--paper); padding: 6px 12px; white-space: nowrap;
  text-decoration: none;
}
.topbar { gap: 10px; }
.logo:hover { background: var(--accent2); color: var(--ink); }
.hamburger {
  width: 54px; height: 46px; background: var(--accent); border: var(--bord);
  cursor: pointer; display: grid; place-content: center; gap: 5px; padding: 0;
}
.hamburger span { display: block; width: 28px; height: 5px; background: var(--ink); }
.hamburger:hover { background: var(--accent2); }

/* ── nav overlay ── */
.navpanel {
  position: fixed; inset: 0; z-index: 60; background: var(--ink);
  display: none; flex-direction: column; padding: 28px 24px;
}
.navpanel.open { display: flex; }
.navpanel .close {
  align-self: flex-end; background: var(--accent); border: var(--bord);
  font-size: 26px; width: 54px; height: 54px; cursor: pointer; line-height: 1;
}
.navpanel nav { margin-top: 8vh; display: flex; flex-direction: column; gap: 6px; }
.navpanel a {
  color: var(--paper); text-decoration: none; text-transform: uppercase;
  font-size: clamp(34px, 9vw, 88px); letter-spacing: -2px; line-height: 1;
  border-bottom: 4px solid transparent; width: fit-content;
}
.navpanel a:hover { color: var(--accent); border-bottom-color: var(--accent2); }

/* ── HUGE hero ── */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: flex-end;
  border-bottom: var(--bord); overflow: hidden;
}
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: grayscale(0.2) contrast(1.1); }
.hero-img::after { content: ""; position: absolute; inset: 0;
  /* strong scrim so the wordmark stays readable over his real (bright) shop photo */
  background: linear-gradient(0deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.5) 48%, rgba(10,10,10,.66) 100%); }
.hero-inner { position: relative; padding: 0 24px 48px; max-width: 1100px; }
.hero h1 {
  color: var(--paper); text-transform: uppercase; white-space: pre-line;
  font-size: clamp(46px, 12vw, 150px); letter-spacing: -4px; line-height: 0.88;
  text-shadow: 6px 6px 0 var(--ink);
}
.hero p { color: var(--accent); font-size: clamp(16px, 2.4vw, 26px); margin-top: 18px; max-width: 640px; }
.cta {
  display: inline-block; margin-top: 26px; background: var(--accent);
  color: var(--ink); text-decoration: none; text-transform: uppercase;
  font-size: 22px; padding: 16px 30px; border: var(--bord);
  box-shadow: 8px 8px 0 var(--ink);
}
.cta:hover { background: var(--accent2); color: var(--paper); transform: translate(2px,2px); box-shadow: 6px 6px 0 var(--ink); }

/* mobile hero: shorter so the wordmark + CTA aren't buried at the bottom (design crit) */
@media (max-width: 720px) {
  .hero { min-height: 70vh; }
  .hero h1 { text-shadow: 4px 4px 0 var(--ink); }
  .hero-inner { padding-bottom: 36px; }
}

/* ── sections ── */
section { padding: 70px 24px; border-bottom: var(--bord); }
.kicker { font-family: "SF Mono", monospace; background: var(--ink); color: var(--accent);
  display: inline-block; padding: 4px 10px; text-transform: uppercase; font-size: 13px; letter-spacing: 2px; }
.sec-h { font-size: clamp(34px, 7vw, 76px); text-transform: uppercase; letter-spacing: -2px; margin: 16px 0 26px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 0; }
.cell { border: var(--bord); padding: 26px; margin: -2.5px 0 0 -2.5px; background: var(--paper); }
.cell h3 { font-size: 24px; text-transform: uppercase; margin-bottom: 8px; }
.cell p { font-weight: 600; line-height: 1.3; }
.cell:hover { background: var(--accent); }

/* booking embed */
#booking .embed-box { border: var(--bord); background: #fff; padding: 0; min-height: 420px; }
#booking .fallback { padding: 22px; }
.embed-skeleton { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 22px; }
.embed-skeleton span {
  height: 72px; border: 4px solid var(--ink);
  background: repeating-linear-gradient(45deg, #e9e6de, #e9e6de 10px, #dcd9d1 10px, #dcd9d1 20px);
  animation: embedpulse 1.1s ease-in-out infinite;
}
.embed-skeleton span:nth-child(2) { animation-delay: .15s; }
.embed-skeleton span:nth-child(3) { animation-delay: .3s; }
.embed-skeleton span:nth-child(4) { animation-delay: .45s; }
@keyframes embedpulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-info, .contact-form { border: var(--bord); padding: 28px; margin: -2.5px 0 0 -2.5px; min-width: 0; }
@media (max-width: 720px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info, .contact-form { margin-left: 0; }   /* no negative pull when stacked */
}
.contact-info dt { font-family: "SF Mono", monospace; color: #c20010; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; margin-top: 16px; }  /* darker red: AA 5.63:1 on paper (accent2 #ff2e1f was 3.28:1) */
.contact-info dd { font-size: 20px; overflow-wrap: anywhere; word-break: break-word; }
.contact-form label { display: block; font-family: "SF Mono", monospace; font-size: 13px; text-transform: uppercase; margin: 14px 0 4px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: var(--bord); padding: 12px; font-family: inherit; font-weight: 700; font-size: 16px; background: #fff; }
.contact-form button { margin-top: 18px; background: var(--ink); color: var(--paper); border: var(--bord);
  text-transform: uppercase; font-size: 18px; padding: 14px 26px; cursor: pointer; }
.contact-form button:hover { background: var(--accent2); }
.formmsg { margin-top: 12px; font-family: "SF Mono", monospace; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0; }
.shot { display: block; border: var(--bord); margin: -2.5px 0 0 -2.5px; aspect-ratio: 1 / 1; overflow: hidden; background: var(--ink); position: relative; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(.15) contrast(1.05); transition: transform .2s, filter .2s; }
.shot:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1.1); }
.shot--pending { display: grid; place-content: center; background:
  repeating-linear-gradient(135deg, #1c1b16 0 18px, #232219 18px 36px); color: var(--accent); }
.shot--pending span { font-size: 13px; letter-spacing: 2px; opacity: .55; text-transform: uppercase; }
.gallery-note { grid-column: 1 / -1; margin-top: 18px; font-weight: 600; }
.gallery-note code { background: var(--ink); color: var(--accent); padding: 2px 8px; }

/* reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0; }
.review { border: var(--bord); padding: 24px; margin: -2.5px 0 0 -2.5px; background: var(--paper); }
.review .stars { color: #c20010; font-size: 22px; letter-spacing: 2px; }  /* AA 5.63:1 on paper */
.review .quote { font-weight: 600; line-height: 1.35; margin: 12px 0; font-size: 16px; }
.review .who { font-size: 18px; font-weight: 800; margin-top: 8px; text-transform: uppercase; }
.review .svc { font-weight: 600; margin-top: 4px; }
.review .when { color: #555; font-size: 12px; margin-top: 8px; }  /* AA 6.8:1 (was opacity .55 → failed) */
.review:hover { background: var(--accent); }

/* "Designed by AgentAbrams" corner credit */
.credit {
  position: fixed; right: 12px; bottom: 12px; z-index: 40;
  background: var(--ink); color: var(--paper); border: 3px solid var(--accent);
  font-family: "SF Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  padding: 7px 11px; text-decoration: none;
}
.credit b { color: var(--accent); }
.credit:hover { background: var(--accent); color: var(--ink); }
.credit:hover b { color: var(--ink); }
@media print { .credit { display: none !important; } }

/* footer */
footer { padding: 40px 24px; background: var(--ink); color: var(--paper); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--accent); }

/* admin */
.admin-shell { max-width: 760px; margin: 0 auto; padding: 40px 24px; }
.keyrow { display: grid; grid-template-columns: 1fr auto auto; gap: 0; align-items: center; }
.keyrow > * { border: var(--bord); padding: 12px; margin: -2.5px 0 0 -2.5px; background: #fff; }
.keytable .head { background: var(--ink); color: var(--accent); font-family: "SF Mono", monospace; text-transform: uppercase; }
.btn { background: var(--ink); color: var(--paper); border: var(--bord); padding: 12px 20px; text-transform: uppercase; cursor: pointer; font-weight: 800; font-family: inherit; }
.btn.warn { background: var(--accent2); }
.btn:hover { background: var(--accent); color: var(--ink); }

/* print: black-on-white, drop the ink-heavy brutalist fills, hide interactive-only bits */
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  body { background: #fff !important; font-size: 11pt; }
  .skip, .hamburger, .navpanel, .cta, #embedBox, .contact-form, footer a { display: none !important; }
  .hero { min-height: auto !important; padding: 20px 0 !important; border-bottom: 2px solid #000 !important; }
  .hero-img { display: none !important; }
  .topbar { border-bottom: 2px solid #000 !important; }
  section { border-bottom: 2px solid #000 !important; }
  .cell, .contact-info { border: 2px solid #000 !important; }
  a { text-decoration: underline; }
  #bookAlt::after { content: " — " attr(href); font-weight: 700; }   /* printed link shows its URL */
  .contact-info dt { color: #000 !important; }
}
