/* Mr. Pedro Barbería VIP — preview website.
 *
 * The design handoff was authored with inline styles, which is a constraint of
 * the prototyping environment rather than a design decision; the tokens below
 * are the values that were repeated there. Radius is 2px on everything on
 * purpose — the near-square geometry is what keeps the page reading as a
 * barbershop rather than a SaaS product.
 *
 * Fonts are self-hosted (fonts.css). A preview may not fetch from a third
 * party, so Google Fonts is not an option here: every request the browser makes
 * on its own hands the visitor's IP to that host before they have consented to
 * anything. See previews/README.md. */

:root {
	--ink: #0b0b0c;
	--ink-raised: #131316;
	--ink-sunken: #0e0e10;
	--ink-field: #141417;
	--ink-hover: #1e1e22;

	--gold: #d9a441;
	--gold-hover: #efc268;
	--gold-light: #f6e2ae;
	--gold-link: #e8c87a;

	--text-primary: #fbf8f3;
	--text-body: #ede9e3;
	--text-soft: #dcd6cd;
	--text-muted: #c4bdb3;
	--text-dim: #b4ada4;
	--text-faint: #9b948b;
	--text-fainter: #948d84;
	--text-quiet: #8e877e;
	--text-disabled: #54504b;
	--open-green: #5fbf7a;

	--hair: 1px solid rgba(237, 233, 227, 0.12);
	--hair-soft: 1px solid rgba(237, 233, 227, 0.14);
	--hair-row: 1px solid rgba(237, 233, 227, 0.1);
	--hair-gold: 1px solid rgba(217, 164, 65, 0.45);

	--wrap: 1180px;
	--pad-y: clamp(58px, 9vw, 110px);
	--pad-x: clamp(20px, 5vw, 48px);

	--sans: 'Barlow', system-ui, -apple-system, sans-serif;
	--display: 'Anton', system-ui, -apple-system, sans-serif;
	--cond: 'Barlow Condensed', system-ui, -apple-system, sans-serif;
}

/* The claim overlay's own two families, self-hosted for the same reason. These
 * are the Heegstra brand faces and only the overlay uses them. */
@font-face {
	font-family: 'Outfit';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(fonts/Outfit-Variable.woff2) format('woff2');
}
@font-face {
	font-family: 'IBM Plex Sans';
	font-style: normal;
	font-weight: 100 700;
	font-display: swap;
	src: url(fonts/IBMPlexSans-Variable.woff2) format('woff2');
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	/* Clears the one sticky bar. The handoff said 132px because a claim bar sat
	 * above the header; that bar is now the shared claim overlay instead. */
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--text-body);
	font-family: var(--sans);
	-webkit-font-smoothing: antialiased;
	/* Kept from the handoff, but it hides overflow rather than preventing it, so
	 * it can only ever mask a reflow bug. Every auto-fit track below is therefore
	 * minmax(min(100%, Npx), 1fr) rather than minmax(Npx, 1fr): a bare 320px
	 * minimum does not shrink, so at a 320px viewport — where the padded content
	 * box is only ~280px — the booking and contact columns were clipped by ~40px
	 * with no way to scroll to them. min() lets the track fall back to the
	 * container width. (Codex review, 8 Aug 2026.) */
	overflow-x: hidden;
}

img,
video {
	display: block;
	max-width: 100%;
}

a {
	color: var(--gold-link);
	text-decoration: none;
}
a:hover {
	color: var(--gold-light);
}

button,
input,
select,
textarea {
	font-family: inherit;
}

:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 3px;
	border-radius: 2px;
}

::selection {
	background: var(--gold);
	color: var(--ink);
}

/* The pattern used for every screen-reader-only string on the page. */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* ---------------------------------------------------------------------------
 * Shell
 * ------------------------------------------------------------------------ */

/* Bottom room for the claim overlay's persistent pill, which is fixed to the
 * bottom-left corner and would otherwise sit on top of the footer's last row. */
.page {
	background: var(--ink);
	padding-bottom: 96px;
}

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
}

.band {
	padding-top: var(--pad-y);
	padding-bottom: var(--pad-y);
}

