/* =====================================================================
 * Clarity Dental — brand polish.
 *
 * Only the things vgs-base tokens can't express:
 *   - Editorial serif rendering + italic-clay accent inside headings
 *   - 48×1px clay hairline divider under section H2s (the signature device)
 *   - Numeric overlines "01 / 02 / 03" for value/step sequences
 *   - Flat, no-shadow surfaces (borders + color grounds only)
 *   - Body copy warmth + generous line-height
 *   - Focus states: 2px clay outline + 2px offset (design system §9)
 * ===================================================================== */

/* ---- Base body warmth ---- */
body {
	color: var(--color-text-primary);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: var(--lh-body);
	background: var(--color-bg-page);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Display headings — IvyPresto Display */
.vgs-display, .vgs-herocine__h1, h1.vgs-title {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: var(--ls-display);
	line-height: var(--lh-display);
	color: var(--color-text-primary);
}

/* Section headings — Very Vogue Display at oversized editorial scale.
   Section H2s now sit at 60-80px (up from 44px) so they read as display,
   not text-scale headings. Vogue Text stays reserved for smaller H3s. */
.vgs-sechead, h2, .vgs-h2 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: var(--fs-display-section);
	line-height: 1.05;
	letter-spacing: -0.015em;
	color: var(--color-text-primary);
}
h3, .vgs-h3 { font-family: var(--font-editorial); font-weight: 400; font-size: var(--fs-h3); line-height: 1.15; }
h4, .vgs-h4 { font-family: var(--font-body); font-weight: 600; }

/* Italic-clay accent inside headings — the signature flourish.
   e.g. "Clear treatment. <em>Clear cost.</em> Clear outcomes." */
.vgs-display em, .vgs-display .vgs-italic,
.vgs-sechead em, h2 em, .vgs-h2 em {
	color: var(--color-brand-primary);
	font-style: italic;
	font-weight: 400;
}
/* On dark grounds, keep italic emphasis in the inverse text color (sage tint would clash). */
.vgs-ground-inverse .vgs-display em,
.vgs-ground-inverse .vgs-sechead em,
.vgs-ground-inverse h2 em { color: var(--color-text-inverse-secondary); }

/* The 48×1px clay divider — sits below every section H2 automatically.
   Uses ::after so section renderers don't need to opt-in. */
.vgs-sechead::after,
h2.vgs-h2::after {
	content: "";
	display: block;
	width: 48px;
	height: 1px;
	background: var(--color-brand-primary);
	margin-top: 1rem;
}
.vgs-ground-inverse .vgs-sechead::after,
.vgs-ground-inverse h2.vgs-h2::after { background: var(--color-text-inverse-secondary); }

/* Eyebrow — uppercase pre-headline label, set in Special Gothic Expanded One
   for that condensed-gothic Kayla Skye energy ("GENTLE. CLEAR. YOURS.").
   Sage on light, cream on dark. */
.vgs-eyebrow {
	font-family: var(--font-eyebrow);
	font-size: var(--fs-eyebrow);
	font-weight: 400;
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--color-brand-accent);
}
.vgs-ground-inverse .vgs-eyebrow { color: var(--color-text-inverse-secondary); }

/* Numeric overlines — "01 / 02 / 03" ordinal marks for value bands. */
.vgs-numeral {
	font-family: var(--font-body);
	font-size: var(--fs-eyebrow);
	font-weight: 600;
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--color-brand-accent);
	display: inline-block;
	margin-bottom: 0.75rem;
}

/* ---- Buttons ---- */
.vgs-btn {
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	border-radius: var(--radius-xs);
	transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.vgs-btn--primary {
	background: var(--color-brand-primary);
	color: var(--color-text-primary);
	border: 1px solid var(--color-brand-primary);
}
.vgs-btn--primary:hover, .vgs-btn--primary:focus-visible {
	background: var(--color-brand-primary-hover);
	border-color: var(--color-brand-primary-hover);
}
.vgs-btn--outline {
	background: transparent;
	color: var(--color-text-primary);
	border: 1px solid var(--color-brand-primary);
}
.vgs-btn--outline:hover, .vgs-btn--outline:focus-visible {
	background: var(--color-brand-primary);
	color: var(--color-text-primary);
}
/* On espresso grounds, invert the primary to cream fill / ink label. */
.vgs-ground-inverse .vgs-btn--primary {
	background: var(--color-text-inverse);
	color: var(--color-text-primary);
	border-color: var(--color-text-inverse);
}
.vgs-ground-inverse .vgs-btn--primary:hover, .vgs-ground-inverse .vgs-btn--primary:focus-visible {
	background: #FFFFFF;
}
.vgs-ground-inverse .vgs-btn--outline {
	color: var(--color-text-inverse);
	border-color: var(--color-text-inverse-secondary);
}
.vgs-ground-inverse .vgs-btn--outline:hover, .vgs-ground-inverse .vgs-btn--outline:focus-visible {
	background: var(--color-text-inverse);
	color: var(--color-text-primary);
}

/* ---- Section grounds ---- */
/* Textured warmth on subtle + inverse grounds (Christensen pattern port).
   The image sits under a heavy color scrim so the texture reads as warmth,
   not photograph. Cream ground gets a paper texture; espresso gets a grain
   texture. Textures uploaded to WP media 23 (paper) + 24 (grain). */
.vgs-ground-page    { background: var(--color-bg-page); color: var(--color-text-primary); }
.vgs-ground-surface { background: var(--color-bg-surface); color: var(--color-text-primary); }
.vgs-ground-subtle,
.vgs-ground-inverse {
	position: relative; isolation: isolate;
	background-size: cover; background-position: center; background-repeat: no-repeat;
}
.vgs-ground-subtle::before,
.vgs-ground-inverse::before {
	content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.vgs-ground-subtle {
	background-image: url('https://visitclaritydental.com/wp-content/uploads/2026/07/clarity-dental-section-texture-paper.jpg');
	color: var(--color-text-primary);
}
.vgs-ground-subtle::before { background: rgba(235, 224, 205, 0.86); }  /* bone wash */
.vgs-ground-inverse {
	background-image: url('https://visitclaritydental.com/wp-content/uploads/2026/07/clarity-dental-section-texture-grain.jpg');
	color: var(--color-text-inverse);
}
.vgs-ground-inverse::before { background: rgba(59, 42, 31, 0.88); }    /* espresso wash */
.vgs-ground-subtle > *,
.vgs-ground-inverse > * { position: relative; z-index: 1; }
.vgs-ground-inverse .vgs-sechead,
.vgs-ground-inverse h2,
.vgs-ground-inverse .vgs-display { color: var(--color-text-inverse); }

/* ---- Hairline separators (no shadows) ---- */
.vgs-hairline { border-top: 1px solid var(--color-border-strong); }

/* ---- Inputs — flat, hairline borders, focus ring in clay ---- */
input[type="text"], input[type="email"], input[type="tel"], input[type="search"],
input[type="url"], textarea, select {
	font: inherit;
	background: var(--color-bg-surface);
	border: 1px solid var(--color-border-default);
	border-radius: var(--radius-xs);
	padding: 0.75rem 1rem;
	min-height: 44px;
	color: var(--color-text-primary);
	transition: border-color 200ms ease;
}
input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: var(--color-brand-primary);
}

/* ---- Focus ring: 2px clay outline + 2px offset (design system §9) ---- */
a:focus-visible, button:focus-visible, .vgs-btn:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--color-brand-primary);
	outline-offset: 2px;
	border-radius: var(--radius-xs);
}

