/*
Theme Name: VipNoorConcierge
Theme URI:
Author:
Author URI:
Description: One-page concierge theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vipnoorconcierge
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   1. Variables
   ============================================================ */
:root {
	--bg: #F1EDE5;
	--ink: #16120D;
	--muted: #4E4233;
	--heading: #2F2114;
	--brown: #6E5746;
	--brown-dark: #5C4839;
	--cream: #F4F0E9;
	--line: rgba(22, 18, 13, 0.25);

	--footer-bg: #9C8A75;
	--footer-ink: #FBF8F3;
	--footer-muted: rgba(251, 248, 243, 0.72);
	--footer-line: rgba(251, 248, 243, 0.28);
	--green: #4E9D6B;

	--container: 1620px;
	--gutter: 32px;
	--header-pad: 20px;
}

/* ============================================================
   2. Reset / Base
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ============================================================
   3. Layout
   ============================================================ */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

/* ============================================================
   4. Header (transparent, over hero)
   ============================================================ */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: transparent;
}

.header__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
	padding-top: var(--header-pad);
	padding-bottom: var(--header-pad);
}

.site-logo {
	display: inline-flex;
	margin-right: 28px;
}

.site-logo img,
.site-logo svg {
	height: 60px;
	width: auto;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-right: auto;
}

.main-nav a:not(.btn) {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-size: 24px;
	font-weight: 400;
	color: var(--heading);
	transition: opacity 0.2s ease;
}

.main-nav a:not(.btn):hover {
	opacity: 0.55;
}

.main-nav .main-nav__cta {
	display: none;
}

.nav-caret {
	display: inline-block;
	line-height: 0;
}

/* Burger (checkbox hack, no JS) */
.nav-toggle {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--heading);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle:checked ~ .burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .burger span:nth-child(2) {
	opacity: 0;
}

.nav-toggle:checked ~ .burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   5. Hero (image-backed, full screen)
   ============================================================ */
.hero {
	background: var(--bg);
	padding-top: 104px;
	padding-bottom: 40px;
}

.hero__media {
	position: relative;
	height: clamp(540px, calc(100vh - 170px), 1000px);
	border-radius: 26px;
	overflow: hidden;
}

.hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.02) saturate(0.96);
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(241, 237, 229, 0.07), rgba(241, 237, 229, 0.02)),
		rgba(255, 255, 255, 0.02);
}

/* Title + subtitle + buttons on a soft bottom scrim, fading upward */
.hero__bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 150px 24px 44px;
	text-align: center;
	background: linear-gradient(to top,
		rgba(241, 237, 229, 0.67) 0%,
		rgba(241, 237, 229, 0.63) 42%,
		rgba(241, 237, 229, 0.43) 70%,
		rgba(241, 237, 229, 0.15) 88%,
		rgba(241, 237, 229, 0) 100%);
}

.hero__title {
	margin: 0 auto 14px;
	max-width: 900px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 64px;
	line-height: 1.06;
	letter-spacing: 0;
}

.hero__text {
	margin: 0 auto;
	max-width: 775px;
	font-size: 16px;
	font-weight: 600;
	color: var(--muted);
}

.hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 22px;
}

/* ============================================================
   5b. Approach section (white)
   ============================================================ */