.band--raised {
	background: var(--ink-raised);
	border-top: 1px solid rgba(237, 233, 227, 0.08);
	border-bottom: 1px solid rgba(237, 233, 227, 0.08);
}

/* The numeral rule that opens every numbered section — the page's primary
 * rhythm device. */
.rule {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: clamp(20px, 3vw, 30px);
}
.rule-n {
	font: 700 13px/1 var(--cond);
	letter-spacing: 0.28em;
	color: var(--gold);
}
.rule-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(217, 164, 65, 0.85), rgba(217, 164, 65, 0));
}

h1,
h2,
h3 {
	text-wrap: balance;
}

.h2 {
	margin: 0;
	font: 400 clamp(30px, 7vw, 60px) / 1 var(--display);
	text-transform: uppercase;
	color: var(--text-primary);
}

.intro {
	margin: 16px 0 0;
	font: 400 clamp(16px, 3.6vw, 18px) / 1.6 var(--sans);
	color: var(--text-dim);
	text-wrap: pretty;
}

.eyebrow {
	margin: 0 0 8px;
	font: 600 11.5px/1 var(--cond);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
}

/* Buttons. All hovers are instant — no transition duration anywhere; the design
 * reads as crisp rather than animated. */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 2px;
	border: 0;
	font: 700 13px/1 var(--sans);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.btn--gold {
	background: var(--gold);
	color: var(--ink);
}
.btn--gold:hover {
	background: var(--gold-hover);
	color: var(--ink);
}

.btn--outline {
	background: transparent;
	border: 1px solid rgba(217, 164, 65, 0.6);
	color: var(--gold-light);
}
.btn--outline:hover {
	background: var(--gold);
	color: var(--ink);
}

.btn--ghost {
	background: rgba(11, 11, 12, 0.35);
	border: 1px solid rgba(237, 233, 227, 0.32);
	color: var(--text-body);
	backdrop-filter: blur(4px);
}
.btn--ghost:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}

.btn--quiet {
	background: transparent;
	border: 1px solid rgba(237, 233, 227, 0.24);
	color: var(--text-body);
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.08em;
	min-height: 48px;
}
.btn--quiet:hover {
	border-color: var(--gold);
	color: var(--gold-light);
}

.btn--lg {
	min-height: 56px;
	padding: 0 30px;
	font-size: 15px;
	letter-spacing: 0.08em;
}

.btn--block {
	display: flex;
	width: 100%;
	min-height: 54px;
	font-size: 14.5px;
	letter-spacing: 0.09em;
}

/* The "vista previa · demo" tag that marks a mock. It is required on both mocks:
 * it is what keeps the widget honest in a sales demo. */
.demo-tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border: 1px solid rgba(217, 164, 65, 0.5);
	border-radius: 2px;
	font: 700 10.5px/1 var(--cond);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ---------------------------------------------------------------------------
 * Header
 * ------------------------------------------------------------------------ */

.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(11, 11, 12, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: var(--hair-row);
}

.header-in {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 12px clamp(16px, 4vw, 40px);
	display: flex;
	align-items: center;
	gap: 16px;
}

.logo-link {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 44px;
}

/* Every logo instance screen-blends: the source file is a JPEG on black, and
 * screen drops that black into the page. Swap for a transparent PNG/SVG when the
 * shop provides one and this can go. */
.logo-img {
	object-fit: cover;
	mix-blend-mode: screen;
}