/* ---- Brandmark (inline SVG hybrid wordmark) ---- */
.vgs-brandmark { display: inline-block; line-height: 0; color: currentColor; }
.vgs-brandmark svg { display: block; height: 56px; width: auto; fill: currentColor; }
.vgs-brandmark--header svg { height: 52px; }
.vgs-brandmark--footer svg { height: 44px; }
@media (max-width: 800px) {
	.vgs-brandmark svg { height: 44px; }
	.vgs-brandmark--header svg { height: 40px; }
}
/* Screen-reader-only helper — declared here in case vgs-base's base.css doesn't ship it. */
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* NOTE (v1.10.0): the previous `.has-cinehero` rules forced the header to cream,
   assuming it floated transparently over the dark hero scrim. It does not: base.css
   gives .vgs-header a sticky, near-opaque cream background (--color-bg-page @ 92%),
   so cream text rendered invisible (logo, nav links and CTA all disappeared).
   The header is a solid cream bar, so it keeps ink text on every page. */

/* Motion respect */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =====================================================================
 * EDITORIAL SECTION RENDERERS
 * ports of herocine / process / stackpair / editorial / heritage /
 * statement / steps / mission from vgs-christensenpros, adapted for
 * Clarity's spa-calm palette (clay/sage/cream/bone/espresso), FLAT
 * surfaces (no drop shadows), and warmer scrims.
 * ===================================================================== */

/* Utility bits used by multiple renderers */
.vgs-num { font-family: var(--font-display); color: var(--color-brand-primary); line-height: 1; }
.vgs-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.vgs-metastrip {
	display: flex; justify-content: space-between; align-items: baseline;
	gap: 1rem; border-bottom: 1px solid var(--color-border-default);
	padding-bottom: 1rem; margin-bottom: clamp(28px, 3vw, 48px);
}
.vgs-metaline {
	font-family: var(--font-eyebrow);
	font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
	color: var(--color-text-secondary); font-weight: 400;
}

.vgs-arrowlink {
	display: inline-flex; align-items: center; gap: 14px; text-decoration: none;
	color: var(--color-text-primary); font-size: 0.74rem; letter-spacing: 0.16em;
	text-transform: uppercase; font-weight: 600;
}
.vgs-arrowlink .vgs-circ {
	width: 50px; height: 50px; border: 1px solid var(--color-brand-primary); border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center; color: var(--color-brand-primary);
	transition: background-color 220ms ease, color 220ms ease;
}
.vgs-arrowlink:hover .vgs-circ,
.vgs-arrowlink:focus-visible .vgs-circ { background: var(--color-brand-primary); color: var(--color-text-primary); }
.vgs-arrowlink--light { color: var(--color-text-inverse); }
.vgs-arrowlink--light .vgs-circ { border-color: rgba(244,237,221,.6); color: var(--color-text-inverse); }
.vgs-arrowlink--light:hover .vgs-circ,
.vgs-arrowlink--light:focus-visible .vgs-circ { background: var(--color-text-inverse); color: var(--color-text-primary); }

.vgs-btn--pill {
	border-radius: var(--radius-pill);
	background: transparent;
	border: 1px solid var(--color-brand-primary);
	color: var(--color-text-primary);
	padding: 0.72rem 1.35rem;
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em;
	transition: background-color 200ms ease, color 200ms ease;
}
.vgs-btn--pill:hover, .vgs-btn--pill:focus-visible {
	background: var(--color-brand-primary);
	color: var(--color-text-primary);
}
.vgs-ground-inverse .vgs-btn--pill {
	border-color: var(--color-text-inverse-secondary);
	color: var(--color-text-inverse);
}
.vgs-ground-inverse .vgs-btn--pill:hover, .vgs-ground-inverse .vgs-btn--pill:focus-visible {
	background: var(--color-text-inverse);
	color: var(--color-text-primary);
}

.vgs-eyebrow--on-inverse { color: var(--color-text-inverse-secondary); }

.vgs-section-intro {
	font-family: var(--font-editorial); font-weight: 400;
	font-size: clamp(1.05rem, 1.2vw, 1.2rem); line-height: 1.55;
	color: var(--color-text-secondary);
	max-width: 62ch; margin: clamp(16px, 2vw, 24px) 0 0;
}

.vgs-display--section {
	font-size: var(--fs-display-section);
	line-height: 1.14;
	max-width: 22ch;
}

/* -------------------------------------------------------------------
 * HEROCINE — cinematic full-bleed hero
 * ------------------------------------------------------------------- */
.vgs-herocine { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; padding: 0; }
.vgs-herocine__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* Warm espresso scrim — heavy on the left where copy sits, soft on the right */
.vgs-herocine__scrim { position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(100deg, rgba(59,42,31,.82) 0%, rgba(59,42,31,.55) 40%, rgba(59,42,31,.18) 72%, rgba(59,42,31,0) 100%);
}
.vgs-herocine__wrap { position: relative; z-index: 2; width: 100%; padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 48px); }
.vgs-herocine__inner { max-width: 640px; }
.vgs-herocine__h1 {
	color: var(--color-text-inverse);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(2.5rem, 6vw, 8rem);           /* dialed 2026-07-15 per operator */
	line-height: 1.0;
	letter-spacing: -0.015em;
	margin: clamp(20px, 2vw, 30px) 0 0;
}
.vgs-herocine__h1 em { font-style: italic; color: var(--color-text-inverse); }
.vgs-herocine__lead {
	color: rgba(244,237,221,.86); max-width: 46ch;
	font-size: 1.08rem; line-height: 1.65; margin: clamp(24px, 2.4vw, 36px) 0 0;
	font-family: var(--font-body);
}
.vgs-herocine .vgs-cta-row { margin-top: clamp(28px, 3vw, 42px); align-items: center; }
.vgs-herocine__meta {
	position: absolute; z-index: 2;
	right: clamp(20px, 4vw, 48px); bottom: clamp(20px, 3vw, 40px);
	color: rgba(244,237,221,.75);
	font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
	font-family: var(--font-eyebrow); font-weight: 400;
}
/* Suppress the ::after hairline on hero H1 (dividers only under section H2s) */
.vgs-herocine__h1::after { display: none; }
@media (max-width: 800px) {
	.vgs-herocine { min-height: 78vh; }
	.vgs-herocine__meta { display: none; }
	.vgs-herocine__inner { max-width: 100%; }
}

/* -------------------------------------------------------------------
 * PROCESS — value band with numbered columns
 * ------------------------------------------------------------------- */
.vgs-process__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(32px, 4vw, 56px); }
.vgs-process__step { padding: 0 clamp(20px, 2.5vw, 40px); border-left: 1px solid var(--color-border-default); }
.vgs-process__step:first-child { padding-left: 0; border-left: none; }
.vgs-process__n {
	font-family: var(--font-display); font-weight: 400;
	font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--color-brand-primary);
	line-height: 0.9;
}
.vgs-process__title {
	font-family: var(--font-editorial); font-weight: 400;
	font-size: clamp(1.35rem, 1.8vw, 1.6rem);
	margin: clamp(14px, 1.6vw, 22px) 0 clamp(10px, 1vw, 14px);
	color: var(--color-text-primary);
	letter-spacing: -0.005em;
}
.vgs-process__step p { color: var(--color-text-secondary); margin: 0; max-width: 42ch; }
.vgs-ground-inverse .vgs-process__step { border-color: rgba(244,237,221,.15); }
.vgs-ground-inverse .vgs-process__n { color: var(--color-text-inverse-secondary); }
.vgs-ground-inverse .vgs-process__title { color: var(--color-text-inverse); }
.vgs-ground-inverse .vgs-process__step p { color: rgba(244,237,221,.72); }

