/**
 * Von Finger Sections — "Editorial Atelier".
 *
 * A warm Scandinavian fine-jewelry system built around the goldsmith's own
 * visual language: the hallmark stamp, hairline rules, engraved numerals and
 * a high-contrast display serif. Everything is namespaced under .vf- so it
 * cannot bleed into (or be clobbered by) the active theme. Re-theme via the
 * custom properties below or override CSS in a child theme.
 */

.vf-section,
.vf-callbar {
	/* Palette — warm ink, bone paper, antique gold. */
	--vf-gold: #9c7a3c;
	--vf-gold-soft: #c4a35f;
	--vf-gold-deep: #7c5f2c;
	--vf-ink: #211b14;
	--vf-ink-soft: #4f463a;
	--vf-muted: #7a7063;
	--vf-bg: #fbf8f2;
	--vf-paper: #f3ece0;
	--vf-line: #e3d8c6;
	--vf-dark: #1a140f;
	--vf-dark-2: #2a2018;
	--vf-on-dark: #f3ebdd;
	--vf-on-dark-muted: #b9ac98;

	/* Form */
	--vf-maxw: 1160px;
	--vf-radius: 4px;
	--vf-radius-lg: 8px;
	--vf-pad-y: clamp(56px, 8vw, 112px);
	--vf-ease: cubic-bezier(0.22, 0.68, 0.2, 1);

	/* Type */
	--vf-font-head: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--vf-font-body: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.vf-section {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding-block: var(--vf-pad-y);
	color: var(--vf-ink);
	background: var(--vf-bg);
	font-family: var(--vf-font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow: clip;
}

.vf-section *,
.vf-section *::before,
.vf-section *::after {
	box-sizing: border-box;
}

/* Tactile paper grain over every section. */
.vf-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vf-section > * {
	position: relative;
	z-index: 1;
}

.vf-tone-cream { background: var(--vf-paper); }
.vf-tone-dark {
	background: radial-gradient(120% 120% at 80% 0%, var(--vf-dark-2) 0%, var(--vf-dark) 60%);
	color: var(--vf-on-dark);
}
.vf-tone-dark::before { opacity: 0.06; }

.vf-container {
	width: 100%;
	max-width: var(--vf-maxw);
	margin-inline: auto;
	padding-inline: clamp(19.2px, 5vw, 40px);
}

/* ---------- Typography ---------- */
.vf-section h1,
.vf-section h2,
.vf-section h3 {
	font-family: var(--vf-font-head);
	font-weight: 500;
	line-height: 1.08;
	margin: 0;
	letter-spacing: -0.01em;
	font-optical-sizing: auto;
}

.vf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
	margin: 0 0 17.6px;
	font-size: 11.52px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--vf-gold-deep);
}
.vf-eyebrow::before {
	content: "";
	width: 25.6px;
	height: 1px;
	background: currentColor;
	opacity: 0.6;
}
.vf-align-center .vf-eyebrow::before { display: none; }
.vf-tone-dark .vf-eyebrow { color: var(--vf-gold-soft); }
.vf-eyebrow .vf-icon { width: 1.05em; height: 1.05em; }

.vf-section__header { margin-bottom: clamp(36px, 5vw, 56px); }
.vf-align-center { text-align: center; }
.vf-align-center.vf-section__header { margin-inline: auto; max-width: 736px; }
.vf-align-center.vf-section__header .vf-eyebrow { justify-content: center; }
.vf-align-left { text-align: left; }

.vf-section__title {
	font-size: clamp(32px, 19.2px + 3vw, 54.4px);
	text-wrap: balance;
}
.vf-section__title em,
.vf-hero__title em { font-style: italic; color: var(--vf-gold-deep); }
.vf-tone-dark .vf-section__title em { color: var(--vf-gold-soft); }

.vf-section__intro {
	margin: 17.6px 0 0;
	color: var(--vf-muted);
	font-size: 17.6px;
	text-wrap: pretty;
}
.vf-tone-dark .vf-section__intro { color: var(--vf-on-dark-muted); }

