/* =============================================================
   VINEXOS THEME – main.css
   ============================================================= */

/* --------- RESET & BASE --------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
	--vx-gold: #C9A961;
	--vx-gold-dark: #B8954F;
	--vx-gold-light: #E6D5A8;
	--vx-gold-tint: #FAF5EA;
	--vx-text: #1a1a1a;
	--vx-text-muted: #6b6b6b;
	--vx-text-light: #9b9b9b;
	--vx-bg: #ffffff;
	--vx-bg-soft: #FBF8F2;
	--vx-border: #ECE6D6;
	--vx-radius: 14px;
	--vx-shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
	--vx-shadow-md: 0 8px 24px rgba(26, 26, 26, 0.06);
	--vx-shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.08);
	--vx-transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
	--vx-container: 1240px;
	--vx-container-narrow: 820px;

	--vx-font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--vx-font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--vx-font-serif: 'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
	font-family: var(--vx-font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--vx-text);
	background: var(--vx-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vx-gold-dark); text-decoration: none; transition: var(--vx-transition); }
a:hover { color: var(--vx-gold); }
h1, h2, h3, h4, h5, h6 { font-family: var(--vx-font-display); color: var(--vx-text); margin: 0 0 0.6em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }

/* Accessibility */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal;
}
.skip-link {
	position: absolute; left: -9999px; top: 12px; background: var(--vx-text); color: #fff;
	padding: .7rem 1.2rem; z-index: 9999; border-radius: 6px;
}
.skip-link:focus { left: 12px; color: #fff; }

/* --------- CONTAINER --------- */
.vx-container {
	width: 100%;
	max-width: var(--vx-container);
	margin: 0 auto;
	padding: 0 24px;
}
.vx-container--narrow { max-width: var(--vx-container-narrow); }

/* --------- SECTION HELPERS --------- */
.vx-section { padding: 100px 0; }
.vx-section__title {
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -.01em;
	text-align: center;
	margin: 0.4em 0 0.6em;
}
.vx-section__title--left { text-align: left; margin-left: 0; }
.vx-section__divider {
	width: 60px; height: 2px;
	background: var(--vx-gold);
	margin: 1rem auto 3.5rem;
	position: relative;
}
.vx-section__divider::before,
.vx-section__divider::after {
	content: ''; position: absolute; top: 50%; width: 6px; height: 6px;
	background: var(--vx-gold); border-radius: 50%; transform: translateY(-50%);
}
.vx-section__divider::before { left: -14px; }
.vx-section__divider::after { right: -14px; }

.vx-eyebrow {
	color: var(--vx-gold);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 1rem;
}

/* --------- BUTTONS --------- */
.vx-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.85em 1.6em;
	border-radius: 8px;
	font-family: var(--vx-font-body);
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: var(--vx-transition);
	white-space: nowrap;
	line-height: 1;
}
.vx-btn__arrow {
	width: 16px; height: 16px; flex-shrink: 0;
	transition: transform 0.25s ease;
}
.vx-btn:hover .vx-btn__arrow { transform: translateX(3px); }

.vx-btn--primary {
	background: var(--vx-gold);
	color: #fff;
	border-color: var(--vx-gold);
}
.vx-btn--primary:hover {
	background: var(--vx-gold-dark);
	border-color: var(--vx-gold-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.vx-btn--ghost {
	background: transparent;
	color: var(--vx-text);
	border-color: var(--vx-border);
}
.vx-btn--ghost:hover {
	background: var(--vx-text);
	color: #fff;
	border-color: var(--vx-text);
}

/* --------- HEADER --------- */
.vx-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--vx-border);
	position: sticky;
	top: 0;
	z-index: 100;
}
.vx-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
	padding-top: 14px;
	padding-bottom: 14px;
}
.vx-header__brand { flex-shrink: 0; }
.vx-brand-link { display: inline-flex; }
.vx-brand-logo,
.custom-logo {
	height: 64px;
	width: auto;
	object-fit: contain;
}

