/* Talabartería Millennials — ported 1:1 from the Claude Design handoff.
 * The clamp() expressions ARE the responsive strategy; there are no media
 * queries besides prefers-reduced-motion. Values come straight from the
 * design reference — change them there first, here second. */

:root {
	--ink: #14110c;
	--ink2: #1e1912;
	--ink3: #272016;
	--cream: #f4efe4;
	--paper: #efe8d9;
	--gold: #e0a64a;
	--gold-ink: #7a5216;
	--muted: #bcb099;
	--muted-dark: #5b5142;
	--photo: saturate(1.04) contrast(1.02);
	--serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
}

@font-face {
	font-family: 'Instrument Serif';
	src: url('/assets/fonts/instrument-serif-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Instrument Serif';
	src: url('/assets/fonts/instrument-serif-400-italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

* {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--ink);
	color: var(--cream);
	font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.62;
	text-wrap: pretty;
	overflow-wrap: break-word;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
	margin: 0;
}
ul,
ol {
	padding: 0;
	list-style: none;
}
img,
video {
	display: block;
	max-width: 100%;
}
img {
	filter: var(--photo);
}
a {
	color: var(--gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
a:hover {
	color: #f3c67c;
}
button {
	font: inherit;
	color: inherit;
}
:focus-visible {
	outline: 3px solid var(--ink);
	outline-offset: 0;
	box-shadow: 0 0 0 6px var(--gold);
	border-radius: 2px;
}
summary {
	cursor: pointer;
	list-style: none;
}
summary::-webkit-details-marker {
	display: none;
}

/* ---- page wrapper -------------------------------------------------- */
.page {
	padding-bottom: 96px; /* the fixed bubble never covers the legal row */
	background: var(--ink);
	position: relative;
	overflow-x: hidden;
}

/* ---- header (transparent, overlaid on the hero) -------------------- */
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 6;
}
.header-in {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	padding: clamp(16px, 3vw, 26px) clamp(16px, 5vw, 56px);
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.brand img {
	height: 38px;
	width: auto;
	flex: 0 0 auto;
}
.brand-word {
	font-family: var(--serif);
	font-size: 15px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cream);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nav {
	display: flex;
	align-items: center;
	gap: 10px;
}
.nav-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 14px;
	color: var(--muted);
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.nav-wa {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 18px;
	background: var(--gold);
	color: #14110c;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 2px;
}

/* ---- hero ---------------------------------------------------------- */
.hero {
	position: relative;
	min-height: min(94vh, 900px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--ink);
}
.hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 38%;
}
/* Four stops, not two: dark for the header, a bright window at 22% where the
 * belt shows through, then near-solid ink under the headline. Load-bearing. */
.hero-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(20, 17, 12, 0.8) 0%,
		rgba(20, 17, 12, 0.3) 22%,
		rgba(20, 17, 12, 0.58) 54%,
		rgba(20, 17, 12, 0.95) 86%,
		var(--ink) 100%
	);
}
.hero-in {
	position: relative;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(96px, 17vh, 200px) clamp(16px, 5vw, 56px) clamp(104px, 12vw, 142px);
}
.hero-content {
	max-width: min(100%, 680px);
}
.hero-eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin-bottom: 22px;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}
.hero-eyebrow .dot {
	opacity: 0.5;
}
.hero h1 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(3rem, 12.6vw, 6.1rem);
	line-height: 0.9;
	letter-spacing: -0.028em;
	color: var(--cream);
}
.hero h1 .accent {
	font-style: italic;
	color: var(--gold);
}
.hero-lede {
	margin-top: 22px;
	max-width: 34ch;
	font-size: clamp(1.06rem, 3.6vw, 1.28rem);
	color: #e4dccb;
}
.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}
.btn-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 28px;
	background: var(--gold);
	color: #14110c;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
	border-radius: 2px;
	transition: background 0.18s ease;
}
.btn-gold:hover {
	background: #eab35d;
	color: #14110c;
}
.btn-ghost {
	display: inline-flex;
	align-items: center;
	min-height: 54px;
	padding: 0 26px;
	border: 1px solid rgba(244, 239, 228, 0.3);
	color: var(--cream);
	text-decoration: none;
	letter-spacing: 0.04em;
	white-space: nowrap;
	border-radius: 2px;
	transition: border-color 0.18s ease;
}
.btn-ghost:hover {
	border-color: rgba(244, 239, 228, 0.45);
	color: var(--cream);
}
.hero-note {
	margin-top: 22px;
	font-size: 14px;
	color: var(--muted);
}

