/* ==========================================================================
   Vinding — Main stylesheet
   Depends on tokens.css (enqueued first).
   ========================================================================== */

/* ---- Reset-ish base ---------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--vd-font-sans);
	font-size: var(--vd-fs-body);
	font-weight: 550;
	line-height: var(--vd-lh-base);
	color: var(--vd-ink);
	background: var(--vd-paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul[role="list"] { list-style: none; margin: 0; padding: 0; }

/* ---- Headings ---------------------------------------------------------- */
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 700; line-height: var(--vd-lh-tight); }

.vd-display {
	font-family: var(--vd-font-serif);
	font-weight: 200;
	font-style: italic;
	letter-spacing: -1.5px;
	line-height: var(--vd-lh-tight);
}
.vd-display--hero { font-size: var(--vd-fs-hero-lg); }
.vd-title-page  { font-family: var(--vd-font-serif); font-weight: 300; font-style: italic; font-size: var(--vd-fs-page); letter-spacing: 0; }
.vd-subtitle    { font-family: var(--vd-font-serif); font-weight: 350; font-style: italic; font-size: var(--vd-fs-page); letter-spacing: -1px; line-height: var(--vd-lh-serif); text-align: center; }
.vd-heading     { font-family: var(--vd-font-sans); font-weight: 700; font-size: var(--vd-fs-h1); }
.vd-subheading  { font-family: var(--vd-font-sans); font-weight: 700; font-size: var(--vd-fs-h2); }

.vd-eyebrow {
	font-family: var(--vd-font-sans);
	font-weight: 600;
	font-size: var(--vd-fs-sm);
	letter-spacing: 2px;
	text-transform: uppercase;
}
.vd-muted { color: var(--vd-muted); }

/* ---- Layout helpers ---------------------------------------------------- */
.vd-container {
	width: 100%;
	max-width: var(--vd-container);
	margin-inline: auto;
}
.vd-section { padding-block: var(--vd-section-y); }
.vd-section--tight { padding-block: calc(var(--vd-section-y) * 0.6); }

.vd-section-head { text-align: center; }
.vd-section-head .vd-title-page { margin: 0; }
.vd-section-head p { margin: 16px 0 0; color: var(--vd-muted); font-size: var(--vd-fs-h2); }
.vd-section-head .vd-rule { width: 40px; height: 1px; background: var(--vd-ink-30); margin: 24px auto 0; }

.vd-grid { display: grid; gap: var(--vd-gutter); }
.vd-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vd-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vd-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
	.vd-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.vd-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.vd-grid--2, .vd-grid--3, .vd-grid--4 { grid-template-columns: 1fr; }
}