/* -------------------------------------------------------------------
 * STACKPAIR — text + layered two-photo cluster
 * Clarity is flat: NO drop shadows on images. Frame in sage, cream border.
 * ------------------------------------------------------------------- */
.vgs-stackpair__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.vgs-stackpair__grid--rev .vgs-stackpair__media { order: -1; }
.vgs-stackpair__media { position: relative; }
.vgs-imagestack { position: relative; }
.vgs-imagestack__a {
	width: 80%; margin: 0 0 0 auto;
	border-radius: 4px; overflow: hidden; position: relative; z-index: 1;
}
.vgs-imagestack__a img { width: 100%; height: auto; display: block; }
.vgs-imagestack__b {
	position: absolute; left: 0; bottom: -34px;
	width: 46%; margin: 0; border-radius: 4px; z-index: 2;
}
.vgs-imagestack__b img {
	width: 100%; height: auto; display: block; border-radius: 4px;
	border: 6px solid var(--color-bg-page);
}
.vgs-imagestack__frame {
	position: absolute; top: -26px; left: 2%;
	width: 40%; aspect-ratio: 3 / 4;
	border: 1px solid rgba(139,144,117,.65);
	border-radius: 4px; z-index: 0;
}
@media (max-width: 900px) {
	.vgs-stackpair__grid { grid-template-columns: 1fr; gap: 40px; }
	.vgs-stackpair__grid--rev .vgs-stackpair__media { order: 0; }
	.vgs-imagestack__a { width: 82%; }
	.vgs-imagestack__b { bottom: -22px; }
}
@media (prefers-reduced-motion: reduce) {
	.vgs-imagestack__a, .vgs-imagestack__b, .vgs-imagestack__frame { transform: none !important; }
}

/* -------------------------------------------------------------------
 * EDITORIAL — image + text with meta strip
 * ------------------------------------------------------------------- */
.vgs-editorial__pair {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 80px); align-items: center;
}
.vgs-editorial__pair--rev .vgs-editorial__media { order: 2; }
.vgs-editorial__media img {
	width: 100%; height: clamp(320px, 38vw, 500px); object-fit: cover;
	border-radius: var(--radius-sm);
}
.vgs-editorial__body h2 { margin-bottom: clamp(20px, 2.2vw, 32px); }
@media (max-width: 800px) {
	.vgs-editorial__pair { grid-template-columns: 1fr; gap: 32px; }
	.vgs-editorial__pair--rev .vgs-editorial__media { order: 0; }
}

/* -------------------------------------------------------------------
 * HERITAGE — portrait image + drop-cap body (used for Dr. Little bio).
 * Image column is smaller than text column (0.8fr : 1.2fr) so the
 * portrait doesn't dominate; height capped so tall portraits crop cleanly.
 * ------------------------------------------------------------------- */
.vgs-heritage {
	display: grid; grid-template-columns: 0.8fr 1.2fr;
	align-items: center; padding-block: var(--space-4xl);
	gap: clamp(32px, 5vw, 80px);
	background: var(--color-bg-page);
	container-type: inline-size;
}
.vgs-heritage__img {
	overflow: hidden;
	background: var(--color-bg-subtle);
	max-height: 540px;
	aspect-ratio: 3 / 4;
	margin-left: clamp(24px, 4vw, 64px);
	border-radius: var(--radius-sm);
}
.vgs-heritage__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.vgs-heritage__body { padding: clamp(24px, 3vw, 48px) clamp(24px, 5vw, 96px) clamp(24px, 3vw, 48px) 0; }
.vgs-heritage__label {
	font-family: var(--font-display); font-weight: 400;
	font-size: clamp(1.35rem, 1.9vw, 1.75rem); letter-spacing: 0.04em;
	color: var(--color-text-primary); text-transform: uppercase;
	margin-bottom: clamp(20px, 2vw, 30px);
}
.vgs-heritage__p {
	font-size: 1.04rem; line-height: 1.85;
	color: var(--color-text-secondary); max-width: 48ch; margin: 0;
}
.vgs-heritage__p::first-letter {
	float: left; font-family: var(--font-display);
	font-size: 3.6rem; line-height: 0.72;
	padding: 8px 14px 0 0; color: var(--color-brand-primary);
}
.vgs-heritage__link { margin-top: clamp(28px, 3vw, 40px); }
.vgs-heritage__cluster { margin-left: clamp(24px, 4vw, 64px); align-self: center; }
.vgs-heritage__cluster .vgs-collage { max-width: 560px; }
@media (max-width: 900px) {
	.vgs-heritage { grid-template-columns: 1fr; padding-block: var(--space-4xl); gap: clamp(24px, 4vw, 40px); }
	.vgs-heritage__img { max-height: 420px; aspect-ratio: 4 / 5; margin: 0 clamp(20px, 5vw, 40px); order: -1; }
	.vgs-heritage__cluster { order: -1; margin: 0 clamp(20px, 5vw, 40px); }
	.vgs-heritage__body { padding: 0 clamp(20px, 5vw, 40px); }
}

/* -------------------------------------------------------------------
 * STATEMENT — image + oversized display serif set piece
 * ------------------------------------------------------------------- */
.vgs-statement {
	display: grid; grid-template-columns: 1fr 1fr;
	align-items: center; min-height: 640px; padding: 0;
	background: var(--color-bg-page);
}
.vgs-statement__img { align-self: stretch; overflow: hidden; }
.vgs-statement__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vgs-statement__body { padding: clamp(44px, 6vw, 110px); }
.vgs-statement__h {
	font-size: clamp(3rem, 7vw, 7.5rem);   /* set-piece oversized centerpiece */
	line-height: 1.0; letter-spacing: -0.02em;
	margin: 0; color: var(--color-text-primary);
	font-family: var(--font-display); font-weight: 400;
}
.vgs-statement__h em { font-style: italic; color: var(--color-brand-primary); }
.vgs-statement__h::after { display: none; } /* no hairline under statement H2 — it IS the moment */
.vgs-statement__foot { display: flex; align-items: center; gap: 18px; margin-top: clamp(30px, 3.2vw, 44px); }
.vgs-statement__cap {
	font-family: var(--font-eyebrow);
	font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
	color: var(--color-text-secondary); font-weight: 400;
}
.vgs-statement .vgs-circ { width: 56px; height: 56px; border: 1px solid var(--color-brand-primary); border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center; color: var(--color-brand-primary);
	text-decoration: none; transition: background-color 220ms ease, color 220ms ease; }
.vgs-statement .vgs-circ--link:hover { background: var(--color-brand-primary); color: var(--color-text-primary); }
@media (max-width: 900px) {
	.vgs-statement { grid-template-columns: 1fr; min-height: 0; }
	.vgs-statement__img { height: 340px; order: -1; }
}

/* -------------------------------------------------------------------
 * STEPS — sticky-stacking cards. Clarity is flat: no shadow.
 * Uses a warm bone border + subtle 1px hairline instead.
 * ------------------------------------------------------------------- */