/* ---- credentials row ----------------------------------------------- */
.creds {
	border-bottom: 1px solid rgba(244, 239, 228, 0.1);
	background: var(--ink);
}
.creds ul {
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(28px, 4.5vw, 46px) clamp(16px, 5vw, 56px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
	gap: clamp(22px, 4vw, 44px);
}
.cred-label {
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
}
.cred-statement {
	margin-top: 12px;
	font-family: var(--serif);
	font-size: clamp(1.28rem, 3.4vw, 1.62rem);
	line-height: 1.22;
	color: var(--cream);
}

/* ---- sections ------------------------------------------------------ */
.section {
	padding: clamp(48px, 8vw, 92px) clamp(16px, 5vw, 56px);
}
.section-in {
	max-width: 1080px;
	margin: 0 auto;
}
.bg-ink {
	background: var(--ink);
}
.bg-ink2 {
	background: var(--ink2);
}
.bg-ink3 {
	background: var(--ink3);
}
.bg-cream {
	background: var(--cream);
	color: #221c14;
}
.bg-paper {
	background: var(--paper);
	color: #221c14;
}
.eyebrow {
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}
.eyebrow--ink {
	color: var(--gold-ink);
}
.h2 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(2rem, 6.4vw, 3rem);
	line-height: 1.06;
	color: var(--cream);
	max-width: 22ch;
}
.h2--feature {
	font-size: clamp(2rem, 6.4vw, 2.9rem);
	max-width: 24ch;
}
.h2--light {
	color: inherit;
}
.h2--narrow {
	max-width: 20ch;
}

/* ---- 01 services ledger -------------------------------------------- */
.services {
	margin-top: clamp(28px, 5vw, 44px);
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(244, 239, 228, 0.14);
}
.service {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	align-items: baseline;
	padding: clamp(20px, 4vw, 28px) 0;
	border-bottom: 1px solid rgba(244, 239, 228, 0.14);
}
.service-num {
	flex: 0 0 auto;
	font-family: var(--serif);
	font-size: 15px;
	color: var(--gold);
	letter-spacing: 0.1em;
}
.service-body {
	flex: 1 1 min(100%, 300px);
	min-width: min(100%, 220px);
}
.service-body h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(1.4rem, 4.4vw, 1.72rem);
	color: var(--cream);
}
.service-body p {
	margin-top: 8px;
	color: #d8cfbc;
	max-width: 52ch;
}
.service-cta {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 4px;
	color: var(--gold);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(224, 166, 74, 0.5);
}
.services-quote {
	margin-top: 26px;
	padding-left: clamp(0px, 3vw, 28px);
	border-left: 2px solid var(--gold);
	max-width: 60ch;
	color: var(--muted);
	font-style: italic;
	font-family: var(--serif);
	font-size: clamp(1rem, 3.4vw, 1.14rem);
}

/* ---- 02 / 04 feature columns --------------------------------------- */
.feature {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(28px, 5vw, 56px);
	align-items: center;
}
.feature--reverse {
	flex-wrap: wrap-reverse; /* video above the text on mobile */
}
.feature-media {
	flex: 0 1 320px;
	min-width: min(100%, 240px);
}
.feature--reverse .feature-media {
	flex: 0 1 340px;
}
.feature-text {
	flex: 1 1 min(100%, 340px);
	min-width: min(100%, 240px);
}
.feature--reverse .feature-text {
	flex: 1 1 min(100%, 320px);
}
/* A single hairline directly on the media — no matted frame. */
.video-frame {
	position: relative;
	border: 1px solid rgba(224, 166, 74, 0.26);
	overflow: hidden;
}
.video-frame video {
	width: 100%;
	height: auto;
	aspect-ratio: 9 / 16;
	object-fit: cover;
	background: #0e0c08;
	cursor: pointer;
}
.vtoggle {
	margin-top: 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 16px;
	background: transparent;
	border: 1px solid rgba(244, 239, 228, 0.28);
	color: var(--cream);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 2px;
}
.feature-text .body {
	margin-top: 20px;
	color: #d8cfbc;
	max-width: 50ch;
}
.feature-text .body + .body {
	margin-top: 16px;
}
.feature-cta {
	margin-top: 26px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 24px;
	background: var(--gold);
	color: #14110c;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 2px;
	transition: background 0.18s ease;
}
.feature-cta:hover {
	background: #eab35d;
	color: #14110c;
}
/* Outline variant: the gold fill is reserved for WhatsApp-primary moments. */
.feature-cta--outline {
	background: transparent;
	border: 1px solid var(--gold);
	color: var(--gold);
	transition: border-color 0.18s ease;
}
.feature-cta--outline:hover {
	background: rgba(224, 166, 74, 0.08);
	color: var(--gold);
}
.wallet-points {
	margin-top: 22px;
	display: grid;
	gap: 10px;
	color: var(--cream);
	font-size: 15px;
}
.wallet-points li {
	display: flex;
	gap: 12px;
}
.wallet-points .dash {
	color: var(--gold);
}
.feature-text .lead-in {
	margin-top: 20px;
	color: #d8cfbc;
	max-width: 48ch;
}