/* ---- Buttons / pills --------------------------------------------------- */
.vd-btn,
.vd-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 12px 24px;
	border: 0;
	border-radius: var(--vd-radius-pill);
	font-family: var(--vd-font-sans);
	font-weight: 700;
	font-size: var(--vd-fs-body);
	letter-spacing: 0.05px;
	text-transform: uppercase;
	transition: transform var(--vd-dur) var(--vd-ease), background-color var(--vd-dur) var(--vd-ease), color var(--vd-dur) var(--vd-ease);
	white-space: nowrap;
}
.vd-btn--accent { background: var(--vd-accent); color: var(--vd-accent-ink); }
.vd-btn--ink    { background: var(--vd-ink); color: var(--vd-cream); }
.vd-btn--coral  { background: var(--vd-coral); color: var(--vd-coral-ink); }
.vd-btn--wine   { background: var(--vd-wine); color: var(--vd-cream); }
.vd-btn--ghost  { background: transparent; color: var(--vd-ink); border: 1px solid var(--vd-ink); }
.vd-btn--lg     { height: 64px; padding-inline: 32px; }
.vd-btn--sm     { height: 40px; padding-inline: 18px; font-size: var(--vd-fs-sm); }
.vd-btn--full   { width: 100%; }
.vd-btn:hover   { transform: translateY(-2px); }
.vd-btn--accent:hover { background: #ecf86a; }
.vd-btn--coral:hover  { background: #e0431f; }
.vd-btn__arrow  { font-size: 1.1em; line-height: 0; }

.vd-pill--icon {
	width: 48px; height: 48px; padding: 0;
	border: 1px solid var(--vd-border);
	background: transparent;
	border-radius: 50%;
	color: var(--vd-border);
}
.vd-pill--icon:hover { background: var(--vd-ink); color: var(--vd-cream); border-color: var(--vd-ink); }

/* ---- Site header / nav ------------------------------------------------- */
.vd-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px var(--vd-gutter);
	color: var(--vd-cream); /* transparent-over-hero default */
}
.vd-header--solid {
	position: sticky;
	top: 0;
	background: var(--vd-paper);
	border-bottom: 1px solid var(--vd-border-soft);
	color: var(--vd-ink);
}

/* Logo: stacked glass mark + wordmark */
.vd-logo { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; color: inherit; }
.vd-logo__mark { display: block; }
.vd-logo__word { font-family: var(--vd-font-serif); font-size: 15px; letter-spacing: 4px; line-height: 1; }
.vd-logo--img img { max-height: 56px; width: auto; }

.vd-nav { display: flex; align-items: center; gap: 40px; }
.vd-nav__menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.vd-nav__menu a { font-family: var(--vd-font-sans); font-weight: 600; font-size: var(--vd-fs-sm); letter-spacing: 0.3px; }
.vd-nav__menu a:hover { opacity: 0.7; }

.vd-header__right { display: flex; align-items: center; gap: 24px; color: inherit; }
.vd-vendor-link { text-transform: uppercase; font-weight: 700; font-size: var(--vd-fs-sm); letter-spacing: 0.5px; }
.vd-vendor-link:hover { opacity: 0.7; }
.vd-cart-link { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.vd-cart-count {
	min-width: 20px; height: 20px; padding: 0 5px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; background: var(--vd-accent); color: var(--vd-ink);
	font-size: 12px; font-weight: 700;
}
.vd-lang { background: transparent; border: 0; color: inherit; display: inline-flex; padding: 0; }
.vd-lang:hover { opacity: 0.7; }

.vd-burger { display: none; width: 44px; height: 44px; background: transparent; border: 0; flex-direction: column; gap: 5px; align-items: center; justify-content: center; color: inherit; }
.vd-burger span { width: 24px; height: 2px; background: currentColor; transition: var(--vd-dur); }

@media (max-width: 1024px) {
	.vd-header { padding: 16px var(--vd-gutter); }
	.vd-nav { position: static; }
	.vd-nav__menu { display: none; }
	.vd-burger { display: flex; }
	.vd-nav.is-open .vd-nav__menu,
	.vd-nav.is-open .vd-header__right {
		display: flex;
	}
	.vd-nav.is-open {
		display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--vd-paper); color: var(--vd-ink);
		padding: 24px var(--vd-gutter) 32px;
		box-shadow: var(--vd-shadow-card);
	}
	.vd-nav.is-open .vd-nav__menu { flex-direction: column; align-items: flex-start; gap: 14px; }
	.vd-nav.is-open .vd-header__right { flex-wrap: wrap; gap: 16px; color: var(--vd-ink); }
	.vd-nav:not(.is-open) { gap: 0; }
	.vd-nav:not(.is-open) .vd-header__right { display: none; }
}

/* ---- Hero -------------------------------------------------------------- */
.vd-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vd-cream);
	overflow: hidden;
}
.vd-hero__media { position: absolute; inset: 0; }
.vd-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.vd-hero__media::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.36); }
.vd-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1140px;
	text-align: center;
	padding: 0 var(--vd-gutter) 56px;
}
.vd-hero__title { font-family: var(--vd-font-serif); font-weight: 200; font-style: italic; font-size: var(--vd-fs-hero-lg); letter-spacing: -1.4px; line-height: 1.15; margin: 0 0 18px; color: var(--vd-cream); }
.vd-hero__sub { font-family: var(--vd-font-sans); font-weight: 600; font-size: var(--vd-fs-h3); margin: 0; }

