/* =========================================================================
   Barbershop Amarildo — styles.css
   Hand-written, buildless. All design tokens live in :root below.
   Mobile-first; desktop overrides live in the @media (min-width:768px) block.
   ========================================================================= */

:root {
  /* Surfaces */
  --base: #14100c;            /* page background, cards */
  --alt: #1a1510;             /* alternating section background */
  --footer-bg: #100c09;       /* footer background */

  /* Brand accent — change this one value to re-theme (e.g. #9aa3a8 steel, #a23b2f brick) */
  --accent: #b08d57;

  /* Text */
  --ink: #f4ece0;             /* headlines, primary body on dark */
  --warm: #e6dccc;            /* secondary body */
  --muted: #d8cdbd;           /* hero/intro body */
  --dim: #c9bba9;             /* card body, captions */
  --faint: #9b8e7d;           /* labels, muted info */
  --faintest: #7d7263;        /* fine print, placeholder labels */

  /* Lines */
  --hairline: rgba(244, 236, 224, 0.10);
  --card-border: rgba(244, 236, 224, 0.12);
  --leader: rgba(244, 236, 224, 0.28);
  --outline: rgba(244, 236, 224, 0.32);

  /* Fonts */
  --f-display: 'Oswald', sans-serif;
  --f-body: 'Archivo', sans-serif;
  --f-script: 'Pinyon Script', cursive;

  /* Layout */
  --maxw: 1200px;
  --header-h: 58px;

  /* Hero gradient (mobile values; overridden on desktop) */
  --hg-top: 0.45;
  --hg-mid: 0.20;
  --hg-bottom: 0.82;
}

/* ----- Reset ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--base);
  color: var(--ink);
  font-family: var(--f-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }            /* lock scroll while mobile menu is open */

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

::selection { background: var(--accent); color: var(--base); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ----- Layout helpers ----- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: 22px; padding-right: 22px; }
.section { padding-top: 48px; padding-bottom: 48px; }
.section--flush-top { padding-top: 0; }
.section--flush-top-mobile { padding-top: 0; }