/* ---- 03 gallery ----------------------------------------------------- */
.gallery-intro {
	margin-top: 16px;
	color: var(--muted);
	max-width: 50ch;
}
.gallery {
	margin-top: clamp(26px, 5vw, 44px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
	gap: clamp(12px, 2.4vw, 20px);
}
.gallery figure {
	margin: 0;
}
/* aspect-ratio + object-fit only — height:100% here pushes the caption out
 * of the figure box and the next row overlaps it. Fixed bug; keep it out. */
.gallery img {
	width: 100%;
	min-height: 260px;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border: 1px solid rgba(224, 166, 74, 0.22);
}
.gallery figcaption {
	margin-top: 10px;
	font-size: 13px;
	color: var(--muted);
}

/* ---- 05 reviews (light) --------------------------------------------- */
.reviews {
	margin-top: clamp(26px, 5vw, 44px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: clamp(16px, 3vw, 28px);
}
.review {
	background: #fbf7ee;
	border: 1px solid rgba(34, 28, 20, 0.14);
	padding: clamp(20px, 4vw, 30px);
}
.review--photo {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.stars {
	font-size: 19px;
	letter-spacing: 0.14em;
	color: var(--gold-ink);
}
.review blockquote {
	margin-top: 14px;
	font-family: var(--serif);
	font-size: clamp(1.1rem, 3.6vw, 1.28rem);
	line-height: 1.5;
}
.review footer {
	margin-top: 18px;
	font-size: 14px;
	color: var(--muted-dark);
}
.review footer .name {
	font-weight: 700;
	color: #221c14;
}
.review-photo img {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border: 1px solid rgba(34, 28, 20, 0.16);
}
.review-photo figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--muted-dark);
}

/* ---- 06 FAQ (light) -------------------------------------------------- */
.faq-in {
	max-width: 820px;
	margin: 0 auto;
}
.faq-lede {
	margin-top: 18px;
	color: #3d3427;
	max-width: 62ch;
}
.faq-list {
	margin-top: clamp(24px, 4vw, 38px);
	border-top: 1px solid rgba(34, 28, 20, 0.18);
}
.faq-list details {
	border-bottom: 1px solid rgba(34, 28, 20, 0.18);
}
.faq-list summary {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	min-height: 56px;
	padding: 12px 0;
	font-family: var(--serif);
	font-size: clamp(1.12rem, 3.8vw, 1.32rem);
}
.chev {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--gold-ink);
	border-bottom: 2px solid var(--gold-ink);
	transform: rotate(-45deg);
	transition: transform 0.2s ease;
}
details[open] .chev {
	transform: rotate(45deg);
}
.faq-list p {
	padding: 0 0 20px;
	color: #3d3427;
	max-width: 60ch;
}
.faq-list a {
	color: var(--gold-ink);
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}

