/* =========================================================
   WEST HAM BARBERS — stylesheet
   Palette: white base · black + gold accents
   Type: Absans (Collletttivo, open-source) — self-hosted
   ========================================================= */

/* ---------- Web font ---------- */
@font-face {
  font-family: "Absans";
  src: url("../assets/fonts/Absans-Regular.woff2") format("woff2"),
       url("../assets/fonts/Absans-Regular.woff") format("woff");
  font-weight: 100 900;   /* single master covers all weights — no faux-bold synthesis */
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* surfaces */
  --bg: #ffffff;
  --bg-soft: #f6f2ea;       /* warm off-white */
  --bg-soft2: #efe7d8;

  /* dark accents (bands, footer, buttons) */
  --ink-950: #100d09;
  --ink-900: #17130d;
  --ink-800: #262019;

  /* text */
  --ink-text: #1b1710;      /* headings */
  --body: #4c463b;          /* body copy */
  --muted: #857e70;

  /* on-dark text */
  --cream: #f6f1e6;
  --cream-dim: #cec6b4;

  /* gold */
  --gold-300: #e6cd8b;
  --gold-400: #d3ad55;
  --gold-500: #c49a3f;      /* primary gold accent / fills */
  --gold-600: #a67c2e;      /* gold text on white (legible) */

  --line: rgba(20, 16, 11, .12);
  --line-strong: rgba(20, 16, 11, .22);

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);

  --shadow-sm: 0 2px 12px rgba(20, 16, 11, .06);
  --shadow-md: 0 22px 50px rgba(20, 16, 11, .14);
  --shadow-gold: 0 12px 30px rgba(196, 154, 63, .32);

  --font-display: "Absans", "Arial Narrow", system-ui, sans-serif;
  --font-head: "Absans", system-ui, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Absans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.16, .84, .44, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: .5px;
  color: var(--ink-text);
}

section { position: relative; }
section[id] { scroll-margin-top: 84px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.75rem, 8vw, 7rem); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1.5px;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: .98;
  text-transform: uppercase;
  color: var(--ink-text);
}
.section-title .gold { color: var(--gold-600); }

.section-lead {
  color: var(--body);
  max-width: 56ch;
  margin-top: 1rem;
  font-size: 1.02rem;
}

.center { text-align: center; }
.center .section-lead { margin-inline: auto; }
.center .eyebrow::after {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: .86rem;
  padding: .95rem 1.9rem;
  border: 1.5px solid var(--btn-bg);
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--ink-950);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--ghost {
  background: transparent;
  color: var(--ink-text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--ink-950); color: var(--cream); border-color: var(--ink-950); box-shadow: none; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: .95rem; }

/* ghost buttons that sit on dark bands */
.cta-band .btn--ghost, .footer .btn--ghost {
  color: var(--cream);
  border-color: rgba(246, 241, 230, .45);
}
.cta-band .btn--ghost:hover, .footer .btn--ghost:hover {
  background: var(--cream); color: var(--ink-950); border-color: var(--cream);
}

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--ink-950);
  color: var(--cream-dim);
  font-family: var(--font-head);
  font-size: .74rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-height: 38px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar b { color: var(--gold-400); font-weight: 600; }
.topbar .dot { color: var(--gold-600); }
.topbar .topbar-hide { display: none; }
@media (min-width: 720px) { .topbar .topbar-hide { display: inline; } }

/* ---------- Header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 6px 24px rgba(20, 16, 11, .08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

/* Brand / logo */
.brand { display: flex; align-items: center; gap: .7rem; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 2px;
  color: var(--ink-text);
}
.brand-text .b1 .amp { color: var(--gold-600); }
.brand-text .b2 {
  font-family: var(--font-head);
  font-size: .58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--body);
  position: relative;
  padding-block: 4px;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink-text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* Book button inside the link list is for the mobile menu only */
.nav-links > .btn { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink-text);
  transform: translate(-50%, -50%);
  transition: .3s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 5px); }
.nav-toggle.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Hero (white, split) ---------- */
.hero { background: var(--bg); overflow: hidden; }
.hero .container { padding-block: clamp(2.5rem, 6vw, 5.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero .tagpill {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid rgba(196, 154, 63, .55);
  border-radius: 100px;
  padding: .42rem 1rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .72rem;
  color: var(--gold-600);
  margin-bottom: 1.6rem;
  background: var(--bg-soft);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.4rem);
  letter-spacing: 2px;
  line-height: .86;
  text-transform: uppercase;
  color: var(--ink-text);
}
.hero h1 .gold { color: var(--gold-600); }
.hero .subtitle {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(.85rem, 2.4vw, 1.1rem);
  color: var(--ink-text);
  margin-top: 1.1rem;
}
.hero .subtitle .sep { color: var(--gold-500); margin-inline: .5rem; }
.hero p.lead {
  color: var(--body);
  max-width: 46ch;
  margin: 1.4rem 0 2.2rem;
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-600);
  line-height: 1;
}
.hero-stats .stat .label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .35rem;
}