.band { width: 100%; }
.band--alt { background: var(--alt); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

/* ----- Typography ----- */
.eyebrow {
  font-family: var(--f-display); font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.26em; font-size: 11px; color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }

.h2 {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  line-height: 1.02; font-size: 36px; color: var(--ink);
}
.lead { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.caption { font-size: 13.5px; line-height: 1.6; color: var(--faint); }

.section-head { margin-bottom: 28px; }
.section-head--center { text-align: center; margin-bottom: 36px; }
.section-head--center .eyebrow { margin-bottom: 12px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; text-align: center;
  font-family: var(--f-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 13px; line-height: 1;
  padding: 15px 28px; border-radius: 2px; border: 1px solid transparent;
  transition: filter .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--accent { background: var(--accent); color: var(--base); }
.btn--accent:hover { filter: brightness(1.08); }
.btn--outline { color: var(--ink); border-color: var(--outline); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--dark { background: var(--base); color: var(--accent); font-weight: 600; }
.btn--dark:hover { filter: brightness(1.25); }
.btn--sm { padding: 11px 20px; font-size: 12px; letter-spacing: 0.16em; }
.btn--block { display: flex; width: 100%; }

/* Platform-branded buttons */
.btn--whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn--whatsapp:hover { filter: brightness(1.06); }
.btn--instagram { color: var(--ink); border-color: var(--outline); background: transparent; }
.btn--instagram:hover { border-color: var(--accent); color: var(--accent); }
.btn-ico { width: 18px; height: 18px; flex-shrink: 0; }

/* Subdued WhatsApp button on the gold "Full Service" block (green clashes with gold) */
.featured .btn--whatsapp { background: var(--base); color: var(--ink); border-color: var(--base); }
.featured .btn--whatsapp:hover { filter: brightness(1.3); }
.featured .btn--whatsapp .btn-ico { color: #25d366; }

.btn-row { display: flex; flex-direction: column; gap: 11px; margin-top: 28px; }

/* =========================================================================
   Header + mobile menu
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); padding: 0 18px;
  background: rgba(16, 12, 9, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.brand { display: flex; align-items: center; gap: 10px; }
.monogram {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border: 1.5px solid var(--accent); border-radius: 50%;
  color: var(--accent); font-family: var(--f-display); font-weight: 600; font-size: 13px;
  flex-shrink: 0;
}
.wordmark {
  font-family: var(--f-display); font-weight: 600; letter-spacing: 0.2em;
  font-size: 13px; text-transform: uppercase;
}
.nav { display: none; }                          /* desktop only */
.header-cta { display: none; }                   /* desktop only */

.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 5px; width: 38px; height: 38px; padding: 8px 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }
.hamburger span:last-child { width: 14px; }

/* Slide-out menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(8, 6, 4, 0.6); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.menu-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: 78%; max-width: 320px; background: var(--footer-bg);
  border-left: 1px solid var(--card-border); box-shadow: -20px 0 50px rgba(0,0,0,.5);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }
body.menu-open .menu-panel { transform: translateX(0); }

.menu-head {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); padding: 0 18px; border-bottom: 1px solid var(--hairline);
}
.menu-head span {
  font-family: var(--f-display); font-weight: 600; letter-spacing: 0.2em;
  font-size: 13px; text-transform: uppercase; color: var(--dim);
}
.menu-close { font-size: 26px; line-height: 1; color: var(--ink); padding: 4px 8px; }
.menu-links { display: flex; flex-direction: column; padding: 14px 8px; }
.menu-links a {
  padding: 16px 14px; color: var(--warm);
  font-family: var(--f-display); font-weight: 300; letter-spacing: 0.16em;
  text-transform: uppercase; font-size: 16px;
  border-bottom: 1px solid rgba(244,236,224,0.07);
}
.menu-links a:last-child { border-bottom: none; }
.menu-foot { padding: 18px; margin-top: auto; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  padding: 130px 22px 36px; overflow: hidden;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(16,12,9,var(--hg-top)) 0%,
    rgba(16,12,9,var(--hg-mid)) 35%,
    rgba(16,12,9,var(--hg-bottom)) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero__eyebrow { font-family: var(--f-script); font-size: 30px; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.hero__est { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero__est .rule { height: 1px; width: 40px; background: var(--accent); }
.hero__est span:last-child {
  font-family: var(--f-display); font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 10.5px; color: var(--dim);
}
.hero h1 {
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  line-height: 0.92; letter-spacing: 0.01em; font-size: 58px; text-wrap: balance;
}
.hero__body { margin-top: 18px; font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 520px; }

/* =========================================================================
   Fact strip
   ========================================================================= */
.facts {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  padding: 22px;
  font-family: var(--f-display); font-weight: 300; letter-spacing: 0.16em;
  text-transform: uppercase; font-size: 12px; color: var(--dim);
}
.facts strong { color: var(--accent); font-weight: 600; }
.facts .divider { display: none; }

/* =========================================================================
   The Craft
   ========================================================================= */
.craft-grid { display: grid; gap: 0; }
.craft-media { position: relative; margin-bottom: 36px; }
.craft-media img { aspect-ratio: 3 / 2; object-fit: cover; object-position: center 25%; border-radius: 2px; width: 100%; }
.badge {
  position: absolute; bottom: -18px; left: -6px;
  background: var(--accent); color: var(--base); padding: 16px 20px; border-radius: 2px;
}
.badge .num { font-family: var(--f-display); font-weight: 700; font-size: 34px; line-height: 1; }
.badge .lbl { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; margin-top: 2px; }

/* hairline-gridded info cards (also reused by events pricing block) */
.cards { display: grid; gap: 1px; background: var(--card-border); border: 1px solid var(--card-border); }
.card { background: var(--base); padding: 20px; }
.card__title {
  font-family: var(--f-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 15px; color: var(--accent); margin-bottom: 6px;
}
.card__body { font-size: 14px; line-height: 1.6; color: var(--dim); }

/* =========================================================================
   Team
   ========================================================================= */
.team-grid { display: flex; flex-direction: column; gap: 20px; }
.barber { display: flex; gap: 16px; align-items: center; }
.barber__photo { flex: 0 0 118px; }
.barber__photo img { aspect-ratio: 3 / 4; object-fit: cover; object-position: center; border-radius: 2px; width: 100%; }
.barber__name { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 19px; }
.barber__role { font-family: var(--f-display); font-weight: 300; text-transform: uppercase; letter-spacing: 0.14em; font-size: 10.5px; color: var(--accent); margin: 3px 0 9px; }
.barber__bio { font-size: 13px; line-height: 1.55; color: var(--dim); }

/* =========================================================================
   Services & pricing
   ========================================================================= */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.price-col { display: flex; flex-direction: column; gap: 22px; }
.price-row { display: flex; align-items: baseline; gap: 12px; }
.price-row .name { font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em; font-size: 18px; white-space: nowrap; }
.price-row .leader { flex: 1; border-bottom: 1px dotted var(--leader); transform: translateY(-4px); }
.price-row .price { font-family: var(--f-display); font-weight: 500; font-size: 18px; color: var(--accent); }

.featured { margin-top: 40px; background: var(--accent); color: var(--base); padding: 26px 24px; border-radius: 2px; }
.featured .eyebrow { color: var(--base); opacity: 0.75; letter-spacing: 0.26em; margin-bottom: 8px; }
.featured h3 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 30px; line-height: 1; }
.featured p { font-size: 14px; line-height: 1.55; margin-top: 10px; font-weight: 500; }
.featured__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; }
.featured__price { font-family: var(--f-display); font-weight: 700; font-size: 46px; line-height: 1; }

/* =========================================================================
   Gallery
   ========================================================================= */
.gallery { display: grid; grid-template-columns: 1fr 1fr; }
.gallery img { aspect-ratio: 1 / 1; object-fit: cover; object-position: center; width: 100%; }

/* =========================================================================
   The Shelf (products)
   ========================================================================= */
.shelf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.product__tile {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--card-border); border-radius: 2px; margin-bottom: 14px;
  background: #fff; overflow: hidden;
}
.product__tile img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.product__tile span { font-family: monospace; font-size: 10px; letter-spacing: 0.08em; color: var(--faintest); }
.product__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.product__name { font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em; font-size: 13px; }
.product__price { font-family: var(--f-display); font-weight: 500; font-size: 14px; color: var(--accent); }

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews-grid { display: flex; flex-direction: column; gap: 18px; }
.review { border: 1px solid var(--card-border); padding: 26px; border-radius: 2px; display: flex; flex-direction: column; gap: 14px; }
.review .stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; }
.review blockquote { font-size: 15.5px; line-height: 1.6; color: var(--warm); font-style: italic; }
.review .who { font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12.5px; }
.review .who span { color: var(--faint); font-weight: 300; }

/* =========================================================================
   Private bookings / events
   ========================================================================= */
.events__media { margin-bottom: 28px; }
.events__media img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center; border-radius: 2px; width: 100%; }
.events__media { position: relative; }
.events__media::after { content: ""; position: absolute; inset: 0; border-radius: 2px; background: linear-gradient(180deg, rgba(16,12,9,0.15), rgba(16,12,9,0.55)); }
.priced-row { background: var(--base); padding: 16px 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.priced-row .name { font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em; font-size: 14px; }
.priced-row .price { font-family: var(--f-display); font-weight: 500; font-size: 14px; color: var(--accent); white-space: nowrap; }
.events .cards { margin: 24px 0 26px; }

/* =========================================================================
   Gift cards
   ========================================================================= */
.gift-grid { display: flex; flex-direction: column; }
.giftcard-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 230px; margin-bottom: 34px; }
.giftcard-back {
  position: absolute; width: 78%; aspect-ratio: 1.58 / 1; background: var(--accent); border-radius: 10px;
  transform: rotate(-8deg) translate(-8px, 12px); box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.giftcard-front {
  position: relative; width: 84%; aspect-ratio: 1.58 / 1; background: var(--base);
  border: 1px solid var(--accent); border-radius: 10px; transform: rotate(3deg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), inset 0 0 0 4px var(--base), inset 0 0 0 5px rgba(176,141,87,0.35);
  padding: 20px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
}
.giftcard-front .gc-top { display: flex; align-items: center; justify-content: space-between; }
.giftcard-front .gc-brand { display: flex; align-items: center; gap: 8px; }
.giftcard-front .gc-mono { width: 26px; height: 26px; font-size: 12px; }
.giftcard-front .gc-word { font-family: var(--f-display); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--ink); }
.giftcard-front .gc-est { font-family: var(--f-display); font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; font-size: 8.5px; color: var(--faint); }
.giftcard-front .gc-label { font-family: var(--f-display); font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; font-size: 9px; color: var(--faint); margin-bottom: 2px; }
.giftcard-front .gc-amount { font-family: var(--f-display); font-weight: 700; font-size: 42px; line-height: 1; color: var(--ink); }
.giftcard-front .gc-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.giftcard-front .gc-compliments { font-family: var(--f-script); font-size: 20px; color: var(--accent); line-height: 1; }
.giftcard-front .gc-no { font-family: monospace; font-size: 9px; letter-spacing: 0.12em; color: var(--faintest); }

.chips-label { font-family: var(--f-display); font-weight: 300; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--faint); margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip { font-family: var(--f-display); font-weight: 500; font-size: 15px; color: var(--warm); border: 1px solid rgba(244,236,224,0.22); padding: 9px 18px; border-radius: 2px; }
.chip--on { font-weight: 600; color: var(--base); background: var(--accent); border-color: var(--accent); }
.features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.feature { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--dim); }
.feature .mark { color: var(--accent); }