.logo-mark {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.logo-words {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.logo-words b {
	font: 400 17px/1 var(--display);
	letter-spacing: 0.06em;
	color: var(--text-body);
	white-space: nowrap;
}
.logo-words span {
	font: 600 10.5px/1 var(--cond);
	letter-spacing: 0.34em;
	color: var(--gold);
	margin-top: 5px;
	white-space: nowrap;
}

.header-spacer {
	flex: 1;
	min-width: 12px;
}

/* Below 1040px the nav is dropped entirely and there is no hamburger: the page
 * is short and the header CTA covers the need. Do not add a mobile menu. */
.nav {
	display: none;
	align-items: center;
	gap: 22px;
	margin-right: 8px;
}
.nav a {
	font: 600 12.5px/1 var(--sans);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #c9c3ba;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}
.nav a:hover {
	color: var(--gold);
}

.header-cta {
	padding: 0 18px;
	white-space: nowrap;
	/* .btn is a flex container, so the two words are separate flex items and any
	 * whitespace between them is discarded — the label rendered as
	 * "AGENDARWHATSAPP". The gap is the word space, and it collapses to nothing
	 * when the verb is hidden below. (The prototype solved this with a 6px
	 * spacer span for the same reason.) */
	gap: 0.32em;
}

/* "Agendar WhatsApp" plus the logo lockup is a few pixels wider than a 390px
 * phone, and body has overflow-x: hidden, so the overflow does not scroll — it
 * silently clips the end of the label. Drop the verb on the narrowest screens;
 * the word that carries the meaning is the second one. */
.header-cta-verb {
	display: none;
}
@media (min-width: 560px) {
	.header-cta-verb {
		display: inline;
	}
}

@media (min-width: 1040px) {
	.nav {
		display: flex;
	}
}

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------ */

.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: min(94svh, 860px);
	display: flex;
	align-items: flex-end;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -3;
	filter: saturate(0.85) contrast(1.05);
}

/* The heavy top and bottom stops are what make white type legible over a moving
 * image, and what melts the hero into the section below it. */
.hero-scrim {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: linear-gradient(
		180deg,
		rgba(11, 11, 12, 0.84) 0%,
		rgba(11, 11, 12, 0.5) 36%,
		rgba(11, 11, 12, 0.93) 82%,
		#0b0b0c 100%
	);
}

/* Reads as film grain, not as a CRT effect. */
.hero-grain {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.6;
	background: repeating-linear-gradient(
		0deg,
		rgba(255, 255, 255, 0.028) 0px,
		rgba(255, 255, 255, 0.028) 1px,
		transparent 1px,
		transparent 3px
	);
}

.hero-in {
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 120px var(--pad-x) clamp(44px, 7vw, 80px);
}

.hero-logo {
	width: clamp(78px, 17vw, 104px);
	height: clamp(78px, 17vw, 104px);
	margin-bottom: clamp(18px, 3vw, 26px);
}

.hero-eyebrow {
	margin: 0 0 14px;
	font: 600 12px/1 var(--cond);
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero h1 {
	margin: 0;
	font: 400 clamp(42px, 11.5vw, 108px) / 0.92 var(--display);
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--text-primary);
	max-width: 14ch;
}

.hero-sub {
	margin: clamp(18px, 3vw, 26px) 0 0;
	font: 400 clamp(17px, 4.4vw, 23px) / 1.5 var(--sans);
	color: var(--text-soft);
	max-width: 34ch;
	text-wrap: pretty;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(26px, 4vw, 38px);
}

/* ---------------------------------------------------------------------------
 * Quick facts
 * ------------------------------------------------------------------------ */

.facts {
	border-top: 1px solid rgba(217, 164, 65, 0.22);
	border-bottom: 1px solid rgba(217, 164, 65, 0.22);
	background: var(--ink-raised);
}

.facts-in {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: clamp(18px, 3vw, 26px) var(--pad-x);
	display: grid;
	gap: clamp(14px, 3vw, 32px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.fact {
	margin: 0;
	font: 400 15px/1.4 var(--sans);
	color: var(--text-dim);
}
.fact span {
	color: var(--text-quiet);
}

.status {
	display: flex;
	align-items: center;
	gap: 11px;
}
.status p {
	margin: 0;
	font: 600 15px/1.4 var(--sans);
	color: var(--text-body);
}

.status-dot {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex: 0 0 auto;
	background: var(--text-quiet);
	box-shadow: 0 0 0 4px rgba(142, 135, 126, 0.14);
}
.status-dot.is-open {
	background: var(--open-green);
	box-shadow: 0 0 0 4px rgba(95, 191, 122, 0.16);
}

/* ---------------------------------------------------------------------------
 * Services
 * ------------------------------------------------------------------------ */

.services-grid {
	display: grid;
	gap: clamp(22px, 4vw, 40px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	margin-top: clamp(34px, 5vw, 52px);
	align-items: start;
}

.figure {
	margin: 0;
}

.figure img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	border: var(--hair);
}

.figure figcaption {
	margin-top: 12px;
	font: 400 14px/1.55 var(--sans);
	color: var(--text-quiet);
}

.services-col {
	display: grid;
	gap: 26px;
}

.vip {
	border: var(--hair-gold);
	background: linear-gradient(180deg, #17161a 0%, #111013 100%);
	padding: clamp(22px, 4vw, 30px);
}
.vip h3 {
	margin: 0;
	font: 400 clamp(23px, 5vw, 32px) / 1.05 var(--display);
	text-transform: uppercase;
	color: var(--text-primary);
}
.vip p {
	margin: 13px 0 0;
	font: 400 16.5px/1.6 var(--sans);
	color: var(--text-muted);
	text-wrap: pretty;
}
.vip .btn {
	min-height: 52px;
	margin-top: 22px;
	padding: 0 26px;
	font-size: 14px;
	letter-spacing: 0.09em;
}

.svc-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.svc {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 16px 0;
	border-bottom: var(--hair-row);
}
.svc:last-child {
	border-bottom: 0;
}

.svc-name {
	flex: 0 1 auto;
}
.svc-name b {
	display: block;
	font: 600 18px/1.3 var(--sans);
	color: var(--text-body);
}
.svc-name span {
	display: block;
	margin-top: 3px;
	font: 400 14.5px/1.5 var(--sans);
	color: var(--text-fainter);
}

/* The dotted leader, nudged up so it sits on the baseline rather than under it. */
.svc-leader {
	flex: 1 1 auto;
	min-width: 16px;
	border-bottom: 1px dotted rgba(237, 233, 227, 0.22);
	transform: translateY(-4px);
}

.svc-quote {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font: 700 13px/1 var(--sans);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-link);
}

.svc-note {
	margin: 18px 0 0;
	font: 400 14px/1.6 var(--sans);
	color: var(--text-quiet);
	text-wrap: pretty;
}

/* ---------------------------------------------------------------------------
 * Booking (mock)
 * ------------------------------------------------------------------------ */

.two-col {
	display: grid;
	gap: clamp(28px, 5vw, 56px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	align-items: start;
}

.callout {
	margin-top: 26px;
	padding: 18px 20px;
	border-left: 2px solid var(--gold);
	background: rgba(217, 164, 65, 0.06);
}
.callout p:first-child {
	margin: 0;
	font: 600 15.5px/1.55 var(--sans);
	color: var(--text-soft);
}
.callout p + p {
	margin: 6px 0 14px;
	font: 400 14.5px/1.55 var(--sans);
	color: var(--text-fainter);
}
.callout .btn {
	min-height: 48px;
	padding: 0 22px;
}

.booking {
	border: var(--hair-soft);
	background: var(--ink-sunken);
	padding: clamp(18px, 3.5vw, 28px);
}

.booking > .demo-tag {
	margin: 0 0 16px;
}

.cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}
.cal-head p {
	margin: 0;
	font: 600 16px/1 var(--sans);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-body);
}

.cal-nav {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid rgba(237, 233, 227, 0.18);
	color: var(--text-body);
	font-size: 17px;
	cursor: pointer;
	border-radius: 2px;
}
.cal-nav:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* 2px is load-bearing: it is what lets each cell still hold 44px of height at
 * the narrowest widths the panel is used at. */
.cal-dows,
.cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}
.cal-dows {
	margin-bottom: 6px;
}
.cal-dows span {
	text-align: center;
	font: 600 11px/1 var(--cond);
	letter-spacing: 0.14em;
	color: var(--text-faint);
	padding: 6px 0;
}

.cal-blank {
	display: block;
	height: 44px;
}

/* TARGET SIZE, stated because it is the one place the "≥44px touch targets" rule
 * is not met in both dimensions. Seven columns in a panel this narrow cannot be
 * 44px wide: at a 320px viewport each cell is ~33×44, and ~44×44 only arrives
 * around 420px. That is the handoff's own intent — it specifies the 2px gap
 * precisely because it "lets each cell hold 44px HEIGHT at narrow widths" — and
 * 33×44 clears WCAG 2.5.8 Target Size (Minimum, AA, 24×24). It does not meet
 * 2.5.5 (Enhanced, AAA). A month grid that met 44×44 everywhere would have to
 * stop being a month grid. Every other target on the page is ≥44px in both.
 * (Raised by Codex, 8 Aug 2026; interpretation recorded rather than changed.) */
.cal-day {
	width: 100%;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	font: 600 15px/1 var(--sans);
	cursor: pointer;
	background: var(--ink-field);
	border: var(--hair-soft);
	color: var(--text-soft);
}
.cal-day.is-today {
	border-color: var(--gold);
	color: var(--gold-light);
}
.cal-day.is-selected {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--ink);
	font-weight: 700;
}
.cal-day:disabled {
	background: transparent;
	border: 1px solid rgba(237, 233, 227, 0.06);
	color: var(--text-disabled);
	font-weight: 400;
	cursor: not-allowed;
}

.slot-head {
	margin: 22px 0 12px;
	font: 600 12px/1 var(--cond);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
}

.slots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.slot {
	min-height: 44px;
	padding: 0 16px;
	border-radius: 2px;
	font: 600 14.5px/1 var(--sans);
	cursor: pointer;
	background: var(--ink-field);
	border: 1px solid rgba(237, 233, 227, 0.16);
	color: var(--text-soft);
}
.slot.is-selected {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--ink);
	font-weight: 700;
}
.slot:disabled {
	background: transparent;
	border: 1px solid rgba(237, 233, 227, 0.06);
	color: var(--text-disabled);
	font-weight: 400;
	cursor: not-allowed;
	text-decoration: line-through;
}