.vd-hero__scroll { width: 1px; height: 56px; background: linear-gradient(var(--vd-cream), transparent); margin-top: 32px; opacity: 0.7; }

/* Repeated "marquee" section heading (Pick your sip · A Wine of Occasion …) */
.vd-section-head--marquee { overflow: hidden; margin-bottom: 30px; }
.vd-head-repeat { display: flex; justify-content: center; gap: 117px; white-space: nowrap; }
.vd-head-repeat span { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-page); line-height: 1.2; }
.vd-head-repeat span:not(.is-focus) { color: var(--vd-ink-30); }
@media (max-width: 700px) { .vd-head-repeat span:not(.is-focus) { display: none; } }

/* ---- Get in Touch band (wine/maroon) ----------------------------------- */
.vd-getintouch { display: grid; grid-template-columns: 360px 1fr; background: var(--vd-wine); color: var(--vd-cream); }
.vd-getintouch__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.vd-getintouch__content { padding: 80px var(--vd-gutter); text-align: center; }
.vd-getintouch__content .vd-eyebrow { color: rgba(252,253,232,0.7); }
.vd-getintouch__title { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-page); margin: 8px 0 48px; color: var(--vd-cream); }
.vd-getintouch__steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; max-width: 1000px; margin: 0 auto 48px; }
.vd-getintouch__step { flex: 1; max-width: 280px; }
.vd-getintouch__icon { display: inline-flex; color: var(--vd-cream); margin-bottom: 16px; }
.vd-getintouch__step p { font-size: var(--vd-fs-body); color: rgba(252,253,232,0.85); margin: 0; line-height: 1.45; }
.vd-getintouch__dash { flex: 0 0 48px; height: 1px; border-top: 1px dashed rgba(252,253,232,0.4); margin-top: 13px; }
.vd-getintouch__note { font-size: var(--vd-fs-sm); color: rgba(252,253,232,0.7); margin: 16px 0 0; }
@media (max-width: 1024px) {
	.vd-getintouch { grid-template-columns: 1fr; }
	.vd-getintouch__media img { min-height: 220px; }
	.vd-getintouch__content { padding: 56px var(--vd-gutter); }
	.vd-getintouch__steps { flex-direction: column; align-items: center; gap: 28px; }
	.vd-getintouch__dash { display: none; }
}

/* ---- About page -------------------------------------------------------- */
.vd-page-title { padding: 100px var(--vd-gutter) 0; }
.vd-page-title h1 { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-hero); margin: 0; }
.vd-page-title .vd-rule-left { width: 40px; height: 1px; background: var(--vd-ink-30); margin-top: 24px; }

.vd-about-hero { padding: 40px var(--vd-gutter); }
.vd-about-hero img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--vd-radius-lg); }

.vd-about-intro { display: grid; grid-template-columns: 1fr 0.5fr; gap: 64px; align-items: start; }
.vd-about-intro .vd-about-intro__containerL { display: grid; gap: 48px; }
.vd-about-intro .vd-about-intro__top-container { display: grid; gap: 48px; grid-template-columns: 1fr 1fr; gap: 48px;}
.vd-about-intro__imgL { order: -1; }
.vd-about-intro__imgL img { width: 100%; border-radius: var(--vd-radius-lg); aspect-ratio: 4/5; object-fit: cover; }
.vd-about-intro__imgR { display: flex; align-items: center; }
.vd-about-intro__imgR img { width: 100%; border-radius: var(--vd-radius-lg); object-fit: cover; }
.vd-about-intro__text .vd-eyebrow { color: var(--vd-muted); }
.vd-about-intro__heading { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-page); margin: 12px 0 20px; }
.vd-about-intro__text p { color: var(--vd-ink-70); font-size: var(--vd-fs-body); }