/* ---------- Hallmark motif ---------- */
.vf-hallmark {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 24px auto 0;
	width: min(208px, 70%);
}
.vf-hallmark__rule {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--vf-line));
}
.vf-hallmark__rule:last-child { background: linear-gradient(90deg, var(--vf-line), transparent); }
.vf-hallmark__mark {
	width: 9px;
	height: 9px;
	flex: 0 0 auto;
	background: var(--vf-gold);
	transform: rotate(45deg);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--vf-gold) 14%, transparent);
}
.vf-tone-dark .vf-hallmark__rule { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22)); }
.vf-tone-dark .vf-hallmark__rule:last-child { background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent); }
.vf-tone-dark .vf-hallmark__mark { background: var(--vf-gold-soft); }

/* ---------- Buttons ---------- */
.vf-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14.4px;
	margin-top: 32px;
}
.vf-btn-row.vf-align-center { justify-content: center; }

.vf-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.95em 1.7em;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: var(--vf-font-body);
	font-size: 15.2px;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.35s var(--vf-ease), box-shadow 0.35s var(--vf-ease),
		background-color 0.35s var(--vf-ease), color 0.35s var(--vf-ease), border-color 0.35s var(--vf-ease);
}
.vf-btn:hover { transform: translateY(-2px); }
.vf-btn:active { transform: translateY(0); }
.vf-btn:focus-visible { outline: 2px solid var(--vf-gold); outline-offset: 3px; }
.vf-btn--small {
	align-self: flex-start;
	padding: 0.78em 1.15em;
	font-size: 14.4px;
}

.vf-btn--primary {
	background: var(--vf-ink);
	color: #fff;
	box-shadow: 0 10px 28px -14px rgba(33, 27, 20, 0.9);
}
.vf-btn--primary:hover { background: var(--vf-gold-deep); color: #fff; box-shadow: 0 14px 32px -12px rgba(124, 95, 44, 0.7); }
.vf-tone-dark .vf-btn--primary { background: var(--vf-gold); }
.vf-tone-dark .vf-btn--primary:hover { background: var(--vf-gold-soft); color: var(--vf-dark); }

.vf-btn--secondary {
	background: transparent;
	color: var(--vf-ink);
	border-color: var(--vf-ink);
}
.vf-btn--secondary:hover { border-color: var(--vf-gold-deep); color: var(--vf-gold-deep); background: color-mix(in srgb, var(--vf-gold) 8%, transparent); }
.vf-tone-dark .vf-btn--secondary { color: var(--vf-on-dark); border-color: rgba(255, 255, 255, 0.45); }
.vf-tone-dark .vf-btn--secondary:hover { border-color: var(--vf-gold-soft); color: var(--vf-gold-soft); background: rgba(255, 255, 255, 0.05); }

.vf-icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; }
.vf-btn .vf-icon { transition: transform 0.35s var(--vf-ease); }
.vf-btn:hover .vf-icon { transform: translateX(2px); }

/* ---------- Hero ---------- */
.vf-hero { padding-block: clamp(72px, 11vw, 144px); isolation: isolate; }
.vf-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}
.vf-hero:not(.vf-hero--has-image)::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(60% 80% at 78% 18%, color-mix(in srgb, var(--vf-gold) 18%, transparent) 0%, transparent 60%),
		radial-gradient(50% 60% at 12% 92%, color-mix(in srgb, var(--vf-gold) 10%, transparent) 0%, transparent 70%);
	pointer-events: none;
}
.vf-hero--has-image { color: #fff; }
.vf-hero--has-image .vf-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(18, 14, 10, 0.78) 0%, rgba(18, 14, 10, 0.4) 55%, rgba(18, 14, 10, 0.12) 100%);
}
.vf-hero__inner { position: relative; z-index: 1; max-width: 736px; }
.vf-hero--center .vf-hero__inner { max-width: 832px; margin-inline: auto; text-align: center; }
.vf-hero--center .vf-eyebrow { justify-content: center; }
.vf-hero--center .vf-eyebrow::before { display: none; }
.vf-hero--has-image .vf-eyebrow { color: var(--vf-gold-soft); }
.vf-hero__title {
	font-size: clamp(43.2px, 24px + 5.4vw, 83.2px);
	font-weight: 400;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
	text-wrap: balance;
}
.vf-hero__subtitle {
	font-size: clamp(17.28px, 16px + 0.4vw, 20.8px);
	max-width: 38ch;
	margin: 0;
	color: var(--vf-ink-soft);
}
.vf-hero--center .vf-hero__subtitle { margin-inline: auto; }
.vf-hero--has-image .vf-hero__subtitle { color: rgba(255, 255, 255, 0.92); }
.vf-hero__quicklinks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin-top: 22.4px;
	color: var(--vf-ink-soft);
	font-size: 15.2px;
}
.vf-hero--center .vf-hero__quicklinks { justify-content: center; }
.vf-hero--has-image .vf-hero__quicklinks { color: rgba(255, 255, 255, 0.84); }
.vf-hero__quicklink {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.3s var(--vf-ease), border-color 0.3s var(--vf-ease);
}
.vf-hero__quicklink:hover {
	color: var(--vf-gold-deep);
	border-color: currentColor;
}
.vf-hero--has-image .vf-hero__quicklink:hover { color: var(--vf-gold-soft); }
.vf-hero__quicklink .vf-icon { width: 1em; height: 1em; }