.approach {
	background: linear-gradient(to bottom, var(--bg) 0%, #FAF8F4 170px);
	padding-top: 56px;
	padding-bottom: 96px;
}

.approach__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.approach__content {
	max-width: 560px;
}

.approach__eyebrow {
	margin: 0 0 18px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: var(--heading);
}

.approach__title {
	margin: 0 0 30px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 70px;
	line-height: 1.05;
	letter-spacing: 0;
}

.approach__text {
	margin: 0;
	max-width: 480px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	color: var(--muted);
}

.approach__actions {
	margin-top: 32px;
}

.approach__media {
	border-radius: 22px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.approach__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ============================================================
   5c. Services section (cards)
   ============================================================ */
.services {
	background: linear-gradient(to bottom, #FAF8F4 0%, var(--bg) 170px);
	padding-top: 64px;
	padding-bottom: 100px;
}

.services__head {
	max-width: 900px;
	margin-bottom: 56px;
}

.services__eyebrow {
	margin: 0 0 18px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: var(--heading);
}

.services__title {
	margin: 0 0 24px;
	max-width: 820px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 60px;
	line-height: 1.05;
	letter-spacing: 0;
}

.services__intro {
	margin: 0;
	max-width: 620px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	color: var(--muted);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 44px 40px;
}

.card__media {
	overflow: hidden;
	border-radius: 18px;
	aspect-ratio: 16 / 10;
	margin-bottom: 24px;
}

.card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.card:hover .card__img {
	transform: scale(1.05);
}

.card__title {
	margin: 0 0 14px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 30px;
	line-height: 1.12;
	letter-spacing: 0;
}

.card__text {
	margin: 0;
	max-width: 360px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: var(--muted);
}

.services__actions {
	margin-top: 60px;
}

/* ============================================================
   5d. Solutions section (icon columns)
   ============================================================ */
.solutions {
	background: linear-gradient(to bottom, var(--bg) 0%, #FAF8F4 170px);
	padding-top: 64px;
	padding-bottom: 100px;
}

.solutions__head {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 80px;
	align-items: start;
	margin-bottom: 72px;
}

.solutions__eyebrow {
	margin: 0 0 18px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: var(--heading);
}

.solutions__title {
	margin: 0;
	max-width: 720px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 70px;
	line-height: 1.04;
	letter-spacing: 0;
}

.solutions__intro {
	margin: 8px 0 0;
	max-width: 520px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	color: var(--muted);
}

.solutions__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px 40px;
}

.solution {
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.solution__icon {
	display: inline-flex;
	margin-bottom: 30px;
	color: var(--heading);
	transition: transform 0.3s ease;
}

.solution__icon svg {
	width: 42px;
	height: 42px;
	display: block;
}

.solution:hover .solution__icon {
	transform: translateY(-4px);
}

.solution__title {
	margin: 0 0 20px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 28px;
	line-height: 1.12;
	letter-spacing: 0;
}

.solution__text {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: var(--muted);
}

.solutions__actions {
	margin-top: 72px;
}

/* ============================================================
   5e. Reasons section (image + icon list)
   ============================================================ */
.reasons {
	background: linear-gradient(to bottom, var(--bg) 0%, #FAF8F4 170px);
	padding-top: 64px;
	padding-bottom: 100px;
}

.reasons__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.reasons__media {
	border-radius: 22px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.reasons__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.reasons__media:hover .reasons__img {
	transform: scale(1.04);
}

.reasons__list {
	max-width: 560px;
}

.reason {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 22px;
	padding: 30px 0;
	border-top: 1px solid var(--line);
}

.reason:first-child {
	border-top: none;
	padding-top: 4px;
}

.reason__icon {
	display: inline-flex;
	margin-top: 4px;
	color: var(--heading);
	transition: transform 0.3s ease;
}

.reason__icon svg {
	width: 40px;
	height: 40px;
	display: block;
}

.reason:hover .reason__icon {
	transform: translateY(-4px);
}

.reason__title {
	margin: 0 0 10px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 30px;
	line-height: 1.1;
	letter-spacing: 0;
}

.reason__text {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	color: var(--muted);
}

.reasons__actions {
	margin-top: 36px;
	padding-left: 78px;
}

/* ============================================================
   5f. CTA section (centered)
   ============================================================ */
.cta {
	background: linear-gradient(to bottom, #FAF8F4 0%, var(--bg) 170px);
	padding-top: 110px;
	padding-bottom: 120px;
	text-align: center;
}

.cta__title {
	margin: 0 auto 22px;
	max-width: 820px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 70px;
	line-height: 1.04;
	letter-spacing: 0;
}

.cta__text {
	margin: 0 auto;
	max-width: 560px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	color: var(--muted);
}

.cta__actions {
	margin-top: 32px;
}

/* ============================================================
   5g. Footer
   ============================================================ */
.site-footer {
	background: var(--footer-bg);
	color: var(--footer-ink);
}

.footer__cta {
	padding-top: 120px;
	padding-bottom: 130px;
	text-align: center;
}

.footer__title {
	margin: 0 auto 20px;
	max-width: 820px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--footer-ink);
	font-size: 70px;
	line-height: 1.04;
	letter-spacing: 0;
}

.footer__text {
	margin: 0 auto 40px;
	max-width: 560px;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	color: var(--footer-muted);
}

.footer__form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 480px;
	margin: 0 auto;
}

.footer__input {
	display: block;
	flex: none;
	width: 100%;
	min-width: 0;
	height: auto;
	margin: 0;
	padding: 12px 4px;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-bottom: 1px solid var(--footer-line);
	border-radius: 0;
	background: transparent;
	text-align: center;
	color: var(--footer-ink);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.4;
	transition: border-color 0.2s ease;
}

.footer__input::placeholder {
	color: var(--footer-muted);
}

.footer__input:focus {
	outline: none;
	border-bottom-color: var(--footer-ink);
}

.footer__form .btn {
	flex: 0 0 auto;
}

.footer__fineprint {
	margin: 22px auto 0;
	max-width: 640px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--footer-muted);
}

.footer__bottom {
	border-top: 1px solid var(--footer-line);
}

.footer__bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 14px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer__copy {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--footer-muted);
}

.footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 32px;
}

.footer__legal a {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--footer-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition: opacity 0.2s ease;
}

.footer__legal a:hover {
	opacity: 0.6;
}

/* ============================================================
   5h. Inquiry modal (popup)
   ============================================================ */
.vnc-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s;
}

.vnc-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.vnc-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(22, 18, 13, 0.55);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.vnc-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 50px 44px 44px;
	background: var(--cream);
	border-radius: 22px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
	transform: translateY(14px);
	transition: transform 0.3s ease;
}