.vd-about-quote { max-width: 100%; }
.vd-about-quote h2 { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-page); margin: 0 0 20px; line-height: 1.2; }
.vd-about-quote p { color: var(--vd-ink-70); }

.vd-about-tabs { display: grid; grid-template-columns: 240px 1fr 1fr; gap: 40px; align-items: center; }
.vd-about-tabs__list { display: flex; flex-direction: column; gap: 12px; }
.vd-about-tabs__btn { display: flex; align-items: center; gap: 10px; text-align: left; background: var(--vd-white); border: 1px solid var(--vd-border); border-radius: var(--vd-radius-md); padding: 14px 22px; font-family: var(--vd-font-sans); font-weight: 700; font-size: var(--vd-fs-body); color: var(--vd-ink); cursor: pointer; transition: var(--vd-dur); }
.vd-about-tabs__btn.is-active { background: var(--vd-wine); color: var(--vd-cream); border-color: var(--vd-wine); }
.vd-about-tabs__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vd-about-tabs__ico svg {
  display: block;
  width: 18px;
  height: 18px;
}
.vd-about-tabs__media img { width: 100%; border-radius: var(--vd-radius-lg); aspect-ratio: 1; object-fit: cover; }
.vd-about-tabs__panel { display: none; }
.vd-about-tabs__panel.is-active { display: block; }
.vd-about-tabs__panel h3 { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-page); margin: 0 0 16px; }
.vd-about-tabs__panel p { color: var(--vd-ink-70); margin-bottom: 24px; }

.vd-about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vd-about-story__text .vd-eyebrow { color: var(--vd-muted); }
.vd-about-story__text h2 { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-page); margin: 12px 0 20px; }
.vd-about-story__text p { color: var(--vd-ink-70); font-size: var(--vd-fs-body); }
.vd-about-story__media img { width: 100%; border-radius: var(--vd-radius-lg); aspect-ratio: 5/4; object-fit: cover; }

@media (max-width: 1024px) {
	.vd-about-intro { grid-template-columns: 1fr; gap: 32px; }
	.vd-about-intro__imgL, .vd-about-intro__imgR { max-width: 100%; }
	.vd-about-tabs { grid-template-columns: 1fr; }
	.vd-about-story { grid-template-columns: 1fr; gap: 32px; }
	.vd-page-title { padding-top: 120px; }
	.vd-page-title h1 { font-size: var(--vd-fs-page); }
}