.vx-nav { display: flex; align-items: center; }
.vx-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 38px;
	align-items: center;
}
.vx-nav-menu li { display: inline-block; }
.vx-nav-menu a {
	color: var(--vx-text);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 8px 0;
	position: relative;
	transition: color 0.2s;
}
.vx-nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--vx-gold);
	transition: width 0.25s ease;
}
.vx-nav-menu a:hover,
.vx-nav-menu .current_page_item > a,
.vx-nav-menu .current-menu-item > a {
	color: var(--vx-gold);
}
.vx-nav-menu a:hover::after,
.vx-nav-menu .current_page_item > a::after,
.vx-nav-menu .current-menu-item > a::after {
	width: 24px;
}

.vx-nav__toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 10px;
	cursor: pointer;
}
.vx-nav__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--vx-text);
	margin: 5px 0;
	transition: var(--vx-transition);
}
.vx-nav__toggle[aria-expanded="true"] .vx-nav__bar:nth-child(2) { transform: rotate(45deg) translate(5px, 5px); }
.vx-nav__toggle[aria-expanded="true"] .vx-nav__bar:nth-child(3) { opacity: 0; }
.vx-nav__toggle[aria-expanded="true"] .vx-nav__bar:nth-child(4) { transform: rotate(-45deg) translate(5px, -5px); }

/* --------- HERO --------- */
.vx-hero {
	background: linear-gradient(180deg, #FBF8F2 0%, #ffffff 100%);
	padding: 60px 0 80px;
	position: relative;
	overflow: hidden;
}
.vx-hero::before {
	content: '';
	position: absolute;
	top: -100px; right: -100px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
	border-radius: 0%;
	pointer-events: none;
}
.vx-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: center;
}
.vx-hero__eyebrow {
	color: var(--vx-gold);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 0 0 1.5rem;
}
.vx-hero__title {
	font-size: clamp(2rem, 4.4vw, 3.4rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 1.5rem;
	font-weight: 700;
}
.vx-hero__title-line { display: block; }
.vx-hero__title-line--accent { color: var(--vx-gold); }
.vx-hero__subtitle {
	font-size: 1.05rem;
	color: var(--vx-text-muted);
	max-width: 480px;
	margin: 0 0 2rem;
	line-height: 1.7;
}
.vx-hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}
.vx-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	padding-top: 1.5rem;
	border-top: 1px solid var(--vx-border);
}
.vx-stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.vx-stat__icon {
	width: 28px; height: 28px;
	color: var(--vx-gold);
}
.vx-stat__value {
	font-size: 1.55rem;
	font-weight: 700;
	color: var(--vx-text);
	margin: 0;
	line-height: 1;
}
.vx-stat__value--small {
	font-size: 1.05rem;
}
.vx-stat__label {
	font-size: 0.8rem;
	color: var(--vx-text-muted);
	margin: 0;
}

.vx-hero__visual {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	box-shadow: var(--vx-shadow-lg);
}
.vx-hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

/* --------- SERVICES --------- */
.vx-services { background: #fff; }
.vx-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}
.vx-service-card {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 32px 26px;
	transition: var(--vx-transition);
	display: flex;
	flex-direction: column;
}
.vx-service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--vx-shadow-lg);
	border-color: var(--vx-gold-light);
}
.vx-service-card__icon {
	color: var(--vx-gold);
	margin-bottom: 16px;
}
.vx-service-card__icon svg {
	width: 38px; height: 38px;
}
.vx-service-card__title {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
	line-height: 1.4;
	min-height: 2.8em;
}
.vx-service-card__image {
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 22px;
	aspect-ratio: 2 / 1;
	background: #f0f0f0;
}
.vx-service-card__image svg {
	width: 100%; height: 100%; display: block;
}
.vx-service-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.88rem;
	color: var(--vx-text-muted);
}
.vx-service-card__list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	line-height: 1.5;
}
.vx-service-card__list li::before {
	content: '›';
	position: absolute;
	left: 0;
	color: var(--vx-gold);
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.4;
}
.vx-services__cta { text-align: center; }