/* =========================================================================
   Visit / map
   ========================================================================= */
.visit-grid { display: flex; flex-direction: column; }
.visit-cta { display: flex; flex-direction: column; gap: 11px; }
.visit-cta .btn { width: 100%; }
.info-stack { display: grid; gap: 24px; margin-bottom: 28px; }
.info__label { font-family: var(--f-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; color: var(--faint); margin-bottom: 6px; }
.info__text { font-size: 16px; line-height: 1.5; color: var(--warm); }
.hours { display: grid; grid-template-columns: auto 1fr; gap: 4px 28px; font-size: 15px; color: var(--warm); max-width: 240px; }
.hours .day-closed { color: var(--faint); }
.hours .t { text-align: right; }
.info__text a.tel { border-bottom: 1px solid var(--accent); }
.map { height: 280px; border-radius: 2px; overflow: hidden; border: 1px solid var(--card-border); margin-bottom: 24px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--hairline); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand .monogram { width: 30px; height: 30px; font-size: 14px; }
.footer-brand .wordmark { letter-spacing: 0.18em; font-size: 15px; }
.footer-tag { font-family: var(--f-script); font-size: 22px; color: var(--accent); margin-bottom: 24px; }
.social { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; color: var(--warm); margin-bottom: 30px; }
.social .icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(244,236,224,0.28); border-radius: 50%; }
.fineprint { display: flex; flex-direction: column; gap: 8px; padding-top: 22px; border-top: 1px solid var(--hairline); font-size: 12px; color: var(--faintest); letter-spacing: 0.04em; }