/* ---- Contact page ------------------------------------------------------ */
.vd-contact-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 100px var(--vd-gutter); }
.vd-contact-head__intro {display: flex; flex-direction: column; justify-content: space-between;}
.vd-contact-head h1 { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-hero); margin: 0 0 24px; }
.vd-contact-head__lead { color: var(--vd-ink-70); font-size: var(--vd-fs-body); max-width: 380px; }
.vd-contact-head__details { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.vd-contact-head__details .vd-eyebrow { color: var(--vd-muted); display: block; margin-bottom: 6px; }
.vd-contact-head__details svg {	display: inline-block; }
.vd-contact-head__details a, .vd-contact-head__details p { font-size: var(--vd-fs-h3); margin: 0; display: inline-block;}
.vd-contact-head__img { grid-column: 1 / -1; }
.vd-contact-head__img img { width: 100%; aspect-ratio: 16/6; object-fit: cover; border-radius: var(--vd-radius-md); }
.vd-contact-map { width: 100%; height: 420px; border: 0; display: block; padding: 0 var(--vd-gutter); border-radius: var(--vd-radius-md);}

.vd-contact-form-sec { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vd-contact-form-sec__intro h2 { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-page); margin: 0 0 16px; }
.vd-contact-form-sec__intro h3 { font-size: var(--vd-fs-subtitle); margin: 0 0 20px; }
.vd-contact-form-sec__intro p { color: var(--vd-ink-70); font-size: var(--vd-fs-body); }
.vd-contact-box { background: var(--vd-accent); border-radius: var(--vd-radius-lg); padding: 36px; }
.vd-contact-box__title { font-family: var(--vd-font-sans); font-weight: 700; font-size: var(--vd-fs-h3); margin: 0 0 24px; }
.vd-contact-box .vd-field p { margin:0; }
.vd-contact-box .vd-field input,
.vd-contact-box .vd-field textarea { background: var(--vd-white); border-color: transparent; }
.vd-contact-box .vd-field label { font-size: var(--vd-fs-xs); letter-spacing: 1px; text-transform: uppercase; padding-left: 10px; }
@media (max-width: 900px) {
	.vd-contact-head { grid-template-columns: 1fr; gap: 32px; padding-top: 120px; }
	.vd-contact-head h1 { font-size: var(--vd-fs-page); }
	.vd-contact-form-sec { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Tabs (category switch on listings) -------------------------------- */
.vd-tabs { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.vd-tabs a, .vd-tabs button {
	background: transparent; border: 0; padding: 8px 4px;
	font-family: var(--vd-font-serif); font-style: italic; font-size: var(--vd-fs-body); color: var(--vd-ink-50);
}
.vd-tabs .is-active { color: var(--vd-ink); border-bottom: 1px solid var(--vd-ink); }
.vd-tabs .vd-tabs__sep { color: var(--vd-ink-30); }

/* ---- Cards (generic) --------------------------------------------------- */
.vd-card {
	overflow: hidden;
	transition: transform var(--vd-dur) var(--vd-ease), box-shadow var(--vd-dur) var(--vd-ease);
}
.vd-card:hover { transform: translateY(-4px); }
.vd-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.vd-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--vd-ease); }
.vd-card:hover .vd-card__media img { transform: scale(1.05); }
.vd-card__body { padding: 100px 22px 26px; border-radius: 24px; margin-top: -80px; background: var(--vd-white); }
.vd-card__title { font-family: var(--vd-font-sans); font-size: var(--vd-fs-h2); margin: 0 0 6px; }
.vd-card__meta { font-size: var(--vd-fs-sm); color: var(--vd-muted); }
.vd-card__price { font-weight: 700; font-size: var(--vd-fs-h3); margin-top: 12px; display: flex; align-items: center; gap: 5px; }
.vd-card__price del { order: 2; font-size: var(--vd-fs-sm); opacity: .5; }
.vd-card__price ins { color: var(--vd-coral); }

/* Destination / vineyard card (tall, image-led) */
.vd-dest-card { position: relative; border-radius: var(--vd-radius-lg); overflow: hidden; aspect-ratio: 600 / 680; color: var(--vd-cream); display: flex; align-items: flex-end; }
.vd-dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vd-dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6)); }
.vd-dest-card__body { position: relative; z-index: 2; padding: 28px; }
.vd-dest-card__title { font-family: var(--vd-font-serif); font-style: italic; font-size: var(--vd-fs-subtitle); margin: 0 0 6px; }

/* Wine card (compact, light) */
.vd-wine-card .vd-card__media { aspect-ratio: 1 / 1; }
.vd-wine-card .vd-card__media img { object-fit: contain; padding: 18px; }

/* Membership */
.vd-membership-body .vd-card__title { font-family: var(--vd-font-serif); font-size: var(--vd-fs-h1); text-align: center; font-style: italic; font-weight: 400; }
.vd-membership-body .vd-card__body { background: none; }
.vd-membership-body .vd-card:nth-child(4) { margin-top: 50px; }
.vd-membership-body .vd-head-marquee { position: absolute; top: 50%; transform: translateY(-50%); }
.vd-membership-body .vd-card__media { border-radius: var(--vd-radius-md); } 