/* --------- WHY --------- */
.vx-why {
	background: var(--vx-bg-soft);
	padding-top: 80px;
	padding-bottom: 80px;
	border-top: 1px solid var(--vx-border);
	border-bottom: 1px solid var(--vx-border);
}
.vx-why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 30px;
	position: relative;
}
.vx-why__grid::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 25%; right: 25%;
	height: 1px;
	background: var(--vx-border);
	z-index: 0;
}
.vx-why__item {
	text-align: center;
	padding: 0 12px;
	position: relative;
	z-index: 1;
}
.vx-why__icon {
	color: var(--vx-gold);
	display: inline-flex;
	background: var(--vx-bg-soft);
	padding: 0 14px;
	margin-bottom: 18px;
}
.vx-why__icon svg {
	width: 40px; height: 40px;
}
.vx-why__value {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--vx-text);
	margin: 0 0 6px;
	line-height: 1;
}
.vx-why__value--text {
	color: var(--vx-gold);
	font-size: 1.5rem;
	letter-spacing: 0.04em;
}
.vx-why__label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--vx-text);
	margin: 0 0 12px;
}
.vx-why__text {
	font-size: 0.9rem;
	color: var(--vx-text-muted);
	margin: 0;
	line-height: 1.55;
}

/* --------- ABOUT --------- */
.vx-about { background: #fff; padding-top: 100px; padding-bottom: 100px; }
.vx-about__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 90px;
	align-items: center;
}
.vx-about__visual {
	border-radius: var(--vx-radius);
	overflow: hidden;
	box-shadow: var(--vx-shadow-lg);
}
.vx-about__visual img {
	width: 100%; height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
}
.vx-about__content .vx-eyebrow { text-align: left; }
.vx-about__text {
	color: var(--vx-text-muted);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}
.vx-about__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}
.vx-about__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	color: var(--vx-text);
	font-weight: 500;
	font-size: 0.98rem;
}
.vx-about__check {
	width: 22px; height: 22px;
	color: var(--vx-gold);
	flex-shrink: 0;
}

/* --------- PROCESS --------- */
.vx-process {
	background: var(--vx-bg-soft);
	border-top: 1px solid var(--vx-border);
	border-bottom: 1px solid var(--vx-border);
}
.vx-process__steps {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-top: 50px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.vx-process__step {
	flex: 1;
	text-align: center;
	padding: 0 8px;
}
.vx-process__icon {
	width: 76px; height: 76px;
	margin: 0 auto 18px;
	border: 1.5px solid var(--vx-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vx-gold);
	background: #fff;
	transition: var(--vx-transition);
}
.vx-process__step:hover .vx-process__icon {
	background: var(--vx-gold);
	color: #fff;
	transform: translateY(-4px);
}
.vx-process__icon svg { width: 30px; height: 30px; }
.vx-process__title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 8px;
	letter-spacing: 0.02em;
}
.vx-process__text {
	font-size: 0.85rem;
	color: var(--vx-text-muted);
	margin: 0;
	line-height: 1.55;
}
.vx-process__arrow {
	flex-shrink: 0;
	color: var(--vx-gold);
	padding-top: 26px;
	opacity: 0.5;
}
.vx-process__arrow svg { width: 22px; height: 22px; }

/* --------- CTA BANNER --------- */
.vx-cta-banner {
	background: #fff;
	padding: 60px 0 80px;
}
.vx-cta-banner__inner {
	background: linear-gradient(135deg, #FBF8F2 0%, #FAF5EA 100%);
	border: 1px solid var(--vx-gold-light);
	border-radius: var(--vx-radius);
	padding: 36px 44px;
	display: flex;
	align-items: center;
	gap: 28px;
	box-shadow: var(--vx-shadow-md);
}
.vx-cta-banner__icon {
	width: 64px; height: 64px;
	background: #fff;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--vx-gold);
	flex-shrink: 0;
	box-shadow: var(--vx-shadow-sm);
}
.vx-cta-banner__icon svg { width: 28px; height: 28px; }
.vx-cta-banner__content { flex: 1; }
.vx-cta-banner__title {
	font-size: 1.3rem; font-weight: 700; margin: 0 0 4px;
}
.vx-cta-banner__text {
	color: var(--vx-text-muted); margin: 0; font-size: 0.96rem;
}

/* --------- FOOTER --------- */
.vx-footer {
	background: #fff;
	border-top: 1px solid var(--vx-border);
	padding: 70px 0 24px;
}
.vx-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 50px;
}
.vx-footer__logo,
.vx-footer .custom-logo {
	height: 64px; width: auto;
	margin-bottom: 16px;
}
.vx-footer__tagline {
	color: var(--vx-text-muted);
	font-size: 0.92rem;
	line-height: 1.65;
	max-width: 340px;
	margin: 0;
}
.vx-footer__heading {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--vx-text);
	margin: 0 0 18px;
	text-transform: uppercase;
}
.vx-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.vx-footer__list li { margin-bottom: 10px; }
.vx-footer__list a {
	color: var(--vx-text-muted);
	font-size: 0.92rem;
	transition: color 0.2s;
}
.vx-footer__list a:hover { color: var(--vx-gold); }
.vx-footer__contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--vx-text-muted);
	font-size: 0.92rem;
}
.vx-footer__icon {
	width: 18px; height: 18px;
	color: var(--vx-gold);
	flex-shrink: 0;
}
.vx-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}
.vx-footer__social a {
	width: 36px; height: 36px;
	border: 1px solid var(--vx-border);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--vx-text-muted);
	transition: var(--vx-transition);
}
.vx-footer__social a:hover {
	background: var(--vx-gold);
	color: #fff;
	border-color: var(--vx-gold);
	transform: translateY(-2px);
}
.vx-footer__social svg { width: 16px; height: 16px; }
.vx-footer__bottom {
	border-top: 1px solid var(--vx-border);
	padding-top: 22px;
	text-align: center;
}
.vx-footer__bottom p {
	color: var(--vx-text-light);
	font-size: 0.85rem;
	margin: 0;
}