.vgs-steps__head { max-width: 62ch; margin-bottom: clamp(30px, 5vw, 60px); }
.vgs-steps__stack { display: flex; flex-direction: column; gap: clamp(16px, 2.2vw, 26px); }
.vgs-steps__card {
	position: sticky;
	top: calc(clamp(84px, 12vh, 128px) + var(--i, 0) * 14px);
	background: var(--color-bg-surface);
	border: 1px solid var(--color-border-default);
	border-radius: var(--radius-md);
	padding: clamp(26px, 3.4vw, 48px);
	display: grid;
	grid-template-columns: minmax(58px, auto) 1fr;
	gap: clamp(18px, 3vw, 46px);
	align-items: start;
	transform-origin: center top;
	will-change: transform;
}
.vgs-ground-inverse .vgs-steps__card {
	background: var(--color-bg-page);
	border-color: var(--color-border-default);
}
.vgs-steps__num {
	font-family: var(--font-display); font-weight: 400;
	font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 0.82;
	color: var(--color-brand-primary);
}
.vgs-steps__t {
	font-family: var(--font-display); font-weight: 400;
	font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.1;
	color: var(--color-text-primary); margin: 0 0 clamp(10px, 1vw, 14px);
}
.vgs-steps__d {
	font-size: 1.05rem; line-height: 1.72; color: var(--color-text-secondary);
	margin: 0; max-width: 58ch;
}
@media (max-width: 640px) {
	.vgs-steps__card { position: static; grid-template-columns: 1fr; gap: 12px; }
	.vgs-steps__num { font-size: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
	.vgs-steps__card { position: static; transform: none !important; }
}

/* -------------------------------------------------------------------
 * MISSION — two-tone serif statement (invitational close band)
 * ------------------------------------------------------------------- */
.vgs-mission { text-align: center; }
.vgs-mission__eyebrow { margin-bottom: clamp(18px, 2.6vw, 30px); }
.vgs-mission__text {
	font-family: var(--font-display); font-weight: 400;
	font-size: clamp(2.75rem, 6.5vw, 6.5rem);    /* the "TUESDAY" centerpiece moment */
	line-height: 1.0; letter-spacing: -0.02em;
	color: var(--color-text-inverse); margin: 0 auto; max-width: 22ch;
}
.vgs-mission__text em { font-style: italic; color: var(--color-text-inverse-secondary); }
.vgs-mission__cta {
	margin-top: clamp(30px, 4vw, 48px);
	display: inline-flex; justify-content: center;
	color: var(--color-text-inverse);
}
.vgs-mission__cta .vgs-circ { border-color: rgba(244,237,221,.6); color: var(--color-text-inverse); }
.vgs-mission__cta:hover .vgs-circ { background: var(--color-text-inverse); color: var(--color-text-primary); }

/* -------------------------------------------------------------------
 * Sechead hairline: only render for section-level headings inside
 * standard containers. Statement / mission / herocine suppress via ::after.
 * ------------------------------------------------------------------- */
.vgs-display--section.vgs-sechead::after { display: block; }

/* -------------------------------------------------------------------
 * Responsive: stack the process/editorial etc. on narrow screens
 * ------------------------------------------------------------------- */
@media (max-width: 900px) {
	.vgs-process__row { grid-template-columns: 1fr; gap: 32px; }
	.vgs-process__step { padding-left: 0; border-left: none; border-top: 1px solid var(--color-border-default); padding-top: 24px; }
	.vgs-process__step:first-child { border-top: none; padding-top: 0; }
}

/* ---------------------------------------------------------------------
 * HEADER — layout + CTA button on the right, mobile nav toggle behavior.
 * Parent vgs-base ships the toggle button; we style the drawer + CTA here.
 * --------------------------------------------------------------------- */
.vgs-header__inner {
	display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
	padding-block: clamp(14px, 1.5vw, 22px);
}
.vgs-header__brand { flex: 0 0 auto; color: var(--color-text-primary); text-decoration: none; }
.vgs-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.vgs-nav__list {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: clamp(18px, 2.2vw, 36px); align-items: center;
}
.vgs-nav__list a {
	color: var(--color-text-primary);
	font-family: var(--font-body); font-weight: 500; font-size: 0.94rem;
	text-decoration: none; letter-spacing: 0.005em;
	transition: color 200ms ease;
}
.vgs-nav__list a:hover,
.vgs-nav__list a[aria-current="page"] { color: var(--color-brand-primary); }
/* Menu class from wp_nav_menu output — merge our styling */
.vgs-nav__list .menu-item { display: inline-flex; }
/* Header CTA button (right of nav) */
.vgs-header__cta {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.65rem 1.15rem;
	background: var(--color-brand-primary); color: var(--color-text-primary);
	border: 1px solid var(--color-brand-primary);
	border-radius: var(--radius-xs);
	font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
	text-decoration: none;
	transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.vgs-header__cta:hover { background: var(--color-brand-primary-hover); border-color: var(--color-brand-primary-hover); }
.vgs-nav-toggle {
	flex: 0 0 auto; display: none;
	background: transparent; border: 1px solid var(--color-border-default);
	border-radius: var(--radius-xs);
	padding: 0.5rem 0.6rem; cursor: pointer;
	color: var(--color-text-primary);
}
.vgs-nav-toggle__bars {
	display: block; width: 20px; height: 2px;
	background: currentColor; position: relative;
}
.vgs-nav-toggle__bars::before,
.vgs-nav-toggle__bars::after {
	content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
}
.vgs-nav-toggle__bars::before { top: -6px; }
.vgs-nav-toggle__bars::after  { top: 6px; }

/* (v1.10.0) cinehero header inversion removed — see note above. The header keeps
   its cream ground and ink text so the logo, nav and CTA stay legible on hero pages. */

/* ---------------------------------------------------------------------
 * UTILITY BAR — NAP strip above the header (address + hours left, phone right)
 * --------------------------------------------------------------------- */
.vgs-utilitybar {
	background: var(--color-bg-inverse);
	color: var(--color-text-inverse);
	font-family: var(--font-body);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	border-bottom: 1px solid rgba(244,237,221,.14);
}
.vgs-utilitybar__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; padding-block: 9px; min-height: 38px;
}
.vgs-utilitybar__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.vgs-utilitybar__item,
.vgs-utilitybar__phone {
	display: inline-flex; align-items: center; gap: 8px;
	color: rgba(244,237,221,.82); text-decoration: none;
}
.vgs-utilitybar__phone { color: var(--color-text-inverse); font-weight: 600; letter-spacing: 0.06em; }
.vgs-utilitybar__item:hover,
.vgs-utilitybar__phone:hover { color: var(--color-brand-primary); }
.vgs-utilitybar__item:focus-visible,
.vgs-utilitybar__phone:focus-visible {
	outline: 2px solid var(--color-brand-primary); outline-offset: 2px; border-radius: 2px;
}
.vgs-utilitybar svg { width: 13px; height: 13px; flex: 0 0 auto; opacity: .75; }
.vgs-utilitybar__phone svg { opacity: 1; }

/* ---------------------------------------------------------------------
 * MOBILE (≤800px) — every editorial section needs to breathe here.
 * Nav collapses to a hamburger drawer; sticky/parallax effects relax.
 * --------------------------------------------------------------------- */
@media (max-width: 800px) {
	.vgs-header__inner { padding-block: 12px; gap: 12px; }
	.vgs-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.vgs-header__cta { display: none; }
	.vgs-nav {
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--color-bg-page); border-top: 1px solid var(--color-border-default);
		max-height: 0; overflow: hidden;
		transition: max-height 260ms ease, padding 260ms ease;
		padding: 0 clamp(20px, 5vw, 40px);
		z-index: 40;
	}
	.vgs-header.is-nav-open .vgs-nav {
		max-height: 80vh; padding: 20px clamp(20px, 5vw, 40px) 32px;
		box-shadow: 0 22px 40px -32px rgba(31,22,17,0.35);
	}
	.vgs-nav__list { flex-direction: column; align-items: flex-start; gap: 16px; }
	.vgs-nav__list a { font-size: 1.1rem; }
	.vgs-header { position: relative; }

	/* Utility bar: keep the phone visible, drop address/hours on small screens */
	.vgs-utilitybar__inner { justify-content: center; padding-block: 7px; }
	.vgs-utilitybar__group { display: none; }

	/* Section spacing tightens on mobile */
	.vgs-section { padding: clamp(48px, 10vw, 80px) 0; }

	/* Herocine mobile: shorter, less dramatic scrim, meta hidden */
	.vgs-herocine { min-height: 68vh; }
	.vgs-herocine__wrap { padding: clamp(24px, 6vw, 40px); }
	.vgs-herocine__lead { font-size: 1rem; }
	.vgs-herocine__meta { display: none; }
	.vgs-herocine .vgs-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
	.vgs-herocine .vgs-cta-row .vgs-btn,
	.vgs-herocine .vgs-cta-row .vgs-arrowlink { width: fit-content; }

	/* Editorial pair + statement stack on mobile */
	.vgs-editorial__pair,
	.vgs-statement { grid-template-columns: 1fr; }
	.vgs-statement { min-height: 0; }
	.vgs-statement__img { height: 300px; order: -1; }
	.vgs-statement__body { padding: clamp(40px, 8vw, 64px) clamp(24px, 6vw, 40px); }

	/* Mission moment slightly smaller */
	.vgs-mission__text { font-size: clamp(2rem, 8vw, 3.5rem); }

	/* CTA closing band: single-column stack, smaller padding */
	.vgs-cta-row { flex-wrap: wrap; }

	/* Location block: single column */
	.vgs-location__grid { grid-template-columns: 1fr; gap: 20px; }

	/* Metastrip labels wrap gracefully */
	.vgs-metastrip { flex-direction: column; align-items: flex-start; gap: 8px; }

	/* Prose block: smaller headline, roomy body */
	.vgs-section-intro { font-size: 1rem; }
}