/* Hero media */
.hero-media { position: relative; }
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.hero-media::after {
  content: "";
  position: absolute;
  right: -16px; bottom: -16px;
  width: 68%; height: 72%;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-media .hero-badge {
  position: absolute;
  left: -18px; top: 26px;
  z-index: 2;
  background: var(--ink-950);
  color: var(--cream);
  border-radius: var(--radius-sm);
  padding: .8rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.hero-badge .big {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: .9;
  color: var(--gold-400);
}
.hero-badge .small {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .62rem;
  color: var(--cream-dim);
}

/* ---------- Marquee strip (black accent) ---------- */
.strip {
  background: var(--ink-950);
  color: var(--cream);
  overflow: hidden;
  border-block: 1px solid var(--ink-800);
}
.strip-track {
  display: flex;
  gap: 3rem;
  padding-block: .85rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  font-size: .9rem;
}
.strip-track span { display: inline-flex; align-items: center; gap: 3rem; }
.strip-track span::after { content: "✂"; color: var(--gold-500); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ---------- Features ---------- */
.features { background: var(--bg-soft); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-5px); border-color: rgba(196,154,63,.5); box-shadow: var(--shadow-md); }
.feature .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(196,154,63,.14);
  color: var(--gold-600);
  margin-bottom: 1.1rem;
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.feature p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 2.5rem;
}
.service {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem .25rem;
  border-bottom: 1px dashed var(--line);
}
.service .s-main { flex: 1; }
.service .s-name {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink-text);
}
.service .s-desc { color: var(--muted); font-size: .88rem; }
.service .s-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(196,154,63,.55);
  transform: translateY(-4px);
  min-width: 20px;
}
.service .s-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-600);
  letter-spacing: 1px;
  flex: none;
}
.services-note {
  margin-top: 2.6rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.services-note p { margin: 0; color: var(--body); }
.services-note b { color: var(--gold-600); font-family: var(--font-head); letter-spacing: .5px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 3rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,13,9,.66));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.g-item .g-plus {
  position: absolute;
  right: 14px; bottom: 12px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--ink-950);
  opacity: 0;
  transform: translateY(8px);
  transition: .3s var(--ease);
  z-index: 2;
  font-size: 1.3rem;
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-item:hover .g-plus { opacity: 1; transform: translateY(0); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(12, 9, 6, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(196,154,63,.18);
  border: 1px solid rgba(196,154,63,.5);
  color: var(--cream);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold-500); color: var(--ink-950); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav.prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Booking modal (calendar placeholder) ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 220;
  background: rgba(12, 9, 6, .62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.open { display: flex; }
.modal-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 460px;
  width: 100%;
  padding: clamp(1.9rem, 4vw, 2.8rem);
  text-align: center;
  animation: modalIn .3s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .modal-card { animation: none; } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-text);
  font-size: 1.05rem;
  display: grid; place-items: center;
  transition: .2s var(--ease);
}
.modal-close:hover { background: var(--ink-950); color: var(--cream); border-color: var(--ink-950); }
.modal-ic {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(196, 154, 63, .14);
  color: var(--gold-600);
}
.modal-ic svg { width: 32px; height: 32px; }
.modal-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .72rem;
  color: var(--gold-600);
  display: block;
  margin-bottom: .5rem;
}
.modal-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-text);
  line-height: 1;
}
.modal-card p { color: var(--body); margin: 1rem 0 0; }
.modal-card .modal-sub { font-size: .92rem; color: var(--ink-text); font-weight: 500; margin-top: 1.4rem; }
.modal-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.modal-note { font-size: .82rem; color: var(--muted); margin-top: 1.3rem; }
@media (max-width: 420px) { .modal-actions .btn { width: 100%; } }

/* ---------- About ---------- */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media .m-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about-media .m-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-media .m-badge {
  position: absolute;
  left: -18px; bottom: -18px;
  background: var(--gold-500);
  color: var(--ink-950);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-media .m-badge .big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: .9;
}
.about-media .m-badge .small {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .68rem;
}
.about-copy p { color: var(--body); margin: 0 0 1.15rem; }
.about-copy .lead-p { font-size: 1.12rem; color: var(--ink-text); }
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem 1.2rem;
  margin: 1.8rem 0 2rem;
}
.about-list li {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: .84rem;
  color: var(--ink-text);
}
.about-list svg { width: 18px; height: 18px; color: var(--gold-600); flex: none; }