/* --------- CONTACT PAGE --------- */
.vx-contact { background: linear-gradient(180deg, #FBF8F2 0%, #ffffff 60%); }
.vx-contact__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 60px;
}
.vx-contact__lead {
	font-size: 1.05rem;
	color: var(--vx-text-muted);
	line-height: 1.7;
	margin: 1rem 0 0;
}
.vx-contact__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.4fr;
	gap: 40px;
	align-items: flex-start;
	max-width: 1100px;
	margin: 0 auto;
}
.vx-contact__info {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 36px 32px;
	box-shadow: var(--vx-shadow-sm);
}
.vx-contact__info-title {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 28px;
}
.vx-contact__row {
	display: flex;
	gap: 14px;
	margin-bottom: 22px;
	align-items: flex-start;
}
.vx-contact__icon {
	width: 40px; height: 40px;
	background: var(--vx-gold-tint);
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	color: var(--vx-gold);
	flex-shrink: 0;
}
.vx-contact__icon svg { width: 18px; height: 18px; }
.vx-contact__label {
	font-size: 0.78rem;
	color: var(--vx-text-light);
	margin: 0 0 2px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}
.vx-contact__value {
	color: var(--vx-text);
	font-weight: 500;
	display: block;
	margin: 0;
}
a.vx-contact__value:hover { color: var(--vx-gold); }
.vx-contact__note {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--vx-border);
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.85rem;
	color: var(--vx-text-muted);
}
.vx-contact__note svg { width: 18px; height: 18px; color: var(--vx-gold); flex-shrink: 0; }

.vx-contact__form-wrap {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 40px 36px;
	box-shadow: var(--vx-shadow-md);
}
.vx-contact__custom {
	max-width: 800px;
	margin: 50px auto 0;
}

/* --------- FORMS --------- */
.vx-form { display: flex; flex-direction: column; gap: 22px; }
.vx-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.vx-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.vx-form__field label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--vx-text);
}
.vx-form__req { color: var(--vx-gold); }
.vx-form__field input[type="text"],
.vx-form__field input[type="email"],
.vx-form__field input[type="tel"],
.vx-form__field textarea {
	font-family: var(--vx-font-body);
	font-size: 0.95rem;
	padding: 12px 14px;
	border: 1.5px solid var(--vx-border);
	border-radius: 8px;
	background: #fff;
	color: var(--vx-text);
	transition: border-color 0.2s, box-shadow 0.2s;
	width: 100%;
}
.vx-form__field input:focus,
.vx-form__field textarea:focus {
	outline: none;
	border-color: var(--vx-gold);
	box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}
.vx-form__field textarea { resize: vertical; min-height: 140px; }
.vx-form__field--checkbox label {
	display: flex; align-items: flex-start; gap: 10px;
	font-weight: 400; font-size: 0.86rem;
	color: var(--vx-text-muted);
	cursor: pointer;
	line-height: 1.55;
}
.vx-form__field--checkbox input[type="checkbox"] {
	margin-top: 3px; accent-color: var(--vx-gold);
	width: 16px; height: 16px;
}
.vx-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important; height: 1px !important;
	overflow: hidden;
}
.vx-form__submit {
	align-self: flex-start;
	font-size: 1rem;
	padding: 1em 1.8em;
}