.booking .btn--block {
	margin-top: 24px;
}

.booking-summary {
	margin: 12px 0 0;
	font: 400 13px/1.5 var(--sans);
	color: var(--text-faint);
	text-align: center;
}

/* ---------------------------------------------------------------------------
 * Experience
 * ------------------------------------------------------------------------ */

.exp-grid {
	display: grid;
	gap: clamp(30px, 5vw, 60px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	align-items: center;
}

/* The 1px gap over a lit background IS the divider — each item is painted with
 * the page colour and the grid gap shows through. */
.perks {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	gap: 1px;
	background: rgba(237, 233, 227, 0.12);
	border: var(--hair);
}
.perks li {
	background: var(--ink);
	padding: 15px 18px;
	font: 500 16px/1.4 var(--sans);
	color: var(--text-soft);
}

.phone-col {
	justify-self: center;
}

.phone {
	width: clamp(240px, 72vw, 330px);
	padding: 12px;
	border: 1px solid rgba(217, 164, 65, 0.4);
	background: linear-gradient(180deg, #1a181c, #0e0e10);
	border-radius: 26px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.phone video {
	width: 100%;
	aspect-ratio: 9/16;
	object-fit: cover;
	background: #000;
	border-radius: 16px;
}

.phone-caption {
	margin: 14px auto 0;
	max-width: 330px;
	text-align: center;
	font: 400 13.5px/1.55 var(--sans);
	color: var(--text-quiet);
}

.pair {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	margin-top: clamp(30px, 5vw, 52px);
}

/* ---------------------------------------------------------------------------
 * Gallery
 * ------------------------------------------------------------------------ */

.gallery {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.tile {
	margin: 0;
	position: relative;
	overflow: hidden;
	border: var(--hair);
}
.tile img,
.tile video {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	background: #000;
}

.tile--wide {
	grid-column: 1/-1;
}
.tile--wide img {
	aspect-ratio: auto;
	height: clamp(230px, 44vw, 470px);
}

.tile--tall img {
	aspect-ratio: auto;
	height: clamp(280px, 44vw, 420px);
}

/* The tall transparent-to-opaque gradient is what makes the caption readable
 * without a hard band across the image. */
.tile figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 16px 14px;
	background: linear-gradient(180deg, transparent, rgba(11, 11, 12, 0.92));
	font: 600 12.5px/1 var(--sans);
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--text-body);
}
.tile--wide figcaption,
.tile--tall figcaption {
	padding: 34px 20px 16px;
	font-size: 13px;
	letter-spacing: 0.14em;
}

.face-lower img {
	object-position: 50% 35%;
}

.ig-cta {
	grid-column: 1/-1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(16px, 3vw, 28px);
	padding: clamp(20px, 4vw, 32px);
	border: 1px solid rgba(217, 164, 65, 0.4);
	background: linear-gradient(90deg, #17161a, #0e0e10);
}
.ig-cta:hover {
	border-color: var(--gold);
}
.ig-cta img {
	width: 72px;
	height: 72px;
}
.ig-cta-text {
	flex: 1 1 240px;
}
.ig-cta-text b {
	display: block;
	font: 400 clamp(20px, 4.4vw, 28px) / 1.1 var(--display);
	text-transform: uppercase;
	color: var(--text-primary);
}
.ig-cta-text span {
	display: block;
	margin-top: 7px;
	font: 400 15.5px/1.5 var(--sans);
	color: var(--text-dim);
}
.ig-cta .btn {
	min-height: 48px;
	padding: 0 22px;
}

/* ---------------------------------------------------------------------------
 * Tattoo — deliberately demoted. Shorter band, base background, smaller H2 and
 * an outline CTA rather than a filled one: tattooing is a secondary service.
 * ------------------------------------------------------------------------ */

.band--demoted {
	padding-top: clamp(48px, 7vw, 86px);
	padding-bottom: clamp(48px, 7vw, 86px);
}
.band--demoted .rule {
	margin-bottom: clamp(18px, 3vw, 26px);
}

.tattoo-grid {
	display: grid;
	gap: clamp(22px, 4vw, 40px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	align-items: center;
}
.tattoo-grid video {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	background: #000;
	border: var(--hair-soft);
}
.tattoo-grid h2 {
	margin: 0;
	font: 400 clamp(26px, 5.4vw, 42px) / 1.02 var(--display);
	text-transform: uppercase;
	color: var(--text-primary);
}
.tattoo-grid p {
	margin: 14px 0 0;
	font: 400 16.5px/1.65 var(--sans);
	color: var(--text-dim);
	max-width: 44ch;
	text-wrap: pretty;
}
.tattoo-grid .btn {
	min-height: 50px;
	margin-top: 22px;
	padding: 0 24px;
}

/* ---------------------------------------------------------------------------
 * Reviews
 * ------------------------------------------------------------------------ */

.reviews {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	align-items: start;
}

.review {
	margin: 0;
	padding: clamp(20px, 3.5vw, 28px);
	border: var(--hair);
	background: var(--ink-sunken);
	position: relative;
}
.stars {
	margin: 0;
	font-size: 16px;
	letter-spacing: 0.18em;
	color: var(--gold);
}
.review-quote {
	margin: 14px 0 0;
	font: 400 16.5px/1.6 var(--sans);
	color: var(--text-soft);
	text-wrap: pretty;
}
.review footer {
	margin-top: 18px;
}
.review footer p:first-child {
	margin: 0;
	font: 600 15px/1.3 var(--sans);
	color: var(--text-body);
}
.review footer p + p {
	margin: 4px 0 0;
	font: 400 13.5px/1.3 var(--sans);
	color: var(--text-quiet);
}

/* ---------------------------------------------------------------------------
 * Location
 * ------------------------------------------------------------------------ */

.cols-300 {
	display: grid;
	gap: clamp(26px, 4vw, 48px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	align-items: start;
}

.sub-h {
	margin: 0 0 16px;
	font: 600 12px/1 var(--cond);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold);
}

.hours {
	width: 100%;
	border-collapse: collapse;
}
.hours tr {
	border-bottom: var(--hair-row);
}
.hours tr:last-child {
	border-bottom: 0;
}
.hours th {
	text-align: left;
	padding: 15px 0;
	font: 500 16.5px/1.3 var(--sans);
	color: var(--text-soft);
}
.hours td {
	text-align: right;
	padding: 15px 0;
	font: 600 16.5px/1.3 var(--sans);
	color: var(--text-body);
}
/* Sunday reads as closed by being wholly dimmer, not by a badge. */
.hours .closed th,
.hours .closed td {
	color: var(--text-fainter);
}

.address {
	font-style: normal;
	font: 400 17px/1.6 var(--sans);
	color: var(--text-soft);
}

.parking {
	margin: 14px 0 0;
	font: 400 14.5px/1.6 var(--sans);
	color: var(--text-quiet);
	max-width: 42ch;
	text-wrap: pretty;
}

.map-btn {
	min-height: 54px;
	margin-top: 24px;
	padding: 0 28px;
	font-size: 14.5px;
	letter-spacing: 0.09em;
}

.street {
	margin: 0;
	border: var(--hair);
	background: var(--ink-sunken);
	padding: 14px;
}
.street img {
	width: 100%;
	height: clamp(180px, 34vw, 300px);
	object-fit: cover;
	filter: contrast(1.05) saturate(0.95);
}
.street figcaption {
	margin-top: 12px;
	font: 400 14px/1.55 var(--sans);
	color: var(--text-quiet);
}

/* ---------------------------------------------------------------------------
 * Contact (mock form)
 * ------------------------------------------------------------------------ */

.wa-big {
	min-height: 58px;
	margin-top: 26px;
	padding: 0 32px;
	font-size: 15px;
	letter-spacing: 0.08em;
}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}
.socials .btn {
	padding: 0 20px;
}

.form {
	border: var(--hair-soft);
	background: var(--ink-sunken);
	padding: clamp(20px, 3.5vw, 30px);
	display: grid;
	gap: 16px;
}

.form-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.form-head h3 {
	margin: 0;
	font: 600 12px/1 var(--cond);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold);
}

.field {
	display: grid;
	gap: 7px;
}
.field label {
	font: 600 14px/1 var(--sans);
	color: var(--text-soft);
}

/* 16px is load-bearing: anything smaller makes iOS Safari zoom the page on
 * focus. Keep it. */
.field input,
.field select,
.field textarea {
	min-height: 50px;
	padding: 0 14px;
	background: var(--ink-field);
	border: 1px solid rgba(237, 233, 227, 0.2);
	color: var(--text-body);
	font-size: 16px;
	border-radius: 2px;
}
.field textarea {
	padding: 12px 14px;
	resize: vertical;
	min-height: 0;
}

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------ */

.footer {
	background: var(--ink);
	border-top: 1px solid rgba(217, 164, 65, 0.25);
}

.footer-in {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: clamp(44px, 7vw, 72px) var(--pad-x) clamp(28px, 4vw, 40px);
}

.footer-cols {
	display: grid;
	gap: clamp(26px, 4vw, 48px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.footer-logo {
	width: 76px;
	height: 76px;
	margin-bottom: 14px;
}

.footer-name {
	margin: 0;
	font: 400 20px/1 var(--display);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-body);
}

.footer-blurb {
	margin: 8px 0 0;
	font: 400 14.5px/1.6 var(--sans);
	color: var(--text-quiet);
}

.footer h2 {
	margin: 0 0 12px;
	font: 600 12px/1 var(--cond);
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--gold);
}

.footer address,
.footer-hours {
	font-style: normal;
	font: 400 15px/1.7 var(--sans);
	color: var(--text-dim);
}
.footer-hours {
	margin: 10px 0 0;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 4px;
}
.footer-links a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font: 500 15.5px/1.4 var(--sans);
	color: var(--gold-link);
}

.footer-legal {
	margin-top: clamp(30px, 5vw, 48px);
	padding-top: 22px;
	border-top: var(--hair-row);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 22px;
}
.footer-legal p {
	margin: 0;
	font: 400 13.5px/1.4 var(--sans);
	color: var(--text-quiet);
}
.footer-legal p a {
	color: #c9c3ba;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer-legal > a,
.footer-legal button {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0;
	background: none;
	border: 0;
	font: 400 13.5px/1.4 var(--sans);
	color: var(--text-quiet);
	cursor: pointer;
}
.footer-legal button {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer-legal > a:hover,
.footer-legal button:hover,
.footer-legal p a:hover {
	color: var(--gold-light);
}

/* ---------------------------------------------------------------------------
 * Reduced motion. Ambient videos are paused rather than played (app.js); the
 * two videos with controls are untouched, because user-initiated playback is
 * always allowed.
 * ------------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}