/* Article / event cards */
.vd-article-card { border-radius: var(--vd-radius-md); }
.vd-article-card .vd-card__media { aspect-ratio: 16 / 10; }
.vd-article-card .vd-eyebrow { margin-top: 0; }
.vd-article-card .vd-card__title { font-size: var(--vd-fs-h1); font-family: var(--vd-font-serif); font-style: italic; font-weight: 400; }
.vd-article-card .vd-card__meta { font-size:var(--vd-fs-body); margin: 0; }
.vd-event-card { position: relative; border-radius: var(--vd-radius-lg); overflow: hidden; aspect-ratio: 829 / 436; color: var(--vd-cream); display: flex; align-items: flex-end; }
.vd-event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vd-event-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.65)); }
.vd-event-card__body { position: relative; z-index: 2; padding: 28px; width: 100%; }
.vd-event-card__date { display: inline-flex; gap: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: var(--vd-fs-xs); }

/* ---- Promo split (My Wine Journal / Get in Touch) ---------------------- */
.vd-promo { display: grid; grid-template-columns: 1fr 2fr; align-items: stretch; }
.vd-promo__media img { width: 100%; height: 100%; object-fit: cover; }
.vd-promo__content { padding: 80px var(--vd-gutter); display: flex; flex-direction: column; justify-content: center; align-items: center; background: var(--vd-white); }
.vd-promo__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.vd-promo__feature h4 { font-size: var(--vd-fs-h3); margin: 16px 0 8px; text-align: center; }
.vd-promo__feature p { color: var(--vd-muted); font-size: var(--vd-fs-sm); margin: 0; text-align: center; }
@media (max-width: 1024px) {
	.vd-promo { grid-template-columns: 1fr; }
	.vd-promo__features { grid-template-columns: 1fr; }
	.vd-promo__content { padding: 48px var(--vd-gutter); }
}

/* ---- Testimonials ------------------------------------------------------ */
.vd-testimonial { background: var(--vd-surface); border: 1px solid var(--vd-border-soft); border-radius: var(--vd-radius-md); padding: 24px; }
.vd-testimonial__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vd-testimonial__user { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.vd-testimonial__avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--vd-surface-2); }
.vd-testimonial__rating { display: inline-flex; gap: 4px; align-items: center; color: var(--vd-ink); }
.vd-testimonial p { margin: 0; font-size: var(--vd-fs-sm); }

/* ---- Footer ------------------------------------------------------------ */
.vd-footer { background: var(--vd-paper); }

.vd-footer__partners { padding: 48px var(--vd-gutter); text-align: center; }
.vd-footer__partners .vd-eyebrow { color: var(--vd-muted); margin-bottom: 28px; display: block; }
.vd-footer__partner-logos { display: flex; flex-wrap: wrap; gap: 64px; align-items: center; justify-content: center; }
.vd-footer__partner { font-family: var(--vd-font-serif); font-style: italic; font-size: 22px; color: var(--vd-ink); opacity: 0.85; }

/* Lime band */
.vd-footer__band { background: var(--vd-accent); color: var(--vd-ink); }
.vd-footer__grid { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 64px; padding-block: 64px; }

.vd-footer__logo { font-family: var(--vd-font-logo); font-weight: 500; font-size: 64px; line-height: 1; letter-spacing: -1px; text-transform: lowercase; color: var(--vd-wine-logo); display: inline-block; margin-bottom: 28px; }