/* Alerts */
.vx-alert {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 18px;
	border-radius: 10px;
	margin-bottom: 24px;
	font-size: 0.92rem;
	line-height: 1.5;
	border: 1px solid;
}
.vx-alert svg { width: 22px; height: 22px; flex-shrink: 0; }
.vx-alert--success {
	background: #f1faf3;
	color: #1e6b3a;
	border-color: #b9e3c5;
}
.vx-alert--error {
	background: #fdf1f1;
	color: #963131;
	border-color: #f0c5c5;
}

/* --------- LEGAL PAGES --------- */
.vx-legal { background: linear-gradient(180deg, #FBF8F2 0%, #ffffff 40%); }
.vx-legal__header {
	text-align: left;
	margin-bottom: 40px;
}
.vx-legal__header .vx-eyebrow { text-align: left; }
.vx-legal__content {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 42px 48px;
	box-shadow: var(--vx-shadow-sm);
}
.vx-legal__content h2 {
	font-size: 1.25rem;
	margin-top: 1.6em;
	margin-bottom: 0.7em;
	color: var(--vx-text);
	padding-bottom: 0.4em;
	border-bottom: 1px solid var(--vx-border);
}
.vx-legal__content h2:first-child { margin-top: 0; }
.vx-legal__content h3 {
	font-size: 1.05rem;
	margin-top: 1.4em;
	color: var(--vx-text);
}
.vx-legal__content p, .vx-legal__content li {
	color: var(--vx-text-muted);
	line-height: 1.75;
}
.vx-legal__content a { color: var(--vx-gold-dark); }
.vx-legal__content a:hover { text-decoration: underline; }

/* --------- BLOG / PAGE --------- */
.vx-page { padding: 0; }
.vx-page__header { margin-bottom: 30px; }
.vx-page__thumb { margin-bottom: 30px; border-radius: var(--vx-radius); overflow: hidden; }
.vx-page__content {
	font-size: 1.02rem; line-height: 1.75; color: var(--vx-text);
}
.vx-page__content h2, .vx-page__content h3 { margin-top: 1.4em; }

.vx-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}
.vx-blog-card {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	overflow: hidden;
	transition: var(--vx-transition);
}
.vx-blog-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-md); }
.vx-blog-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.vx-blog-card__body { padding: 24px; }
.vx-blog-card__title { font-size: 1.2rem; margin: 0 0 8px; }
.vx-blog-card__title a { color: var(--vx-text); }
.vx-blog-card__title a:hover { color: var(--vx-gold); }
.vx-blog-card__meta { font-size: 0.82rem; color: var(--vx-text-light); margin-bottom: 12px; }
.vx-blog-card__excerpt { color: var(--vx-text-muted); margin-bottom: 16px; font-size: 0.95rem; }

.vx-pagination { margin-top: 50px; text-align: center; }
.vx-pagination .page-numbers {
	display: inline-block; padding: 8px 14px; margin: 0 4px;
	border: 1px solid var(--vx-border); border-radius: 8px;
	color: var(--vx-text); text-decoration: none; transition: var(--vx-transition);
}
.vx-pagination .page-numbers:hover,
.vx-pagination .page-numbers.current {
	background: var(--vx-gold); color: #fff; border-color: var(--vx-gold);
}

/* --------- 404 --------- */
.vx-404 { padding: 120px 0; }
.vx-404 .vx-eyebrow {
	font-size: 4rem;
	letter-spacing: 0;
	margin-bottom: 0;
}