.vnc-modal.is-open .vnc-modal__dialog {
	transform: none;
}

.vnc-modal__close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.vnc-modal__close:hover {
	background: rgba(22, 18, 13, 0.07);
	color: var(--ink);
}

.vnc-modal__title {
	margin: 0 0 10px;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	color: var(--heading);
	font-size: 38px;
	line-height: 1.05;
	letter-spacing: 0;
}

.vnc-modal__text {
	margin: 0 0 28px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: var(--muted);
}

/* ----- CF7 fields inside modal ----- */
.vnc-modal .wpcf7-form p {
	margin: 0 0 16px;
}

.vnc-modal .wpcf7-form-control-wrap {
	display: block;
}

.vnc-modal input.wpcf7-text,
.vnc-modal input.wpcf7-email,
.vnc-modal input.wpcf7-tel {
	width: 100%;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	-webkit-appearance: none;
	appearance: none;
	color: var(--ink);
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.4;
	transition: border-color 0.2s ease;
}

.vnc-modal input.wpcf7-text:focus,
.vnc-modal input.wpcf7-email:focus,
.vnc-modal input.wpcf7-tel:focus {
	outline: none;
	border-color: var(--brown);
}

.vnc-modal .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.vnc-modal .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--muted);
	cursor: pointer;
}

.vnc-modal .wpcf7-acceptance input[type="checkbox"] {
	flex: none;
	width: 17px;
	height: 17px;
	margin-top: 1px;
	accent-color: var(--brown);
}

.vnc-modal input.wpcf7-submit {
	width: 100%;
	margin-top: 8px;
	padding: 15px 32px;
	border: none;
	border-radius: 999px;
	background: var(--brown);
	color: var(--cream);
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease;
}

.vnc-modal input.wpcf7-submit:hover {
	background: var(--brown-dark);
}

/* ----- CF7 shared states ----- */
.wpcf7-not-valid-tip {
	margin-top: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #B4452F;
}

.wpcf7 .wpcf7-response-output {
	margin: 18px 0 0 !important;
	padding: 12px 16px !important;
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}

.wpcf7-spinner {
	margin: 0 0 0 10px;
}

/* ----- Footer CF7 form ----- */
.footer__form .wpcf7 {
	max-width: 480px;
	margin: 0 auto;
}

.footer__form .wpcf7-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.footer__form .wpcf7-form p {
	width: 100%;
	margin: 0;
	text-align: center;
}

.footer__form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	margin-bottom: 24px;
}

.footer__form .wpcf7-form br {
	display: none;
}

.footer__form .wpcf7-spinner {
	display: none;
}