/* ---- 07 hours + route ------------------------------------------------ */
.location-grid {
	margin-top: clamp(26px, 5vw, 44px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	gap: clamp(20px, 4vw, 40px);
}
.h3-label {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}
.hours {
	margin-top: 16px;
	border-top: 1px solid rgba(244, 239, 228, 0.14);
}
.hours li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 8px;
	border-bottom: 1px solid rgba(244, 239, 228, 0.14);
}
.hours li.is-today {
	background: rgba(224, 166, 74, 0.1);
	border-left: 2px solid var(--gold);
}
.hours .time {
	color: #d8cfbc;
}
.hours [data-today] {
	color: var(--gold);
	font-weight: 700;
}
.addr {
	margin-top: 26px;
	font-style: normal;
	color: #d8cfbc;
}
.addr .strong {
	font-weight: 700;
	color: var(--cream);
}
.location-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}
.btn-maps {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	background: var(--gold);
	color: #14110c;
	text-decoration: none;
	font-weight: 700;
	border-radius: 2px;
	transition: background 0.18s ease;
}
.btn-maps:hover {
	background: #eab35d;
	color: #14110c;
}
.btn-outline {
	display: inline-flex;
	align-items: center;
	min-height: 52px;
	padding: 0 22px;
	border: 1px solid rgba(244, 239, 228, 0.28);
	color: var(--cream);
	text-decoration: none;
	border-radius: 2px;
	transition: border-color 0.18s ease;
}
.btn-outline:hover {
	border-color: rgba(244, 239, 228, 0.45);
	color: var(--cream);
}
.croquis {
	margin-top: 16px;
	border: 1px solid rgba(224, 166, 74, 0.3);
	background: #1a1610;
	padding: clamp(12px, 3vw, 20px);
}
.croquis svg {
	width: 100%;
	height: auto;
	display: block;
}
.route-steps {
	margin-top: 18px;
	display: grid;
	gap: 8px;
}
.route-step {
	width: 100%;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	text-align: left;
	min-height: 56px;
	padding: 12px 14px;
	background: transparent;
	border: 1px solid rgba(244, 239, 228, 0.16);
	cursor: pointer;
	border-radius: 2px;
}
.route-step.is-active {
	border-color: var(--gold);
	background: rgba(224, 166, 74, 0.1);
}
.step-num {
	flex: 0 0 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-size: 13px;
}
.route-step.is-active .step-num {
	background: var(--gold);
	color: #14110c;
}
.route-step .step-text {
	color: #e4dccb;
}
.route-step strong {
	color: var(--cream);
}
.route-note {
	margin-top: 14px;
	font-size: 14px;
	color: var(--muted);
}

/* ---- 08 contact ------------------------------------------------------ */
.contact-grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	gap: clamp(24px, 4vw, 44px);
	align-items: start;
}
.contact-lede {
	margin-top: 18px;
	color: #d8cfbc;
	max-width: 46ch;
}
.contact-wa {
	margin-top: 24px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 26px;
	background: var(--gold);
	color: #14110c;
	text-decoration: none;
	font-weight: 700;
	font-size: 17px;
	border-radius: 2px;
	transition: background 0.18s ease;
}
.contact-wa:hover {
	background: #eab35d;
	color: #14110c;
}
.contact-line {
	margin-top: 16px;
	font-size: 15px;
	color: var(--muted);
}
.composer {
	border: 1px solid rgba(224, 166, 74, 0.3);
	background: var(--ink);
	padding: clamp(18px, 4vw, 28px);
}
.composer h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(1.3rem, 3.4vw, 1.6rem);
	color: var(--cream);
}
.composer-sub {
	margin-top: 8px;
	font-size: 14px;
	color: var(--muted);
}
.fields {
	margin-top: 22px;
	display: grid;
	gap: 16px;
}
.field-label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}
.field-label .opt {
	text-transform: none;
	letter-spacing: 0;
	color: #8f8676;
}
.fields input,
.fields textarea {
	margin-top: 8px;
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid rgba(244, 239, 228, 0.2);
	background: #1a1610;
	color: var(--cream);
	font-size: 16px; /* prevents iOS zoom-on-focus — keep it */
	border-radius: 2px;
	transition: border-color 0.18s ease;
}
.fields input:hover,
.fields input:focus,
.fields textarea:hover,
.fields textarea:focus {
	border-color: var(--gold);
}
.fields input::placeholder,
.fields textarea::placeholder {
	color: #8f8676;
}
.fields textarea {
	min-height: 96px;
	padding: 12px 14px;
	font-family: inherit;
	line-height: 1.5;
	resize: vertical;
}
.chips {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.chip {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	padding: 0 14px;
	border: 1px solid rgba(244, 239, 228, 0.2);
	background: transparent;
	color: #d8cfbc;
	font-size: 14px;
	cursor: pointer;
	border-radius: 2px;
	transition:
		border-color 0.18s ease,
		background 0.18s ease,
		color 0.18s ease;
}
.chip[aria-checked='true'] {
	border-color: var(--gold);
	background: rgba(224, 166, 74, 0.14);
	color: var(--gold);
}
.composer-send {
	min-height: 54px;
	padding: 0 24px;
	background: var(--gold);
	color: #14110c;
	border: none;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	border-radius: 2px;
	transition: background 0.18s ease;
}
.composer-send:hover {
	background: #eab35d;
}
.form-note {
	font-size: 13px;
	color: var(--muted);
}
.form-note.is-ok {
	color: var(--gold);
}
.form-note.is-error {
	color: #e8b48a;
}

/* ---- footer ---------------------------------------------------------- */
.footer {
	background: #0f0d09;
	padding: clamp(40px, 7vw, 72px) clamp(16px, 5vw, 56px) clamp(28px, 4vw, 40px);
	border-top: 1px solid rgba(224, 166, 74, 0.25);
}
.footer-grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(24px, 4vw, 44px);
}
.footer-logo {
	height: 56px;
	width: auto;
}
.footer-brandname {
	margin-top: 14px;
	font-family: var(--serif);
	font-size: 1.25rem;
	color: var(--cream);
}
.footer-tagline {
	margin-top: 8px;
	color: var(--muted);
	max-width: 34ch;
}
.footer h2 {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	font-family: inherit;
	font-weight: 700;
}
.footer-block {
	margin-top: 14px;
	color: #d8cfbc;
}
.footer-block + .footer-block {
	margin-top: 12px;
}
.footer-maps {
	margin-top: 6px;
}
.footer-maps a,
.footer-social a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}
.footer-social {
	margin-top: 12px;
	display: grid;
	gap: 4px;
}
.footer-legal {
	max-width: 1080px;
	margin: clamp(20px, 4vw, 34px) auto 0;
	padding-top: 8px;
	border-top: 1px solid rgba(244, 239, 228, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 0 22px;
	align-items: center;
	font-size: 13px;
	color: var(--muted);
}
/* 13px type inside a 44px target; keep both. */
.footer-legal a,
.footer-legal button {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--muted);
}
.footer-legal button {
	background: none;
	border: none;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	font-size: 13px;
}