/* ---------------------------------------------------------------------
 * FLUENT FORMS — scoped restyle so embedded forms match Clarity's palette.
 * Fluent Forms loads its own CSS late; we target descendants of
 * .vgs-form__embed and use !important to override without global bleed.
 * --------------------------------------------------------------------- */
.vgs-form { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.vgs-form__embed { margin-top: clamp(28px, 3vw, 44px); }
.vgs-form__footnote {
	font-size: 0.86rem;
	color: var(--color-text-secondary);
	max-width: 62ch;
	margin: clamp(20px, 2.4vw, 32px) 0 0;
	line-height: 1.55;
}
.vgs-form__embed .fluentform label,
.vgs-form__embed .fluentform .ff-el-input--label label {
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	font-size: 0.92rem !important;
	color: var(--color-text-primary) !important;
	letter-spacing: 0.005em !important;
	margin-bottom: 6px !important;
}
.vgs-form__embed .fluentform input[type="text"],
.vgs-form__embed .fluentform input[type="tel"],
.vgs-form__embed .fluentform input[type="email"],
.vgs-form__embed .fluentform textarea,
.vgs-form__embed .fluentform select {
	font-family: var(--font-body) !important;
	background: var(--color-bg-surface) !important;
	border: 1px solid var(--color-border-default) !important;
	border-radius: var(--radius-xs) !important;
	color: var(--color-text-primary) !important;
	padding: 0.75rem 1rem !important;
	min-height: 48px !important;
	font-size: 1rem !important;
	line-height: 1.5 !important;
	box-shadow: none !important;
	transition: border-color 200ms ease !important;
}
.vgs-form__embed .fluentform textarea { min-height: 120px !important; }
.vgs-form__embed .fluentform input:focus,
.vgs-form__embed .fluentform textarea:focus,
.vgs-form__embed .fluentform select:focus {
	border-color: var(--color-brand-primary) !important;
	outline: 2px solid var(--color-brand-primary) !important;
	outline-offset: 2px !important;
}
.vgs-form__embed .fluentform .ff-el-input--content,
.vgs-form__embed .fluentform .ff-el-group { margin-bottom: 18px !important; }
.vgs-form__embed .fluentform .ff-el-help-message,
.vgs-form__embed .fluentform .ff_desc { color: var(--color-text-secondary) !important; font-size: 0.85rem !important; margin-top: 6px !important; }
.vgs-form__embed .fluentform .ff-el-is-error input,
.vgs-form__embed .fluentform .ff-el-is-error textarea,
.vgs-form__embed .fluentform .ff-el-is-error select { border-color: #A0714A !important; }
.vgs-form__embed .fluentform .error { color: #A0714A !important; font-size: 0.85rem !important; margin-top: 6px !important; }
.vgs-form__embed .fluentform .ff-btn-submit,
.vgs-form__embed .fluentform button[type="submit"] {
	background: var(--color-brand-primary) !important;
	color: var(--color-text-primary) !important;
	border: 1px solid var(--color-brand-primary) !important;
	border-radius: var(--radius-pill) !important;
	padding: 0.75rem 1.6rem !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
	transition: background-color 200ms ease, color 200ms ease !important;
	min-height: 48px !important;
	box-shadow: none !important;
}
.vgs-form__embed .fluentform .ff-btn-submit:hover,
.vgs-form__embed .fluentform button[type="submit"]:hover {
	background: var(--color-brand-primary-hover) !important;
	border-color: var(--color-brand-primary-hover) !important;
}
.vgs-form__embed .fluentform .ff-message-success {
	background: var(--color-bg-subtle) !important;
	border: 1px solid var(--color-border-default) !important;
	border-radius: var(--radius-xs) !important;
	padding: 20px 24px !important;
	color: var(--color-text-primary) !important;
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
}
@media (max-width: 640px) {
	.vgs-form__embed .fluentform .ff-t-container.ff-column-container { display: block !important; }
	.vgs-form__embed .fluentform .ff-t-cell { padding: 0 !important; }
}

/* Extra narrow (≤480px): reduce hero + display H2 further via clamp already handled */
@media (max-width: 480px) {
	.vgs-herocine { min-height: 60vh; }
	.vgs-section { padding: clamp(40px, 10vw, 64px) 0; }
	.vgs-cta { text-align: left; }
	.vgs-heritage__img { max-height: 340px; }
}

/* ============================================================
 * v1.12.0 — editorial collage system (overlapping/stacked imagery).
 * Flat discipline holds: layering reads through mats (padded panels)
 * + 1px hairlines, never drop shadows. Placeholder images ship in
 * bone so empty slots still look intentional.
 * ============================================================ */

/* -- shared collage cluster -- */
.vgs-collage { position: relative; aspect-ratio: 10 / 11; }
.vgs-collage__fig {
	position: absolute; margin: 0;
	background: var(--color-bg-page);
	border: 1px solid var(--color-border-strong);
	padding: 10px;
}
.vgs-collage__fig img { display: block; width: 100%; height: 100%; object-fit: cover; }
.vgs-collage__fig--a { width: 60%; top: 0; left: 0; z-index: 1; }
.vgs-collage__fig--a img { aspect-ratio: 4 / 5; }
.vgs-collage__fig--b { width: 54%; top: 24%; right: 0; z-index: 2; }
.vgs-collage__fig--b img { aspect-ratio: 4 / 3; }
.vgs-collage__fig--c { width: 38%; bottom: 0; left: 16%; z-index: 3; }
.vgs-collage__fig--c img { aspect-ratio: 4 / 5; }
.vgs-collage--duo { aspect-ratio: 10 / 9; }
.vgs-collage--duo .vgs-collage__fig--a { width: 72%; top: 0; left: 0; z-index: 1; }
.vgs-collage--duo .vgs-collage__fig--a img { aspect-ratio: 4 / 3; }
.vgs-collage--duo .vgs-collage__fig--b { width: 46%; top: auto; bottom: 0; right: 0; z-index: 2; }
.vgs-collage--duo .vgs-collage__fig--b img { aspect-ratio: 4 / 5; }
.vgs-collage__caption {
	position: absolute; left: 0; bottom: -2.4em; margin: 0;
	font-family: var(--font-body); font-size: var(--fs-eyebrow);
	font-weight: 600; letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase; color: var(--color-text-muted);
}
.vgs-collage--on-inverse .vgs-collage__fig {
	background: var(--color-bg-subtle);
	border-color: color-mix(in srgb, var(--color-bg-page) 35%, transparent);
}

/* -- collagetrio -- */
.vgs-collagetrio__grid {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(40px, 7vw, 110px); align-items: center;
}
.vgs-collagetrio__grid--rev .vgs-collagetrio__media { order: -1; }

/* -- showcase (numbered image grid) -- */
.vgs-sechead--center { text-align: center; }
.vgs-sechead--center::after { margin-left: auto; margin-right: auto; }
.vgs-section-intro--center { text-align: center; margin-left: auto; margin-right: auto; }
.vgs-showcase__head { max-width: 760px; margin: 0 auto; }
.vgs-showcase__grid {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: clamp(28px, 4vw, 64px); row-gap: clamp(56px, 7vw, 96px);
	margin-top: clamp(48px, 6vw, 80px);
}
.vgs-showcase__item { position: relative; }
.vgs-showcase__grid > .vgs-showcase__item:nth-child(3n+2) { transform: translateY(clamp(28px, 4vw, 56px)); }
.vgs-showcase__media {
	position: relative;
	background: var(--color-bg-page);
	border: 1px solid var(--color-border-strong);
	padding: 10px;
}
.vgs-showcase__media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.vgs-showcase__n {
	position: absolute; top: -0.42em; left: -0.24em;
	font-size: clamp(56px, 6.4vw, 92px); font-style: italic;
	z-index: 2; pointer-events: none;
}
.vgs-showcase__title {
	font-family: var(--font-editorial); font-size: var(--fs-h4);
	margin: 20px 0 8px;
}
.vgs-showcase__summary { color: var(--color-text-muted); margin: 0 0 12px; }

/* -- ctacollage -- */
.vgs-ctacollage__grid {
	display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: clamp(40px, 7vw, 110px); align-items: center;
}
.vgs-ctacollage .vgs-cta-row { justify-content: flex-start; }

/* -- locationcollage -- */
.vgs-locationcollage__grid {
	display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(40px, 7vw, 100px); align-items: start;
	margin-top: clamp(28px, 4vw, 48px);
}
.vgs-locationcollage__info {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px); align-items: start;
}
.vgs-locationcollage__media .vgs-collage { max-width: 520px; }

@media (max-width: 900px) {
	.vgs-collagetrio__grid,
	.vgs-ctacollage__grid,
	.vgs-locationcollage__grid { grid-template-columns: minmax(0, 1fr); }
	.vgs-collagetrio__grid--rev .vgs-collagetrio__media { order: 0; }
	.vgs-collage { max-width: 480px; margin: 0 auto; }
	.vgs-collage__caption { position: static; margin-top: 14px; }
	.vgs-showcase__grid { grid-template-columns: minmax(0, 1fr); row-gap: 56px; }
	.vgs-showcase__grid > .vgs-showcase__item:nth-child(3n+2) { transform: none; }
	.vgs-showcase__media img { aspect-ratio: 4 / 3; }
	.vgs-showcase__n { font-size: 56px; }
	.vgs-locationcollage__info { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
 * v1.13.0 — showcase horizontal rail (GSAP pin + scrub gallery)
 * and centered showcase head (eyebrow included).
 * ============================================================ */
.vgs-showcase__head { text-align: center; }

.vgs-showcase--rail { overflow: hidden; }
.vgs-showcase__rail {
	display: flex; align-items: flex-start;
	gap: clamp(28px, 4vw, 56px);
	will-change: transform;
}

@media (min-width: 900px) {
	/* The section pins for one viewport while the rail scrubs sideways,
	   so the whole stack (head + tallest offset card) must fit 100svh.
	   Card size is viewport-bound: image height caps at 42svh. */
	.vgs-showcase--rail {
		min-height: 100svh;
		display: flex; flex-direction: column; justify-content: center;
		padding-top: clamp(16px, 3svh, 40px);
		padding-bottom: clamp(16px, 3svh, 40px);
	}
	.vgs-showcase--rail > .container { width: 100%; }
	.vgs-showcase--rail .vgs-showcase__head { margin-bottom: clamp(16px, 3.5svh, 36px); }
	.vgs-showcase--rail .vgs-sechead { font-size: min(var(--fs-display-section), 8.2svh); }
	.vgs-showcase--rail .vgs-section-intro { margin-bottom: 0; }
	.vgs-showcase__rail { padding-bottom: clamp(12px, 2svh, 24px); }
	.vgs-showcase__rail .vgs-showcase__item { flex: 0 0 min(30svh, 380px); }
	.vgs-showcase__rail .vgs-showcase__media img { aspect-ratio: 4 / 5; height: auto; }
	.vgs-showcase__rail .vgs-showcase__item:nth-child(even) { transform: translateY(clamp(12px, 2svh, 24px)); }
	.vgs-showcase__rail .vgs-showcase__summary {
		display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
	}
}

@media (min-width: 900px) and (max-height: 820px) {
	/* Short viewports: compact the head and cards so the pinned stack
	   still fits with room to spare. */
	.vgs-showcase--rail .vgs-sechead { font-size: min(var(--fs-display-section), 5.6svh); }
	.vgs-showcase--rail .vgs-showcase__head { margin-bottom: 14px; }
	.vgs-showcase--rail .vgs-section-intro {
		display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
	}
	.vgs-showcase__rail .vgs-showcase__item { flex-basis: min(25svh, 380px); }
	.vgs-showcase__rail .vgs-showcase__summary { -webkit-line-clamp: 2; }
	.vgs-showcase__rail .vgs-showcase__n { font-size: clamp(40px, 6svh, 56px); }
}

@media (max-width: 899px) {
	/* Rail collapses to the same single-column stack as the grid. */
	.vgs-showcase--rail { min-height: 0; }
	.vgs-showcase__rail { display: grid; grid-template-columns: minmax(0, 1fr); row-gap: 56px; margin-top: clamp(40px, 5vw, 64px); }
	.vgs-showcase__rail .vgs-showcase__item { transform: none; }
	.vgs-showcase__rail .vgs-showcase__media img { aspect-ratio: 4 / 3; }
}

/* v1.14.4 — heritage is a full-bleed section with no inner .container, so
   its two-column composition rode the left viewport edge on wide screens.
   Cap it at the site container width and center the band. */
.vgs-heritage {
	max-width: var(--container-max);
	margin-inline: auto;
}

/* ============================================================
 * v1.15.0 — rich footer (four columns + areas strip + legal)
 * on the espresso ground. Hairlines are cream at low alpha;
 * flat discipline holds.
 * ============================================================ */
.vgs-footer--rich {
	padding: clamp(56px, 7vw, 96px) 0 0;
	/* Parent adds margin-top: var(--space-3xl), which shows a cream gap
	   between the espresso closing CTA and this espresso footer. Flush
	   them together; the hairline border is the only seam. */
	margin-top: 0;
}
.vgs-footer--rich .vgs-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: clamp(32px, 4.5vw, 72px);
	align-items: start;
}
.vgs-footer--rich .vgs-brandmark { color: var(--color-text-inverse); display: inline-block; margin-bottom: 18px; }
.vgs-footer__line { margin: 0 0 10px; color: var(--color-text-inverse); max-width: 34ch; }
.vgs-footer__line--muted, .vgs-footer__hours, .vgs-footer__areas-list { color: var(--color-text-inverse-secondary); }
.vgs-footer__coltitle {
	font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 600;
	letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
	color: var(--color-text-inverse-secondary);
	margin: 0 0 16px;
}
.vgs-footer__coltitle--sub { margin-top: 22px; }
.vgs-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vgs-footer__list a, .vgs-footer__phone a {
	color: var(--color-text-inverse); text-decoration: none;
	border-bottom: 1px solid transparent; transition: border-color 200ms ease;
}
.vgs-footer__list a:hover, .vgs-footer__list a:focus-visible,
.vgs-footer__phone a:hover, .vgs-footer__phone a:focus-visible { border-bottom-color: var(--color-brand-primary); }
.vgs-footer__address { font-style: normal; margin: 0 0 12px; color: var(--color-text-inverse); }
.vgs-footer__phone { margin: 0; }
.vgs-footer__hours { margin: 0; line-height: 1.7; }
.vgs-footer__areas {
	margin-top: clamp(44px, 6vw, 72px);
	padding: clamp(24px, 3vw, 36px) 0;
	border-top: 1px solid color-mix(in srgb, var(--color-text-inverse) 18%, transparent);
	text-align: center;
}
.vgs-footer__areas .vgs-footer__coltitle { margin-bottom: 10px; }
.vgs-footer__areas-list { margin: 0; }
.vgs-footer__meta {
	text-align: center; margin: 0;
	padding: 18px 0 36px;
	color: var(--color-text-inverse-secondary);
	border-top: 1px solid color-mix(in srgb, var(--color-text-inverse) 10%, transparent);
}
.vgs-footer__meta a { color: var(--color-text-inverse-secondary); }
.vgs-footer__meta a:hover { color: var(--color-text-inverse); }

@media (max-width: 980px) {
	.vgs-footer--rich .vgs-footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 620px) {
	.vgs-footer--rich .vgs-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
}

/* ============================================================
 * v1.16.0 — bento tile gallery (scrubbed reveal), infinite
 * showcase loop, and pagehead utility opener.
 * ============================================================ */
.vgs-pagehead .vgs-sechead { margin: 0; }

.vgs-bento__head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.vgs-bento__cta { margin: 24px 0 0; }
.vgs-bento__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: clamp(12px, 1.6vw, 22px);
}
.vgs-bento__tile {
	margin: 0; overflow: hidden;
	background: var(--color-bg-page);
	border: 1px solid var(--color-border-strong);
	padding: 8px;
}
.vgs-bento__tile img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.vgs-bento__tile--big  { grid-column: span 2; grid-row: span 2; }
.vgs-bento__tile--big img  { aspect-ratio: auto; }
.vgs-bento__tile--wide { grid-column: span 2; }
.vgs-bento__tile--wide img { aspect-ratio: 2 / 1; }
@media (max-width: 899px) {
	.vgs-bento__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vgs-bento__tile--big, .vgs-bento__tile--wide { grid-column: span 2; }
}

/* Infinite showcase loop: single row drifting continuously (GSAP wraps
   xPercent per card). Overflow clipped by the section; no edge fades to
   keep the flat system honest. */
.vgs-showcase--loop { overflow: hidden; }
.vgs-showcase__loopclip { overflow: hidden; margin-top: clamp(40px, 5vw, 64px); }
.vgs-showcase__track {
	display: flex; align-items: flex-start;
	gap: clamp(24px, 3vw, 44px);
}
.vgs-showcase__track .vgs-showcase__item {
	flex: 0 0 clamp(280px, 24vw, 380px);
}
.vgs-showcase__track .vgs-showcase__summary {
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
	.vgs-showcase__loopclip { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
 * v1.17.0 — Flip-morph stages (scrubbed bento gallery pattern).
 * Default DOM is always the FINAL readable layout; JS adds
 * .is-cover to capture the opening state and scrubs the morph.
 * ============================================================ */
.vgs-showcase__loopclip { padding-top: clamp(40px, 5vw, 64px); }

@media (min-width: 900px) {
	.vgs-bento--flip { overflow: hidden; }
	.vgs-bento--flip .vgs-bento__stage {
		position: relative; min-height: 100svh;
		display: flex; align-items: center; justify-content: center;
	}
	.vgs-bento--flip .vgs-bento__grid {
		width: 100%;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		grid-auto-rows: minmax(0, 26svh);
	}
	/* FINAL: tiles part to the perimeter, leaving a center hole for the head. */
	.vgs-bento--flip .vgs-bento__tile:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
	.vgs-bento--flip .vgs-bento__tile:nth-child(2) { grid-area: 1 / 5 / 2 / 6; }
	.vgs-bento--flip .vgs-bento__tile:nth-child(3) { grid-area: 1 / 6 / 2 / 7; }
	.vgs-bento--flip .vgs-bento__tile:nth-child(4) { grid-area: 3 / 1 / 4 / 3; }
	.vgs-bento--flip .vgs-bento__tile:nth-child(5) { grid-area: 2 / 6 / 3 / 7; }
	.vgs-bento--flip .vgs-bento__tile:nth-child(6) { grid-area: 3 / 5 / 4 / 7; }
	.vgs-bento--flip .vgs-bento__tile img { aspect-ratio: auto; height: 100%; }
	/* COVER: the tight centered mosaic that fills the stage. */
	.vgs-bento--flip .is-cover.vgs-bento__stage .vgs-bento__grid,
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__grid {
		max-width: min(1040px, 92vw, 118svh);
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__tile:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__tile:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__tile:nth-child(3) { grid-area: 1 / 4 / 2 / 5; }
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__tile:nth-child(4) { grid-area: 3 / 1 / 4 / 3; }
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__tile:nth-child(5) { grid-area: 2 / 3 / 4 / 4; }
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__tile:nth-child(6) { grid-area: 2 / 4 / 4 / 5; }
	.vgs-bento--flip .vgs-bento__head {
		position: absolute; left: 50%; top: 50%;
		transform: translate(-50%, -50%);
		width: min(560px, 40vw); margin: 0; z-index: 2;
	}
	.vgs-bento--flip .vgs-bento__stage.is-cover .vgs-bento__head { opacity: 0; }

	/* Showcase flip: head stays above; the card grid morphs beneath it. */
	.vgs-showcase--flip { overflow: hidden; }
	.vgs-showcase__flipstage {
		min-height: 100svh;
		display: flex; flex-direction: column; justify-content: center;
		padding-top: clamp(48px, 6svh, 72px);
		padding-bottom: clamp(16px, 3svh, 40px);
	}
	/* FINAL: one compact row of five cards, sized to share the pinned
	   viewport with the cover mosaic (both Flip states must fit 100svh). */
	.vgs-showcase__flipgrid {
		display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
		column-gap: clamp(16px, 2vw, 32px); row-gap: 0;
		margin-top: 0;
	}
	.vgs-showcase__flipgrid > .vgs-showcase__item:nth-child(even) { transform: translateY(clamp(10px, 2svh, 20px)); }
	.vgs-showcase__flipgrid .vgs-showcase__media img { aspect-ratio: 4 / 5; }
	.vgs-showcase__flipgrid .vgs-showcase__title { font-size: clamp(17px, 1.4vw, 21px); margin: 14px 0 6px; }
	.vgs-showcase__flipgrid .vgs-showcase__summary {
		font-size: 0.9em;
		display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
	}
	.vgs-showcase__flipgrid .vgs-showcase__n { font-size: clamp(36px, 4.5svh, 56px); }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__flipgrid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: clamp(12px, 1.6vw, 22px); row-gap: clamp(12px, 1.6vw, 22px);
		/* Sized so two 4:5 rows + the banner row fit the pinned viewport. */
		max-width: min(1040px, 92vw, 74svh); margin-inline: auto;
		width: 100%;
	}
	.vgs-showcase__flipstage.is-cover .vgs-showcase__item { transform: none !important; }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__item:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__item:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__item:nth-child(3) { grid-area: 1 / 4 / 2 / 5; }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__item:nth-child(4) { grid-area: 2 / 3 / 3 / 5; }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__item:nth-child(5) { grid-area: 3 / 1 / 4 / 5; }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__title,
	.vgs-showcase__flipstage.is-cover .vgs-showcase__summary,
	.vgs-showcase__flipstage.is-cover .vgs-showcase__link { display: none; }
	.vgs-showcase__flipstage.is-cover .vgs-showcase__item:nth-child(5) .vgs-showcase__media img { aspect-ratio: 4 / 1; }
}
@media (max-width: 899px) {
	.vgs-showcase__flipgrid { display: grid; grid-template-columns: minmax(0, 1fr); row-gap: 56px; margin-top: clamp(40px, 5vw, 64px); }
	.vgs-showcase__flipgrid .vgs-showcase__media img { aspect-ratio: 4 / 3; }
}

/* ============================================================
 * v1.18.0 — GreenSock "Scrubbed Bento Gallery" (pen vYMzKZx),
 * CSS replicated verbatim; only the text styling below the
 * gallery is ours.
 * ============================================================ */
.gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}

.gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  position: relative;
}
.gallery__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery--bento {
  display: grid;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5vw);
  grid-template-rows: repeat(4, 23vh);
  justify-content: center;
  align-content: center;
}

.gallery--final.gallery--bento {
  grid-template-columns: repeat(3, 100vw);
  grid-template-rows: repeat(4, 49.5vh);
  gap: 1vh;
}

.gallery--bento .gallery__item:nth-child(1) { grid-area: 1/1/3/2; }
.gallery--bento .gallery__item:nth-child(2) { grid-area: 1/2/2/3; }
.gallery--bento .gallery__item:nth-child(3) { grid-area: 2/2/4/3; }
.gallery--bento .gallery__item:nth-child(4) { grid-area: 1/3/3/3; }
.gallery--bento .gallery__item:nth-child(5) { grid-area: 3/1/3/2; }
.gallery--bento .gallery__item:nth-child(6) { grid-area: 3/3/5/4; }
.gallery--bento .gallery__item:nth-child(7) { grid-area: 4/1/5/2; }
.gallery--bento .gallery__item:nth-child(8) { grid-area: 4/2/5/3; }

/* Ours: text block spacing beneath the pinned gallery. */
.vgs-bento--zoom .vgs-bento__head {
	max-width: 720px; margin: clamp(48px, 8vh, 96px) auto;
	text-align: center;
}

/* =====================================================================
 * v1.20.0 — Icon buttons, scheduler popout, cookie consent bar
 * ===================================================================== */
.vgs-btn--icon { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.vgs-btn--icon svg { width: 18px; height: 18px; flex: none; }
.vgs-header__cta { display: inline-flex; align-items: center; gap: 0.45rem; }
.vgs-header__cta svg { width: 16px; height: 16px; flex: none; }

/* Floating scheduler popout: clay edge tab, cream card, flat hairlines. */
.vgs-popout { position: fixed; right: 0; bottom: 16vh; z-index: 70; }
.vgs-popout__tab {
	writing-mode: vertical-rl;
	appearance: none;
	cursor: pointer;
	background: var(--color-brand-primary);
	color: var(--color-bg-page);
	border: 1px solid var(--color-brand-primary);
	border-right: 0;
	border-radius: var(--radius-xs) 0 0 var(--radius-xs);
	padding: 18px 10px;
	font-family: var(--font-eyebrow);
	font-size: var(--fs-eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	transition: background-color 200ms ease, border-color 200ms ease;
}
.vgs-popout__tab:hover, .vgs-popout__tab:focus-visible {
	background: var(--color-text-primary);
	border-color: var(--color-text-primary);
}
.vgs-popout.is-open .vgs-popout__tab { visibility: hidden; }
.vgs-popout__card {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: min(360px, calc(100vw - 32px));
	background: var(--color-bg-page);
	border: 1px solid var(--color-border-strong);
	border-radius: var(--radius-xs);
	padding: 28px 24px 24px;
}
.vgs-popout__close {
	position: absolute;
	top: 6px;
	right: 6px;
	appearance: none;
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	padding: 8px 10px;
	color: var(--color-text-primary);
}
.vgs-popout__title {
	font-family: var(--font-editorial);
	font-size: var(--fs-h3);
	line-height: 1.15;
	margin: 0.5rem 0;
}
.vgs-popout__line { font-size: 0.95rem; margin: 0 0 1.1rem; }
.vgs-popout__actions { display: flex; flex-direction: column; gap: 10px; margin: 0 0 0.9rem; }
.vgs-popout__actions .vgs-btn { width: 100%; }
.vgs-popout__ask { margin: 0; }

/* Cookie consent bar: espresso ground, equal-prominence choices. */
.vgs-consent {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 90;
	border-top: 1px solid var(--color-border-strong);
}
.vgs-consent__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 24px;
	padding-block: 18px;
}
.vgs-consent__text { margin: 0; flex: 1 1 380px; font-size: 0.95rem; }
.vgs-consent__text a { color: inherit; text-decoration: underline; }
.vgs-consent__actions { margin: 0; display: flex; gap: 10px; flex: none; }
body.vgs-consent-open .vgs-popout { display: none; }
@media (max-width: 640px) {
	.vgs-consent__actions { width: 100%; }
	.vgs-consent__actions .vgs-btn { flex: 1 1 auto; text-align: center; }
}

/* =====================================================================
 * v1.21.1 - Hero CTA pair contrast: the outline variant washes out over
 * bright photo regions, so inside heroes it becomes a solid cream button
 * (espresso on cream is AA on any backdrop).
 * ===================================================================== */
.vgs-herocine .vgs-btn--outline {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	border-color: var(--color-bg-page);
}
.vgs-herocine .vgs-btn--outline:hover,
.vgs-herocine .vgs-btn--outline:focus-visible {
	background: var(--color-brand-primary);
	color: var(--color-text-primary);
	border-color: var(--color-brand-primary);
}