/* --------- RESPONSIVE --------- */
@media (max-width: 1024px) {
	.vx-services__grid { grid-template-columns: repeat(2, 1fr); }
	.vx-why__grid { grid-template-columns: repeat(2, 1fr); }
	.vx-why__grid::before { display: none; }
	.vx-footer__grid { grid-template-columns: 1fr 1fr; }
	.vx-process__steps { flex-direction: column; gap: 24px; }
	.vx-process__step { width: 100%; }
	.vx-process__arrow { transform: rotate(90deg); padding: 0; }
	.vx-hero__grid { grid-template-columns: 1fr; gap: 40px; }
	.vx-hero__subtitle { max-width: 100%; }
	.vx-about__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
	.vx-section { padding: 60px 0; }
	.vx-hero { padding: 40px 0 60px; }
	.vx-header__cta { display: none; }

	.vx-nav__toggle { display: block; order: 2; }
	.vx-nav-menu {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		flex-direction: column;
		gap: 0;
		padding: 16px 24px;
		border-bottom: 1px solid var(--vx-border);
		display: none;
		box-shadow: var(--vx-shadow-md);
	}
	.vx-nav__toggle[aria-expanded="true"] + #primary-menu,
	.vx-nav__toggle[aria-expanded="true"] ~ ul#primary-menu,
	.vx-nav-menu.is-open {
		display: flex;
	}
	.vx-nav-menu li { width: 100%; }
	.vx-nav-menu a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid var(--vx-border);
		width: 100%;
	}
	.vx-nav-menu a::after { display: none; }

	.vx-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
	.vx-services__grid { grid-template-columns: 1fr; }
	.vx-why__grid { grid-template-columns: 1fr; gap: 26px; }
	.vx-footer__grid { grid-template-columns: 1fr; gap: 40px; }
	.vx-cta-banner__inner { flex-direction: column; text-align: center; gap: 18px; padding: 30px 24px; }
	.vx-contact__grid { grid-template-columns: 1fr; }
	.vx-form__row { grid-template-columns: 1fr; }
	.vx-legal__content { padding: 28px 22px; }
	.vx-contact__form-wrap { padding: 28px 22px; }
	.vx-hero__cta .vx-btn { flex: 1; justify-content: center; }
	.vx-brand-logo, .custom-logo { height: 44px; }
}

@media (max-width: 480px) {
	.vx-section__title { font-size: 1.6rem; }
	.vx-hero__title { font-size: 1.9rem; }
	.vx-hero__stats { grid-template-columns: 1fr 1fr; }
	.vx-container { padding: 0 18px; }
}

/* WordPress core classes */
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--vx-text-muted); text-align: center; margin-top: .5em; }

/* Scroll states & reveal animations */
.vx-header.is-scrolled {
	box-shadow: 0 2px 14px rgba(26, 26, 26, 0.06);
	background: rgba(255, 255, 255, 0.96);
}