.vd-footer__news { background: var(--vd-coral); color: #fff; padding: 28px; max-width: 440px; }
.vd-footer__news h3 { font-family: var(--vd-font-sans); font-weight: 700; font-size: var(--vd-fs-h3); line-height: 1.2; margin: 0 0 18px; }
.vd-footer__news-row p { display: flex; align-items: center; gap: 12px; border-bottom: 1.5px solid rgba(255,255,255,0.7); padding-bottom: 8px; }
.vd-footer__news-row input { flex: 1; border: 0; background: transparent; color: #fff; font-family: var(--vd-font-sans); font-size: var(--vd-fs-sm); font-weight: 600; }
.vd-footer__news-row input::placeholder { color: rgba(255,255,255,0.8); }
.vd-footer__news-row input:focus { outline: none; }
.vd-footer__news-row button { background: transparent; border: 0; color: #fff; font-size: 22px; line-height: 1; }

.vd-footer__top { display: grid;  grid-template-columns: repeat(2, 1fr);  gap: 40px; }
.vd-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.vd-footer__contact li { display: flex; align-items: center; gap: 12px; font-size: var(--vd-fs-sm); font-weight: 600; }
.vd-footer__contact a:hover { text-decoration: underline; }
.vd-social { display: flex; gap: 16px; align-items: flex-start; }
.vd-social a { display: inline-flex; color: var(--vd-ink); }
.vd-social a:hover { opacity: 0.6; }

.vd-footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.vd-footer__col { display: flex; flex-direction: column; }
.vd-footer__col li:marker { display: none; }
.vd-footer__col a { padding: 7px 0; color: var(--vd-wine); font-size: var(--vd-fs-sm); font-weight: 600; }
.vd-footer__col a:hover { text-decoration: underline; }

.vd-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-block: 28px; border-top: 1px solid rgba(30,8,20,0.15); font-size: var(--vd-fs-xs); letter-spacing: 0.5px; text-transform: uppercase; }
.vd-footer__legal a:hover { text-decoration: underline; }
.vd-footer__legal span { opacity: 0.4; margin-inline: 6px; }

@media (max-width: 900px) {
	.vd-footer__grid { grid-template-columns: 1fr; gap: 40px; padding-block: 48px; }
	.vd-footer__logo { font-size: 48px; }
	.vd-footer__top { flex-direction: column; gap: 24px; }
	.vd-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
	.vd-footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
	.vd-footer__partner-logos { gap: 32px; }
}

/* ---- Forms (custom tour, contact) -------------------------------------- */
.vd-form { display: grid; gap: 24px; padding: 24px 0; }
.vd-field { display: grid; gap: 8px; }
.vd-field > label { font-family: var(--vd-font-sans); font-weight: 700; font-size: var(--vd-fs-sm); letter-spacing: 0.5px; }
.vd-field input,
.vd-field select,
.vd-field textarea {
	width: 100%;
	padding: 0 0 14px 10px;
	border: 1px solid var(--vd-border);
	background: var(--vd-white);
	font-family: var(--vd-font-sans);
	font-size: var(--vd-fs-sm);
	color: var(--vd-ink);
}
.vd-field input:focus,
.vd-field select:focus,
.vd-field textarea:focus { outline: 2px solid var(--vd-ink-30); border-color: var(--vd-ink); }
.vd-field--check { grid-auto-flow: column; justify-content: start; align-items: center; gap: 12px; }
.vd-field--check input { width: auto; }
.vd-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .vd-form__row { grid-template-columns: 1fr; } }
.vd-form__notice { padding: 14px 18px; border-radius: var(--vd-radius-sm); font-size: var(--vd-fs-sm); }
.vd-form__notice--error { background: #fbe9e3; color: var(--vd-danger); }

/* ---- Page hero (interior pages) ---------------------------------------- */
.vd-page-hero { padding: 160px var(--vd-gutter) 64px; text-align: center; background: var(--vd-cream); }
.vd-page-hero .vd-title-page { margin: 0; }
.vd-page-hero p { color: var(--vd-muted); margin: 16px auto 0; max-width: 640px; }

/* ---- Carousel rail ----------------------------------------------------- */
.vd-rail { display: flex; gap: var(--vd-gap); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.vd-rail::-webkit-scrollbar { display: none; }
.vd-rail > * { scroll-snap-align: start; flex: 0 0 auto; }
.vd-rail--dest > * { width: min(420px, 80vw); }
.vd-rail--event > * { width: min(560px, 88vw); }
.vd-rail-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }

/* ---- Plan a Visit: multi-step Custom Tour form ------------------------- */
.vd-ct-form { background: var(--vd-surface); border-radius: var(--vd-radius-lg); padding: 48px var(--vd-gutter); max-width: 1140px; margin-inline: auto; }
.vd-ct-progress { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; list-style: none; margin: 0 0 48px; padding: 0; counter-reset: step; }
.vd-ct-progress__dot { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; position: relative; }
.vd-ct-progress__dot::before { content: ""; position: absolute; top: 19px; left: -50%; width: 100%; height: 2px; background: var(--vd-border); z-index: 0; }
.vd-ct-progress__dot:first-child::before { display: none; }
.vd-ct-progress__num { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--vd-border); color: var(--vd-white); font-weight: 700; position: relative; z-index: 1; }
.vd-ct-progress__dot.is-active .vd-ct-progress__num,
.vd-ct-progress__dot.is-done .vd-ct-progress__num { background: var(--vd-ink); }
.vd-ct-progress__label { font-size: var(--vd-fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--vd-muted); max-width: 120px; line-height: 1.1; }
.vd-ct-progress__dot.is-active .vd-ct-progress__label { color: var(--vd-ink); }
@media (max-width: 700px) {
	.vd-ct-progress__label { display: none; }
	.vd-ct-progress__dot::before { top: 19px; }
}

.vd-ct-step { border: 0; margin: 0; padding: 0; }
.vd-ct-step select, .vd-ct-step input {padding: 10px;}
.vd-ct-step__head { text-align: center; margin-bottom: 32px; }
.vd-ct-step__head .vd-title-page { margin: 4px 0 0; }
.vd-ct-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; }
.vd-ct-nav .vd-btn:only-child { margin-left: auto; }