/* ---------- USPs ---------- */
.vf-usps__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: clamp(24px, 3vw, 40px);
}
.vf-usp {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding-top: 22.4px;
	border-top: 1px solid var(--vf-line);
}
.vf-usp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	color: var(--vf-gold-deep);
}
.vf-usp__icon .vf-icon { width: 23.2px; height: 23.2px; }
.vf-usp__body { display: flex; flex-direction: column; gap: 4.8px; }
.vf-usp__title { font-family: var(--vf-font-head); font-size: 19.2px; font-weight: 500; line-height: 1.2; }
.vf-usp__text { color: var(--vf-muted); font-size: 15.36px; }

/* ---------- About (editorial, asymmetric) ---------- */
.vf-about__inner { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
.vf-about--has-image .vf-about__inner { grid-template-columns: 1.05fr 0.95fr; }
.vf-about__media {
	position: relative;
	border-radius: var(--vf-radius-lg);
	overflow: hidden;
}
.vf-about__media::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
	pointer-events: none;
}
.vf-about__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
.vf-about__text { margin: 17.6px 0 0; color: var(--vf-ink-soft); font-size: 17.92px; }
.vf-about__content .vf-section__title { font-size: clamp(30.4px, 19.2px + 2.6vw, 48px); }

/* ---------- Process (engraved numerals) ---------- */
.vf-process__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(24px, 3vw, 36px);
}
.vf-process__step {
	position: relative;
	padding-top: 38.4px;
	border-top: 2px solid var(--vf-ink);
}
.vf-process__num {
	display: block;
	font-family: var(--vf-font-head);
	font-style: italic;
	font-weight: 400;
	font-size: 41.6px;
	line-height: 1;
	color: var(--vf-gold-deep);
	margin-bottom: 13.6px;
}
.vf-process__title { font-size: 21.12px; font-weight: 500; margin-bottom: 7.2px; }
.vf-process__text { margin: 0; color: var(--vf-muted); }

/* ---------- Cards (services) ---------- */
.vf-cards { display: grid; gap: clamp(20px, 2.5vw, 28px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.vf-card {
	display: flex;
	flex-direction: column;
	background: var(--vf-bg);
	border: 1px solid var(--vf-line);
	border-radius: var(--vf-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.4s var(--vf-ease), box-shadow 0.4s var(--vf-ease), border-color 0.4s var(--vf-ease);
}
.vf-card--link:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 50px -28px rgba(33, 27, 20, 0.55);
	border-color: color-mix(in srgb, var(--vf-gold) 55%, var(--vf-line));
}
.vf-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--vf-paper); }
.vf-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--vf-ease); }
.vf-card--link:hover .vf-card__media img { transform: scale(1.05); }
.vf-card__body { padding: 24px 25.6px 27.2px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vf-card__title { font-size: 23.2px; font-weight: 500; }
.vf-card__text { margin: 0; color: var(--vf-muted); flex: 1; }
.vf-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	margin-top: 9.6px;
	font-weight: 600;
	font-size: 14.4px;
	letter-spacing: 0.02em;
	color: var(--vf-gold-deep);
}
.vf-card__more .vf-icon { width: 1em; height: 1em; transition: transform 0.35s var(--vf-ease); }
.vf-card--link:hover .vf-card__more .vf-icon { transform: translateX(5px); }
.vf-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9.6px;
	margin-top: 12.8px;
}