.vx-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s cubic-bezier(.2,.6,.2,1), transform 0.6s cubic-bezier(.2,.6,.2,1);
}
.vx-revealed {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.vx-reveal, .vx-revealed { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* =============================================================
   VINEXOS – Erweiterungen (v1.1.0)
   Launch-Banner · Projekte · VINEXOS App-Seite · Modelle
   ============================================================= */

/* --------- BUTTON: light (für farbige Flächen) --------- */
.vx-btn--light {
	background: #fff;
	color: var(--vx-gold-dark);
	border-color: #fff;
}
.vx-btn--light:hover {
	background: var(--vx-gold-tint);
	color: var(--vx-gold-dark);
	border-color: var(--vx-gold-tint);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* --------- LAUNCH BANNER --------- */
.vx-launch { padding: 28px 0 4px; }
.vx-launch__inner {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 30px 40px;
	border-radius: var(--vx-radius);
	background: linear-gradient(120deg, var(--vx-gold) 0%, var(--vx-gold-dark) 100%);
	color: #fff;
	box-shadow: 0 18px 50px rgba(184, 149, 79, 0.30);
}
.vx-launch__inner::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 88% -10%, rgba(255, 255, 255, 0.22), transparent 45%),
		radial-gradient(circle at 10% 120%, rgba(255, 255, 255, 0.14), transparent 40%);
	pointer-events: none;
}
.vx-launch__main { position: relative; z-index: 1; }
.vx-launch__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.vx-launch__badge {
	background: #fff;
	color: var(--vx-gold-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 20px;
}
.vx-launch__date {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.82rem;
	font-weight: 600;
	color: #fff;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	padding: 5px 12px;
	border-radius: 20px;
}
.vx-launch__date svg { width: 15px; height: 15px; }
.vx-launch__title {
	color: #fff;
	font-size: clamp(1.25rem, 2.4vw, 1.7rem);
	font-weight: 700;
	margin: 0 0 6px;
	line-height: 1.25;
}
.vx-launch__text {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.98rem;
	line-height: 1.6;
	margin: 0;
	max-width: 640px;
}
.vx-launch__cta {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	flex-shrink: 0;
}
.vx-launch__note {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.85);
	text-align: right;
}

/* --------- PROJECTS PAGE --------- */
.vx-projects-head { padding-bottom: 0; background: linear-gradient(180deg, #FBF8F2 0%, #ffffff 70%); }
.vx-projects-head__lead {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	color: var(--vx-text-muted);
	font-size: 1.05rem;
	line-height: 1.7;
}
.vx-projects { padding-top: 60px; }
.vx-projects__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}
.vx-project-card {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--vx-transition);
}
.vx-project-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--vx-shadow-lg);
	border-color: var(--vx-gold-light);
}
.vx-project-card__image {
	position: relative;
	aspect-ratio: 2 / 1;
	background: #f0f0f0;
	overflow: hidden;
}
.vx-project-card__image svg { width: 100%; height: 100%; display: block; }
.vx-project-card__cat {
	position: absolute;
	top: 12px; left: 12px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--vx-gold-dark);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 20px;
	box-shadow: var(--vx-shadow-sm);
	backdrop-filter: blur(4px);
}
.vx-project-card__body {
	padding: 24px 24px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.vx-project-card__title { font-size: 1.15rem; margin: 0 0 10px; }
.vx-project-card__desc {
	color: var(--vx-text-muted);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0 0 16px;
}
.vx-project-card__tags {
	list-style: none;
	padding: 0;
	margin: auto 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.vx-project-card__tags li {
	font-size: 0.74rem;
	font-weight: 600;
	color: var(--vx-text-muted);
	background: var(--vx-gold-tint);
	border: 1px solid var(--vx-border);
	border-radius: 6px;
	padding: 4px 9px;
}
.vx-project-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--vx-gold-dark);
}
.vx-project-card__link:hover { color: var(--vx-gold); }
.vx-project-card__link .vx-btn__arrow { width: 15px; height: 15px; }
.vx-projects__custom { max-width: 820px; margin: 50px auto 0; }

/* --------- VINEXOS APP – INTRO --------- */
.vx-vinexos-intro { background: linear-gradient(180deg, #FBF8F2 0%, #ffffff 72%); }
.vx-vinexos-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 60px;
	align-items: center;
}
.vx-vinexos-intro__content .vx-eyebrow { text-align: left; }
.vx-vinexos-intro__text {
	color: var(--vx-text-muted);
	font-size: 1.02rem;
	line-height: 1.75;
	margin-bottom: 1.4rem;
}
.vx-vinexos-intro__url {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-weight: 600;
	color: var(--vx-text);
	font-size: 0.95rem;
}
.vx-vinexos-intro__url svg { width: 18px; height: 18px; color: var(--vx-gold); }

/* --------- APP SHOT (Browser-Rahmen) --------- */
.vx-app-shot {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--vx-border);
	box-shadow: var(--vx-shadow-lg);
	background: #fff;
}
.vx-app-shot--wide { max-width: 960px; margin: 44px auto 0; }
.vx-app-shot__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 16px;
	background: #f3eee2;
	border-bottom: 1px solid var(--vx-border);
}
.vx-app-shot__dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: #d8c7a3;
}
.vx-app-shot__url {
	margin-left: 12px;
	font-size: 0.75rem;
	color: var(--vx-text-light);
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: 6px;
	padding: 3px 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.vx-app-shot__screen { background: #FBF8F2; }
.vx-app-shot__screen img,
.vx-app-shot__svg { display: block; width: 100%; height: auto; }
.vx-app-shot__caption {
	text-align: center;
	font-size: 0.85rem;
	color: var(--vx-text-muted);
	margin: 14px 0 0;
}

.vx-vinexos-dash { background: #fff; }

/* --------- PLANS / 3 MODELLE --------- */
.vx-plans { background: var(--vx-bg-soft); border-top: 1px solid var(--vx-border); border-bottom: 1px solid var(--vx-border); }
.vx-plans__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}
.vx-plan-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 38px 30px 32px;
	display: flex;
	flex-direction: column;
	transition: var(--vx-transition);
}
.vx-plan-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--vx-shadow-lg);
	border-color: var(--vx-gold-light);
}
.vx-plan-card--featured {
	border-color: var(--vx-gold);
	box-shadow: var(--vx-shadow-md);
}
.vx-plan-card__ribbon {
	position: absolute;
	top: -13px; left: 50%;
	transform: translateX(-50%);
	background: var(--vx-gold);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}