/* ---------- Reviews (black accent band) ---------- */
.reviews { background: var(--ink-950); color: var(--cream); }
.reviews .section-title { color: var(--cream); }
.reviews .section-title .gold { color: var(--gold-400); }
.reviews .section-lead { color: var(--cream-dim); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.review {
  background: #1c1811;
  border: 1px solid rgba(196,154,63,.24);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.review .stars { color: var(--gold-400); letter-spacing: 3px; margin-bottom: 1rem; font-size: 1rem; }
.review p { color: var(--cream-dim); font-style: italic; margin: 0 0 1.4rem; }
.review .who { display: flex; align-items: center; gap: .8rem; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink-950);
}
.review .who .name { font-family: var(--font-head); letter-spacing: .5px; color: var(--cream); }
.review .who .role { font-size: .78rem; color: var(--muted); }

/* ---------- Contact / hours ---------- */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.hours-card, .info-card, .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.hours-card h3, .info-card h3, .form-card h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.15rem;
  color: var(--gold-600);
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .6rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-head);
  letter-spacing: .5px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--ink-text); text-transform: uppercase; font-size: .9rem; }
.hours-list .time { color: var(--body); font-size: .9rem; }
.hours-list li.today {
  background: rgba(196,154,63,.14);
  margin-inline: -.8rem;
  padding-inline: .8rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}
.hours-list li.today .day { color: var(--gold-600); }
.hours-list li.today .time { color: var(--gold-600); }
.open-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .8rem;
  color: #1c8a4f;
}
.open-badge .pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22a35c;
  box-shadow: 0 0 0 0 rgba(34,163,92,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(34,163,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,163,92,0); }
}

.info-row {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .85rem 0;
}
.info-row + .info-row { border-top: 1px dashed var(--line); }
.info-row .ic {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(196,154,63,.14);
  color: var(--gold-600);
}
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .lbl {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: .72rem;
  color: var(--muted);
}
.info-row .val { color: var(--ink-text); font-size: 1rem; }
.info-row .val a:hover { color: var(--gold-600); }

.map-wrap {
  margin-top: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 230px; border: 0; }

/* Booking form */
.form-card { margin-top: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .72rem;
  color: var(--body);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: .8rem .95rem;
  color: var(--ink-text);
  font-size: .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #a9a294; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(196,154,63,.18);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-msg {
  margin-top: 1rem;
  font-size: .9rem;
  color: #1c8a4f;
  display: none;
}
.form-msg.show { display: block; }
.form-hint { font-size: .78rem; color: var(--muted); margin-top: .8rem; }

/* ---------- Final CTA (dark photo band) ---------- */
.cta-band {
  background:
    linear-gradient(rgba(12,9,6,.82), rgba(12,9,6,.9)),
    url("../assets/img/interior-gold-chair.jpg") center / cover;
  text-align: center;
  color: var(--cream);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: .95;
  color: var(--cream);
}
.cta-band h2 .gold { color: var(--gold-400); }
.cta-band p { color: var(--cream-dim); max-width: 48ch; margin: 1.2rem auto 2.2rem; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer (black) ---------- */
.footer {
  background: var(--ink-950);
  border-top: 3px solid var(--gold-500);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  color: var(--cream-dim);
}
.footer .brand .b1 { color: var(--cream); }
.footer .brand .b2 { color: var(--gold-400); }
.footer .brand { margin-bottom: 1.1rem; }
.footer-about p { color: var(--cream-dim); font-size: .92rem; max-width: 34ch; }
.footer h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}
.footer-links a {
  display: block;
  color: var(--cream-dim);
  padding: .35rem 0;
  font-size: .92rem;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-links a:hover { color: var(--gold-400); padding-left: 6px; }
.footer-hours li {
  display: flex; justify-content: space-between;
  color: var(--cream-dim); font-size: .88rem;
  padding: .28rem 0;
}
.footer-hours .time { color: var(--muted); }
.socials { display: flex; gap: .7rem; margin-top: 1.3rem; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(196,154,63,.4);
  color: var(--gold-400);
  transition: .25s var(--ease);
}
.socials a:hover { background: var(--gold-500); color: var(--ink-950); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246,241,230,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .82rem;
}
.footer-bottom a { color: var(--cream-dim); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 1rem auto 0; }
  .hero-copy { max-width: none; }
}
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px);
    padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform .4s var(--ease);
    z-index: 55;
  }
  .nav-links.open { transform: translateY(0); display: flex; }
  .nav-links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links .btn { display: inline-flex; width: 100%; margin-top: 1rem; }
}
@media (max-width: 780px) {
  .services-grid { grid-template-columns: 1fr; gap: 0 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; margin-inline: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 160px; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 1.5rem 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .lightbox-nav { display: none; }
}