/* =========================================================================
   Floating WhatsApp button
   ========================================================================= */
.fab-stack { position: fixed; right: 16px; bottom: 16px; z-index: 40; display: flex; flex-direction: column; gap: 12px; }
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--base);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform .18s ease, filter .18s ease;
}
.fab:hover { filter: brightness(1.08); transform: translateY(-2px); }
.fab svg { width: 28px; height: 28px; }
.fab--whatsapp { background: #25d366; color: #fff; }
.fab--instagram { color: var(--ink); background: var(--base); border: 1px solid var(--outline); }

/* =========================================================================
   Desktop (>=768px)
   ========================================================================= */
@media (min-width: 768px) {
  :root { --header-h: 68px; --hg-top: 0.55; --hg-mid: 0.25; --hg-bottom: 0.78; }

  .wrap { padding-left: clamp(20px, 5vw, 56px); padding-right: clamp(20px, 5vw, 56px); }
  .section { padding-top: clamp(70px, 10vh, 130px); padding-bottom: clamp(70px, 10vh, 130px); }
  .section--flush-top { padding-top: 0; }
  .section--flush-top-mobile { padding-top: clamp(70px, 10vh, 130px); }

  .site-header { padding: 0 clamp(20px, 5vw, 56px); }
  .monogram { width: 30px; height: 30px; font-size: 14px; }
  .wordmark { letter-spacing: 0.22em; font-size: 14px; }
  .hamburger { display: none; }
  .nav {
    display: flex; align-items: center; gap: clamp(18px, 3vw, 38px);
    font-family: var(--f-display); font-weight: 300; letter-spacing: 0.14em;
    text-transform: uppercase; font-size: 12.5px;
  }
  .nav a { color: var(--dim); transition: color .18s ease; }
  .nav a:hover { color: var(--ink); }
  .header-cta { display: inline-flex; }

  .eyebrow { letter-spacing: 0.3em; font-size: 12px; }
  .h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1; }
  .lead { font-size: 17px; }
  .section-head--center { margin-bottom: clamp(40px, 6vh, 64px); }

  .btn-row { flex-direction: row; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
  .btn-row .btn { width: auto; }
  .btn { padding: 16px 30px; }

  /* Hero */
  .hero { min-height: 100vh; padding: 0 clamp(20px, 5vw, 56px) clamp(48px, 7vh, 90px); }
  .hero__eyebrow { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 6px; }
  .hero__est { gap: 18px; margin-bottom: 18px; }
  .hero__est .rule { width: 54px; }
  .hero__est span:last-child { letter-spacing: 0.3em; font-size: 12px; }
  .hero h1 { font-size: clamp(52px, 11vw, 156px); }
  .hero__body { margin-top: 22px; font-size: clamp(16px, 1.4vw, 19px); }

  /* Facts: single centered row with dividers */
  .facts { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 4vw, 60px); font-size: 12.5px; letter-spacing: 0.18em; }
  .facts .divider { display: inline; opacity: 0.3; }

  /* Craft: text left (intro + cards), image right */
  .craft-grid {
    grid-template-columns: 1.1fr 1fr; align-items: center;
    column-gap: clamp(36px, 5vw, 76px);
    grid-template-areas: "intro media" "cards media";
  }
  .craft-intro { grid-area: intro; }
  .craft-cards { grid-area: cards; }
  .craft-media { grid-area: media; margin-bottom: 0; }
  .craft-media img { aspect-ratio: 4 / 5; object-position: center; }
  .badge { bottom: -24px; left: -24px; padding: 20px 26px; max-width: 200px; }
  .badge .num { font-size: 40px; }
  .badge .lbl { font-size: 11px; }
  .card { padding: 22px 24px; }
  .card__title { font-size: 16px; }
  .card__body { font-size: 14.5px; color: var(--dim); }

  /* Team: 3-col portraits */
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
  .barber { display: block; }
  .barber__photo { flex: none; margin-bottom: 20px; }
  .barber__name { font-size: 22px; }
  .barber__role { letter-spacing: 0.16em; font-size: 11.5px; margin: 4px 0 12px; }
  .barber__bio { font-size: 14.5px; line-height: 1.65; }

  /* Services: two columns of rows */
  .services-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-bottom: clamp(36px, 5vh, 60px); }
  .services-head .caption { max-width: 300px; }
  .price-grid { grid-template-columns: 1fr 1fr; column-gap: clamp(30px, 6vw, 88px); row-gap: 26px; }
  .price-col { gap: 26px; }
  .price-row .name { font-size: 19px; }
  .price-row .price { font-size: 19px; }
  .featured { margin-top: clamp(40px, 5vh, 64px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(26px, 4vw, 40px) clamp(28px, 4vw, 48px); }
  .featured__copy { max-width: 440px; }
  .featured h3 { font-size: clamp(26px, 3.4vw, 40px); }
  .featured__foot { flex-direction: column; align-items: flex-end; gap: 12px; margin-top: 0; }
  .featured__price { font-size: clamp(40px, 5vw, 64px); }

  /* Gallery: 4-col */
  .gallery { grid-template-columns: repeat(4, 1fr); }

  /* Shelf: 4-col */
  .shelf-grid { grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 28px); }
  .product__name { font-size: 15px; }
  .product__price { font-size: 15px; }
  .product__tile span { font-size: 11px; }

  /* Reviews: 3-col */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .review { padding: 32px; }
  .review blockquote { font-size: 16px; }
  .review .who { font-size: 13px; }

  /* Events: 2-col, image left */
  .events-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
  .events__media { margin-bottom: 0; }
  .events__media img { aspect-ratio: 4 / 3; }
  .events .lead { font-size: 17px; max-width: 480px; }

  /* Gift cards: intro (top-left) + rest (bottom-left), card visual right */
  .gift-grid {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    column-gap: clamp(44px, 6vw, 84px);
    grid-template-areas: "intro visual" "rest visual";
  }
  .gift-intro { grid-area: intro; }
  .gift-rest { grid-area: rest; }
  .gift-grid .giftcard-visual { grid-area: visual; min-height: 300px; margin-bottom: 0; }
  .giftcard-back { width: min(86%, 400px); transform: rotate(-8deg) translate(-12px, 14px); }
  .giftcard-front { width: min(90%, 420px); padding: clamp(20px, 3.4vw, 30px); }
  .giftcard-front .gc-amount { font-size: clamp(40px, 6vw, 58px); }
  .giftcard-front .gc-compliments { font-size: 24px; }

  /* Visit: info top-left, CTAs bottom-left, map right */
  .visit-grid {
    display: grid; grid-template-columns: 1fr 1.15fr; grid-template-rows: 1fr auto;
    grid-template-areas: "info map" "cta map"; column-gap: clamp(34px, 5vw, 64px);
  }
  .visit-info { grid-area: info; align-self: start; }
  .visit-cta { grid-area: cta; align-self: end; flex-direction: row; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
  .visit-cta .btn { width: auto; }
  .info-stack { gap: 26px; margin-bottom: 34px; }
  .info__text { font-size: 17px; }
  .map { grid-area: map; height: 100%; min-height: 420px; margin-bottom: 0; }

  /* Footer */
  .footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 30px; }
  .footer-tag { margin-bottom: 0; }
  .social { margin-bottom: 0; }
  .footer-brand .wordmark { letter-spacing: 0.22em; font-size: 18px; }
  .footer-tag { font-size: 24px; }
  .fineprint { flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 42px; padding-top: 24px; font-size: 12.5px; }

  .fab-stack { right: 24px; bottom: 24px; }
  .fab { width: 58px; height: 58px; }
}

/* Larger desktop niceties */
@media (min-width: 1024px) {
  .hero__body { max-width: 520px; }
}

/* =========================================================================
   Spacing utilities (small, used to match the design's vertical rhythm)
   ========================================================================= */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 34px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 30px; }
.maxw-480 { max-width: 480px; }

/* Placeholder helpers (sections awaiting real content) */
.ph { color: var(--accent); }
.ph-note { display: inline-block; margin-top: 12px; font-size: 12.5px; line-height: 1.5; color: var(--accent); border: 1px dashed var(--outline); border-radius: 2px; padding: 6px 12px; }
.ph-box { display: flex; align-items: center; justify-content: center; text-align: center; width: 100%; border: 1px dashed var(--outline); border-radius: 2px; color: var(--faint); background: rgba(244,236,224,0.02); font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