.footer__form input.wpcf7-email {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 4px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--footer-line);
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
	text-align: center;
	color: var(--footer-ink);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.4;
	transition: border-color 0.2s ease;
}

.footer__form input.wpcf7-email::placeholder {
	color: var(--footer-muted);
}

.footer__form input.wpcf7-email:focus {
	outline: none;
	border-bottom-color: var(--footer-ink);
}

.footer__form input.wpcf7-submit {
	display: inline-block;
	align-self: center;
	width: auto;
	margin: 0;
	padding: 15px 34px;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 999px;
	background: var(--brown);
	color: var(--cream);
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.footer__form input.wpcf7-submit:hover {
	background: var(--brown-dark);
}

.footer__form .wpcf7-response-output {
	align-self: stretch;
	text-align: center;
	color: var(--footer-ink);
}

/* ----- CF7 success transition ----- */
.wpcf7-form {
	transition: opacity 0.38s ease, transform 0.38s ease;
}

.wpcf7-form.vnc-form--hiding {
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
}

.vnc-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.vnc-success.is-visible {
	opacity: 1;
	transform: none;
}

.vnc-success__icon {
	display: inline-flex;
	margin-bottom: 10px;
}

.vnc-success__icon svg {
	width: 58px;
	height: 58px;
}

.vnc-success__circle {
	stroke: var(--green);
	stroke-width: 2.5;
	stroke-dasharray: 151;
	stroke-dashoffset: 151;
}

.vnc-success__check {
	stroke: var(--green);
	stroke-width: 3.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 44;
	stroke-dashoffset: 44;
}

.vnc-success.is-visible .vnc-success__circle {
	animation: vncDraw 0.6s ease forwards;
}

.vnc-success.is-visible .vnc-success__check {
	animation: vncDraw 0.4s 0.5s ease forwards;
}

@keyframes vncDraw {
	to {
		stroke-dashoffset: 0;
	}
}

.vnc-success__title {
	margin: 0;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 30px;
	line-height: 1.1;
	color: var(--heading);
}

.vnc-success__text {
	margin: 0;
	max-width: 340px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: var(--muted);
}

.vnc-modal .vnc-success {
	padding: 6px 0 4px;
}

.footer__form .vnc-success__title {
	color: var(--footer-ink);
}

.footer__form .vnc-success__text {
	color: var(--footer-muted);
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-form,
	.vnc-success {
		transition: opacity 0.2s ease;
	}

	.vnc-success.is-visible .vnc-success__circle,
	.vnc-success.is-visible .vnc-success__check {
		animation: none;
		stroke-dashoffset: 0;
	}
}

/* ============================================================
   6. Buttons
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--solid {
	background: var(--brown);
	color: var(--cream);
}

.btn--solid:hover {
	background: var(--brown-dark);
}

.btn--outline {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.btn--outline:hover {
	border-color: var(--ink);
}

.btn--sm {
	padding: 15px 34px;
	font-size: 18px;
}

/* ============================================================
   7. Media queries
   ============================================================ */
@media (max-width: 1024px) {
	.burger {
		display: flex;
	}

	.header__cta {
		display: none;
	}

	.site-logo {
		margin-right: auto;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin-right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		background: var(--bg);
		padding: 18px var(--gutter) 26px;
		box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		pointer-events: none;
		transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
	}

	.nav-toggle:checked ~ .main-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.main-nav a:not(.btn) {
		font-size: 20px;
		padding: 10px 0;
	}

	/* staggered fade-in of menu items */
	.main-nav > * {
		opacity: 0;
		transform: translateY(8px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.nav-toggle:checked ~ .main-nav > * {
		opacity: 1;
		transform: none;
	}

	.nav-toggle:checked ~ .main-nav > *:nth-child(1) { transition-delay: 0.05s; }
	.nav-toggle:checked ~ .main-nav > *:nth-child(2) { transition-delay: 0.10s; }
	.nav-toggle:checked ~ .main-nav > *:nth-child(3) { transition-delay: 0.15s; }
	.nav-toggle:checked ~ .main-nav > *:nth-child(4) { transition-delay: 0.20s; }
	.nav-toggle:checked ~ .main-nav > *:nth-child(5) { transition-delay: 0.25s; }

	/* CTA moved into the menu */
	.main-nav .main-nav__cta {
		display: inline-flex;
		align-self: flex-start;
		margin-top: 16px;
		padding: 12px 28px;
		font-size: 16px;
	}

	.hero__title {
		font-size: 44px;
		max-width: none;
	}

	.hero__bottom {
		padding: 210px 24px 44px;
		background: linear-gradient(to top,
			rgba(241, 237, 229, 0.69) 0%,
			rgba(241, 237, 229, 0.67) 35%,
			rgba(241, 237, 229, 0.49) 60%,
			rgba(241, 237, 229, 0.21) 82%,
			rgba(241, 237, 229, 0) 100%);
	}

	.approach__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.approach__content {
		max-width: none;
	}

	.approach__title {
		font-size: 40px;
	}

	.approach__media {
		aspect-ratio: 16 / 10;
	}

	.services__title {
		font-size: 44px;
	}

	.solutions__head {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 56px;
	}

	.solutions__title {
		font-size: 44px;
	}

	.solutions__grid {
		grid-template-columns: 1fr 1fr;
		gap: 44px 40px;
	}

	.reasons__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.reasons__media {
		aspect-ratio: 16 / 10;
	}

	.reasons__list {
		max-width: none;
	}

	.cta__title {
		font-size: 44px;
	}

	.footer__title {
		font-size: 44px;
	}
}

@media (max-width: 640px) {
	:root {
		--gutter: 20px;
		--header-pad: 6px;
	}

	.site-logo img,
	.site-logo svg {
		height: 36px;
	}

	.hero {
		padding-top: 48px;
	}

	.hero__bottom {
		padding: 175px 18px 30px;
	}

	.hero__title {
		font-size: 30px;
		max-width: none;
	}

	.hero__text {
		font-size: 14px;
	}

	.main-nav a:not(.btn) {
		font-size: 17px;
	}

	.main-nav .main-nav__cta {
		margin-top: 12px;
		padding: 9px 20px;
		font-size: 14px;
	}

	.btn {
		padding: 12px 24px;
		font-size: 15px;
	}

	.approach {
		padding-top: 40px;
		padding-bottom: 64px;
	}

	.approach__title {
		font-size: 30px;
	}

	.approach__text {
		font-size: 15px;
	}

	.approach__media {
		aspect-ratio: 4 / 3;
	}

	.services {
		padding-top: 48px;
		padding-bottom: 64px;
	}

	.services__head {
		margin-bottom: 40px;
	}

	.services__title {
		font-size: 30px;
	}

	.services__intro {
		font-size: 16px;
	}

	.card__title {
		font-size: 26px;
	}

	.services__actions {
		margin-top: 40px;
	}

	.solutions {
		padding-top: 48px;
		padding-bottom: 64px;
	}

	.solutions__title {
		font-size: 30px;
	}

	.solutions__intro {
		font-size: 16px;
	}

	.solutions__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.solution__title {
		font-size: 24px;
	}

	.solutions__actions {
		margin-top: 48px;
	}

	.reasons {
		padding-top: 48px;
		padding-bottom: 64px;
	}

	.reasons__media {
		aspect-ratio: 4 / 3;
	}

	.reason {
		grid-template-columns: 44px 1fr;
		gap: 16px;
		padding: 24px 0;
	}

	.reason__icon svg {
		width: 34px;
		height: 34px;
	}

	.reason__title {
		font-size: 24px;
	}

	.reason__text {
		font-size: 15px;
	}

	.reasons__actions {
		margin-top: 28px;
		padding-left: 60px;
	}

	.cta {
		padding-top: 64px;
		padding-bottom: 72px;
	}

	.cta__title {
		font-size: 30px;
	}

	.cta__text {
		font-size: 15px;
	}

	.cta__actions {
		margin-top: 26px;
	}

	.footer__cta {
		padding-top: 64px;
		padding-bottom: 72px;
	}

	.footer__title {
		font-size: 30px;
	}

	.footer__text {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.footer__copy,
	.footer__legal a {
		font-size: 14px;
	}

	.vnc-modal__dialog {
		padding: 44px 24px 32px;
	}

	.vnc-modal__title {
		font-size: 30px;
	}
}