.vx-plan-card__name { font-size: 1.4rem; margin: 0 0 4px; }
.vx-plan-card__tagline { color: var(--vx-text-muted); font-size: 0.9rem; margin: 0 0 18px; }
.vx-plan-card__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding-bottom: 18px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--vx-border);
}
.vx-plan-card__amount { font-size: 1.9rem; font-weight: 800; color: var(--vx-text); line-height: 1; }
.vx-plan-card__period { font-size: 0.85rem; color: var(--vx-text-light); }
.vx-plan-card__features { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.vx-plan-card__features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.92rem;
	color: var(--vx-text-muted);
	margin-bottom: 12px;
}
.vx-plan-card__features svg { width: 18px; height: 18px; color: var(--vx-gold); flex-shrink: 0; margin-top: 2px; }
.vx-plan-card__btn { justify-content: center; width: 100%; }
.vx-plans__note { text-align: center; margin: 32px 0 0; color: var(--vx-text-muted); font-size: 0.92rem; }
.vx-plans__note a { font-weight: 600; }

/* --------- VINEXOS: Funktionen --------- */
.vx-vinexos-features { background: #fff; }
.vx-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.vx-feature {
	background: var(--vx-bg-soft);
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 30px 28px;
	transition: var(--vx-transition);
}
.vx-feature:hover {
	transform: translateY(-4px);
	box-shadow: var(--vx-shadow-md);
	border-color: var(--vx-gold-light);
}
.vx-feature__icon {
	width: 48px; height: 48px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 12px;
	background: var(--vx-gold-tint);
	color: var(--vx-gold-dark);
	margin-bottom: 16px;
}
.vx-feature__icon svg { width: 24px; height: 24px; }
.vx-feature__title { font-size: 1.15rem; margin: 0 0 8px; }
.vx-feature__text { color: var(--vx-text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* --------- VINEXOS: Zielgruppe --------- */
.vx-vinexos-audience { background: var(--vx-bg-soft); border-top: 1px solid var(--vx-border); }
.vx-audience-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.vx-audience {
	background: #fff;
	border: 1px solid var(--vx-border);
	border-radius: var(--vx-radius);
	padding: 28px 24px;
	border-top: 3px solid var(--vx-gold);
}
.vx-audience__title { font-size: 1.08rem; margin: 0 0 8px; }
.vx-audience__text { color: var(--vx-text-muted); font-size: 0.92rem; margin: 0; line-height: 1.6; }

/* --------- Kontakt: Registrierungs-Hinweis --------- */
.vx-reg-highlight {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--vx-gold-tint);
	border: 1px solid var(--vx-gold-light);
	border-radius: var(--vx-radius);
	padding: 18px 20px;
	margin-bottom: 24px;
}
.vx-reg-highlight svg { width: 24px; height: 24px; color: var(--vx-gold-dark); flex-shrink: 0; margin-top: 2px; }
.vx-reg-highlight strong { display: block; color: var(--vx-text); margin-bottom: 2px; }
.vx-reg-highlight span { color: var(--vx-text-muted); font-size: 0.92rem; line-height: 1.55; }

/* --------- RESPONSIVE (Erweiterungen) --------- */
@media (max-width: 1024px) {
	.vx-vinexos-intro__grid { grid-template-columns: 1fr; gap: 40px; }
	.vx-plans__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
	.vx-plan-card--featured { order: -1; }
	.vx-feature-grid { grid-template-columns: repeat(2, 1fr); }
	.vx-audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.vx-launch__inner { flex-direction: column; align-items: flex-start; gap: 22px; padding: 26px 24px; }
	.vx-launch__cta { align-items: flex-start; width: 100%; }
	.vx-launch__cta .vx-btn { width: 100%; justify-content: center; }
	.vx-launch__note { text-align: left; }
	.vx-projects__grid { grid-template-columns: 1fr; }
	.vx-app-shot__url { display: none; }
	.vx-feature-grid { grid-template-columns: 1fr; }
	.vx-audience-grid { grid-template-columns: 1fr; }
}