/* ---------- Collections ---------- */
.vf-collections__grid { display: grid; gap: clamp(24px, 3vw, 32px); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.vf-collection {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(352px, 40vw, 480px);
	border-radius: var(--vf-radius-lg);
	overflow: hidden;
	isolation: isolate;
	color: #fff;
}
.vf-collection__media { position: absolute; inset: 0; z-index: -2; background: center / cover no-repeat; transition: transform 0.7s var(--vf-ease); }
.vf-collection:not(.vf-collection--has-image) .vf-collection__media { background: linear-gradient(150deg, #2a2018, #4b3a25 70%); }
.vf-collection::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(15, 11, 8, 0.85) 0%, rgba(15, 11, 8, 0.25) 55%, rgba(15, 11, 8, 0.05) 100%);
}
.vf-collection:hover .vf-collection__media { transform: scale(1.04); }
.vf-collection__body { padding: clamp(25.6px, 3vw, 35.2px); display: flex; flex-direction: column; gap: 9.6px; }
.vf-collection__title { font-size: clamp(27.2px, 19.2px + 1.6vw, 36.8px); font-weight: 500; }
.vf-collection__text { margin: 0 0 11.2px; color: rgba(255, 255, 255, 0.82); max-width: 34ch; }
.vf-collection .vf-btn--secondary { color: #fff; border-color: rgba(255, 255, 255, 0.55); align-self: flex-start; }
.vf-collection .vf-btn--secondary:hover { background: #fff; color: var(--vf-ink); border-color: #fff; }

/* ---------- Testimonials ---------- */
.vf-testimonials__grid { display: grid; gap: clamp(20px, 2.5vw, 28px); grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.vf-testimonial {
	position: relative;
	margin: 0;
	padding: 40px 30.4px 30.4px;
	background: var(--vf-bg);
	border: 1px solid var(--vf-line);
	border-radius: var(--vf-radius-lg);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.vf-testimonial::before {
	content: "\201C";
	position: absolute;
	top: 1.6px;
	left: 20.8px;
	font-family: var(--vf-font-head);
	font-size: 72px;
	line-height: 1;
	color: color-mix(in srgb, var(--vf-gold) 38%, transparent);
}
.vf-testimonial__stars { color: var(--vf-gold); letter-spacing: 0.2em; font-size: 15.2px; }
.vf-testimonial__quote {
	margin: 0;
	font-family: var(--vf-font-head);
	font-size: 20.48px;
	font-weight: 400;
	line-height: 1.42;
	color: var(--vf-ink);
}
.vf-testimonial__name { font-weight: 600; font-size: 14.72px; letter-spacing: 0.04em; color: var(--vf-muted); }

/* ---------- Hours ---------- */
.vf-hours__inner { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.vf-hours__note { margin: 9.6px 0 0; color: var(--vf-ink-soft); font-size: 17.28px; max-width: 42ch; }
.vf-hours__phone { margin: 16px 0 0; font-family: var(--vf-font-head); font-size: 25.6px; }
.vf-hours__phone a { color: var(--vf-gold-deep); font-weight: 500; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s var(--vf-ease); }
.vf-hours__phone a:hover { border-color: currentColor; }
.vf-hours__table-wrap {
	background: var(--vf-bg);
	border: 1px solid var(--vf-line);
	border-radius: var(--vf-radius-lg);
	padding: 8px 27.2px;
	box-shadow: 0 24px 50px -34px rgba(33, 27, 20, 0.45);
}
.vf-hours__table { width: 100%; border-collapse: collapse; }
.vf-hours__table th,
.vf-hours__table td { padding: 14.4px 0; text-align: left; font-size: 16px; }
.vf-hours__table td { text-align: right; color: var(--vf-muted); font-variant-numeric: tabular-nums; }
.vf-hours__table tr + tr th,
.vf-hours__table tr + tr td { border-top: 1px solid var(--vf-line); }
.vf-hours__table th { font-weight: 600; }

/* ---------- Location ---------- */
.vf-location__inner { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 0.92fr 1.08fr; align-items: center; }
.vf-location__address { font-family: var(--vf-font-head); font-size: 24px; font-weight: 500; margin: 6.4px 0 0; }
.vf-location__note { margin: 12.8px 0 0; color: var(--vf-muted); max-width: 40ch; }
.vf-location__map {
	border-radius: var(--vf-radius-lg);
	overflow: hidden;
	border: 1px solid var(--vf-line);
	aspect-ratio: 4 / 3;
	box-shadow: 0 24px 50px -34px rgba(33, 27, 20, 0.45);
	filter: saturate(0.85) contrast(1.02);
}
.vf-location__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- FAQ ---------- */
.vf-faq__inner { max-width: 800px; }
.vf-faq__list { border-top: 1px solid var(--vf-line); }
.vf-faq__item { border-bottom: 1px solid var(--vf-line); }
.vf-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20.8px 4px;
	cursor: pointer;
	font-family: var(--vf-font-head);
	font-weight: 500;
	font-size: 19.2px;
	list-style: none;
	transition: color 0.3s var(--vf-ease);
}
.vf-faq__q:hover { color: var(--vf-gold-deep); }
.vf-faq__q::-webkit-details-marker { display: none; }
.vf-faq__q:focus-visible { outline: 2px solid var(--vf-gold); outline-offset: 3px; }
.vf-faq__marker { position: relative; flex: 0 0 auto; width: 17.6px; height: 17.6px; }
.vf-faq__marker::before,
.vf-faq__marker::after {
	content: "";
	position: absolute;
	background: var(--vf-gold-deep);
	border-radius: 2px;
	transition: transform 0.3s var(--vf-ease), opacity 0.3s var(--vf-ease);
}
.vf-faq__marker::before { inset: 0 47%; }
.vf-faq__marker::after { inset: 47% 0; }
.vf-faq__item[open] .vf-faq__marker::before { transform: scaleY(0); opacity: 0; }
.vf-faq__item[open] .vf-faq__q { color: var(--vf-gold-deep); }
.vf-faq__a { padding: 0 0 22.4px; color: var(--vf-ink-soft); max-width: 60ch; }
.vf-faq__a p { margin: 0 0 12.8px; }
.vf-faq__a p:last-child { margin-bottom: 0; }

/* ---------- Gallery ---------- */
.vf-gallery__grid { display: grid; grid-template-columns: repeat(var(--vf-gallery-cols, 3), 1fr); gap: clamp(9.6px, 1.5vw, 16px); }
.vf-gallery__item { margin: 0; border-radius: var(--vf-radius); overflow: hidden; aspect-ratio: 1 / 1; background: var(--vf-paper); }
.vf-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--vf-ease), filter 0.6s var(--vf-ease); }
.vf-gallery__item:hover img { transform: scale(1.06); }
.vf-gallery__empty {
	text-align: center;
	color: var(--vf-muted);
	border: 1px dashed var(--vf-line);
	border-radius: var(--vf-radius-lg);
	padding: 40px 24px;
}

/* ---------- CTA band ---------- */
.vf-cta-band { isolation: isolate; }
.vf-cta-band::after {
	content: "";
	position: absolute;
	inset: clamp(14.4px, 2vw, 24px);
	z-index: 0;
	border: 1px solid rgba(196, 163, 95, 0.3);
	border-radius: var(--vf-radius-lg);
	pointer-events: none;
}
.vf-cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 56px); }
.vf-cta-band__content { max-width: 40ch; }
.vf-cta-band__title { font-size: clamp(32px, 20.8px + 3vw, 51.2px); font-weight: 400; }
.vf-cta-band__text { margin: 14.4px 0 0; color: var(--vf-on-dark-muted); font-size: 17.6px; }
.vf-cta-band__actions { margin-top: 0; }

/* ---------- Sticky mobile call bar ---------- */
.vf-callbar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: none;
	gap: 9.6px;
	padding: 9.6px 12px calc(9.6px + env(safe-area-inset-bottom, 0px));
	background: color-mix(in srgb, var(--vf-bg) 88%, transparent);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid var(--vf-line);
	box-shadow: 0 -10px 30px -18px rgba(33, 27, 20, 0.5);
}
.vf-callbar__btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.95em 1em;
	border-radius: 999px;
	font-family: var(--vf-font-body);
	font-weight: 600;
	font-size: 15.68px;
	text-decoration: none;
}
.vf-callbar__btn .vf-icon { width: 1.15em; height: 1.15em; }
.vf-callbar__btn--call { background: var(--vf-ink); color: #fff; }
.vf-callbar__btn--dir { background: transparent; color: var(--vf-ink); border: 1px solid var(--vf-ink); }
@media (max-width: 760px) {
	.vf-callbar { display: flex; }
	html.vf-has-callbar { scroll-padding-bottom: 92px; }
	html.vf-has-callbar body { padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Scroll reveal (progressive enhancement) ---------- */
.vf-js .vf-animate .vf-container > *,
.vf-js .vf-animate .vf-hero__inner > * {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.8s var(--vf-ease), transform 0.8s var(--vf-ease);
}
.vf-js .vf-animate.vf-in .vf-container > *,
.vf-js .vf-animate.vf-in .vf-hero__inner > * {
	opacity: 1;
	transform: none;
}
.vf-js .vf-animate.vf-in .vf-container > *:nth-child(2) { transition-delay: 0.08s; }
.vf-js .vf-animate.vf-in .vf-container > *:nth-child(3) { transition-delay: 0.16s; }
.vf-js .vf-animate.vf-in .vf-hero__inner > *:nth-child(2) { transition-delay: 0.1s; }
.vf-js .vf-animate.vf-in .vf-hero__inner > *:nth-child(3) { transition-delay: 0.2s; }
.vf-js .vf-animate.vf-in .vf-hero__inner > *:nth-child(4) { transition-delay: 0.3s; }

/* Stagger the items within a grid once their section reveals. */
.vf-js .vf-animate .vf-usps__grid > *,
.vf-js .vf-animate .vf-process__grid > *,
.vf-js .vf-animate .vf-cards > *,
.vf-js .vf-animate .vf-collections__grid > *,
.vf-js .vf-animate .vf-testimonials__grid > *,
.vf-js .vf-animate .vf-gallery__grid > * {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s var(--vf-ease), transform 0.7s var(--vf-ease);
}
.vf-js .vf-animate.vf-in .vf-usps__grid > *,
.vf-js .vf-animate.vf-in .vf-process__grid > *,
.vf-js .vf-animate.vf-in .vf-cards > *,
.vf-js .vf-animate.vf-in .vf-collections__grid > *,
.vf-js .vf-animate.vf-in .vf-testimonials__grid > *,
.vf-js .vf-animate.vf-in .vf-gallery__grid > * {
	opacity: 1;
	transform: none;
}
.vf-js .vf-animate.vf-in :is(.vf-usps__grid, .vf-process__grid, .vf-cards, .vf-collections__grid, .vf-testimonials__grid, .vf-gallery__grid) > *:nth-child(2) { transition-delay: 0.07s; }
.vf-js .vf-animate.vf-in :is(.vf-usps__grid, .vf-process__grid, .vf-cards, .vf-collections__grid, .vf-testimonials__grid, .vf-gallery__grid) > *:nth-child(3) { transition-delay: 0.14s; }
.vf-js .vf-animate.vf-in :is(.vf-usps__grid, .vf-process__grid, .vf-cards, .vf-collections__grid, .vf-testimonials__grid, .vf-gallery__grid) > *:nth-child(4) { transition-delay: 0.21s; }
.vf-js .vf-animate.vf-in :is(.vf-usps__grid, .vf-process__grid, .vf-cards, .vf-collections__grid, .vf-testimonials__grid, .vf-gallery__grid) > *:nth-child(n + 5) { transition-delay: 0.28s; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
	.vf-about--has-image .vf-about__inner,
	.vf-hours__inner,
	.vf-location__inner { grid-template-columns: 1fr; }
	.vf-location__content { order: 1; }
	.vf-location__map { order: 2; }
}

@media (max-width: 560px) {
	.vf-gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.vf-btn { width: 100%; justify-content: center; }
	.vf-btn-row { flex-direction: column; }
	.vf-collection .vf-btn--secondary { width: 100%; }
	.vf-cta-band__actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.vf-section *,
	.vf-section *::before,
	.vf-section *::after { transition: none !important; animation: none !important; }
	.vf-js .vf-animate .vf-container > *,
	.vf-js .vf-animate .vf-hero__inner > *,
	.vf-js .vf-animate :is(.vf-usps__grid, .vf-process__grid, .vf-cards, .vf-collections__grid, .vf-testimonials__grid, .vf-gallery__grid) > * {
		opacity: 1 !important;
		transform: none !important;
	}
}