/* ---- fixed WhatsApp bubble ------------------------------------------- */
/* Bottom-right: this page declines the support chat (data-hs-chat="off" in
 * <head>), which frees the corner the pipeline normally reserves for it.
 * The claim pill keeps bottom-left. */
.wa-bubble {
	position: fixed;
	right: clamp(14px, 3vw, 28px);
	bottom: clamp(14px, 3vw, 28px);
	z-index: 20;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--gold);
	color: #14110c;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
	transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes tmpop {
	from {
		transform: translateY(150%);
	}
	to {
		transform: none;
	}
}
/* Gated on data-bubble-managed, set by JS: without JS the bubble is simply
 * always visible. Visibility, not opacity — a pinned transition on opacity
 * left elements stuck invisible in the prototype runtime. */
html[data-bubble-managed] .wa-bubble {
	visibility: hidden;
	pointer-events: none;
}
html[data-bubble-managed] .wa-bubble[data-visible] {
	visibility: visible;
	pointer-events: auto;
	animation: tmpop 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}
html[data-bubble-managed] .wa-bubble[data-visible]:hover {
	transform: translateY(-3px);
}

/* ---- scroll reveal ---------------------------------------------------- */
/* A keyframe animation, not a transition: a restarted transition with fill
 * backwards pins the element at its from value. Animation with both holds
 * the end state. Hidden state is gated on data-reveal-on, which only JS
 * sets — a no-JS visitor sees the full page. */
@keyframes tmrise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
html[data-reveal-on] [data-reveal] {
	opacity: 0;
}
html[data-reveal-on] [data-reveal][data-shown] {
	animation: tmrise 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}
html[data-reveal-on] [data-reveal-i='1'][data-shown] {
	animation-delay: 70ms;
}
html[data-reveal-on] [data-reveal-i='2'][data-shown] {
	animation-delay: 140ms;
}
html[data-reveal-on] [data-reveal-i='3'][data-shown] {
	animation-delay: 210ms;
}
html[data-reveal-on] [data-reveal-i='4'][data-shown] {
	animation-delay: 280ms;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
	html {
		scroll-behavior: auto;
	}
}