.vd-options { display: grid; }
.vd-option { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1px solid var(--vd-border); border-radius: var(--vd-radius-sm); background: var(--vd-white); cursor: pointer; font-size: var(--vd-fs-sm); transition: border-color var(--vd-dur), background var(--vd-dur); }
.vd-option:hover { border-color: var(--vd-ink); }
.vd-option input { margin-top: 2px; width: auto; accent-color: var(--vd-ink); }
.vd-option:has(input:checked) { border-color: var(--vd-ink); background: var(--vd-cream); }
.vd-field__help { font-size: var(--vd-fs-xs); }
.has-error { border-color: var(--vd-danger) !important; }

/* ---- Contact split ----------------------------------------------------- */
.vd-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.vd-contact__info p { margin: 0 0 12px; }
@media (max-width: 900px) { .vd-contact { grid-template-columns: 1fr; gap: 40px; } }

/* ---- Prose (post/page body) -------------------------------------------- */
.vd-prose { font-size: var(--vd-fs-body); line-height: 1.6; }
.vd-prose h2 { font-family: var(--vd-font-serif); font-style: italic; font-weight: 300; font-size: var(--vd-fs-subtitle); margin: 1.4em 0 .5em; }
.vd-prose h3 { font-size: var(--vd-fs-h1); margin: 1.2em 0 .5em; }
.vd-prose p { margin: 0 0 1.1em; }
.vd-prose img { border-radius: var(--vd-radius-md); margin: 1em 0; }
.vd-prose a { text-decoration: underline; text-underline-offset: 3px; }
.vd-prose blockquote { border-left: 3px solid var(--vd-accent); margin: 1.5em 0; padding-left: 24px; font-family: var(--vd-font-serif); font-style: italic; font-size: var(--vd-fs-h3); }
.vd-list { list-style: none; padding: 0; margin: 16px 0; }
.vd-list li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid var(--vd-border-soft); }
.vd-list li::before { content: "✦"; position: absolute; left: 0; color: var(--vd-accent); }

/* ---- Utilities --------------------------------------------------------- */
.vd-center { text-align: center; }
.vd-mt-24 { margin-top: 24px; }
.vd-mt-40 { margin-top: 40px; }
.vd-flex-center { display: flex; align-items: center; justify-content: center; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
