/* ==========================================================================
   Tea Massage Therapy — Premium Wellness Landing Page
   Palette: Ivory / Warm Beige / White / Sage / Dark Green / Subtle Gold
   ========================================================================== */

:root {
	--ivory: #F7F3EC;
	--ivory-deep: #F0E9DD;
	--beige: #E7DECF;
	--white: #FFFFFF;
	--sage: #AAB9A2;
	--sage-light: #DCE4D6;
	--green: #2F3B2D;
	--green-deep: #232C21;
	--gold: #B2955A;
	--gold-dark: #9A7B41;
	--gold-light: #D3BC8A;

	--ink: #2B3029;
	--text: #4B5248;
	--muted: #757C71;

	--line: rgba(47, 59, 45, 0.14);

	--shadow-sm: 0 2px 10px rgba(36, 44, 34, 0.06);
	--shadow-md: 0 12px 32px rgba(36, 44, 34, 0.1);
	--shadow-lg: 0 30px 60px rgba(36, 44, 34, 0.16);

	--radius: 20px;
	--container: 1160px;
	--header-h: 76px;
}

/* ---------- Reset & base ---------- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
	margin: 0;
	font-family: "Noto Sans Georgian", "FiraGO", system-ui, -apple-system, "Segoe UI", sans-serif;
	background: var(--ivory);
	color: var(--text);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

h1, h2, h3, h4 {
	margin: 0;
	color: var(--ink);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
}

p {
	margin: 0 0 1rem;
}

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

::selection {
	background: var(--sage-light);
	color: var(--green-deep);
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 28px);
}

.icon {
	width: 1.2em;
	height: 1.2em;
	flex: none;
}

/* ---------- Layout helpers ---------- */

.section {
	padding-block: clamp(4rem, 9vw, 6.5rem);
}

.section-head {
	max-width: 660px;
	margin: 0 auto 3.2rem;
	text-align: center;
}

.section-sub {
	color: var(--muted);
	font-size: 1.05rem;
	margin: 0;
}

.section-title {
	font-size: clamp(1.75rem, 3.4vw, 2.5rem);
	margin-bottom: 0.6rem;
}

.section-title::after {
	content: "";
	display: block;
	width: 52px;
	height: 2px;
	border-radius: 2px;
	background: var(--gold);
	margin: 1.05rem auto 0;
}

.section-title--light {
	color: var(--ivory);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 1.1rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	overflow-wrap: anywhere;
}

.eyebrow--light {
	color: var(--gold-light);
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.8rem;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
		border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
	transform: scale(0.98);
}

.btn--primary {
	background: var(--green);
	color: var(--ivory);
	box-shadow: 0 8px 20px rgba(47, 59, 45, 0.22);
}

.btn--primary:hover {
	background: var(--green-deep);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(47, 59, 45, 0.28);
}

.btn--gold {
	background: var(--gold);
	color: #fff;
	box-shadow: 0 8px 22px rgba(178, 149, 90, 0.35);
}

.btn--gold:hover {
	background: var(--gold-dark);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(178, 149, 90, 0.42);
}

.btn--phone {
	background: transparent;
	border-color: rgba(178, 149, 90, 0.65);
	color: var(--green);
}

.btn--phone:hover {
	border-color: var(--gold);
	background: rgba(178, 149, 90, 0.08);
	transform: translateY(-2px);
}

.btn--outline-light {
	border-color: rgba(247, 243, 236, 0.55);
	color: var(--ivory);
}

.btn--outline-light:hover {
	background: rgba(247, 243, 236, 0.1);
	border-color: var(--ivory);
	transform: translateY(-2px);
}

.btn--lg {
	padding: 1.05rem 2.2rem;
	font-size: 1.05rem;
}

/* ---------- Accessibility ---------- */

.skip-link {
	position: fixed;
	top: -80px;
	left: 16px;
	z-index: 300;
	padding: 12px 20px;
	border-radius: 10px;
	background: var(--green);
	color: var(--ivory);
	font-weight: 600;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 16px;
}

:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 3px;
	border-radius: 6px;
}

/* ---------- Header ---------- */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	background: rgba(247, 243, 236, 0.82);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
	background: rgba(247, 243, 236, 0.97);
	box-shadow: 0 1px 0 var(--line), 0 12px 32px rgba(36, 44, 34, 0.07);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: var(--header-h);
}

.brand {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.brand__name {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.02em;
}

.brand__sub {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav__list {
	display: flex;
	gap: 1.6rem;
}

.nav__link {
	position: relative;
	padding: 0.35rem 0;
	font-size: 0.97rem;
	font-weight: 500;
	color: var(--text);
}

.nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--gold);
	transition: right 0.25s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after {
	right: 0;
}

.nav__link:hover,
.nav__link.is-active {
	color: var(--green);
}

.header__cta {
	padding: 0.72rem 1.45rem;
	font-size: 0.95rem;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
	border: 0;
	border-radius: 10px;
	background: none;
	cursor: pointer;
}

.nav-toggle__bar {
	width: 24px;
	height: 2px;
	border-radius: 2px;
	background: var(--green);
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	padding: calc(var(--header-h) + 6rem) 0 clamp(4rem, 8vw, 6rem);
	overflow: clip;
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.hero::before {
	width: 520px;
	height: 520px;
	top: -180px;
	right: -160px;
	background: radial-gradient(circle, rgba(170, 185, 162, 0.45), transparent 70%);
}

.hero::after {
	width: 420px;
	height: 420px;
	bottom: -200px;
	left: -140px;
	background: radial-gradient(circle, rgba(231, 222, 207, 0.7), transparent 70%);
}

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: center;
}

.hero__title {
	font-size: clamp(1.9rem, 3.8vw, 2.8rem);
	line-height: 1.16;
	letter-spacing: -0.02em;
	text-wrap: balance;
	margin-bottom: 1.35rem;
}

.hero__title-accent {
	position: relative;
	display: inline-block;
	background: linear-gradient(105deg, var(--gold) 0%, var(--gold-dark) 55%, var(--gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--gold-dark);
	padding-bottom: 0.08em;
}

.hero__title-accent::after {
	content: "";
	position: absolute;
	left: 0.04em;
	right: 0.04em;
	bottom: 0;
	height: 0.14em;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, rgba(178, 149, 90, 0.55), transparent);
	pointer-events: none;
}

.hero__lead {
	font-size: 1.1rem;
	line-height: 1.75;
	max-width: 36em;
	margin-bottom: 1.6rem;
}

.hero__trust {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.7rem 1.6rem;
	max-width: 36em;
}

.hero__trust li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-weight: 500;
	color: var(--text);
}

.hero__trust .icon {
	color: var(--gold);
	margin-top: 0.28em;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2rem;
}

.hero__location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1.5rem 0 0;
	color: var(--muted);
	font-weight: 500;
	font-size: 0.95rem;
}

.hero__location .icon {
	color: var(--gold);
}

.hero__media {
	position: relative;
}

.hero__media::before {
	content: "";
	position: absolute;
	inset: 24px -22px -22px 24px;
	border: 1px solid rgba(178, 149, 90, 0.55);
	border-radius: 26px;
	z-index: -1;
}

.hero__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 24px;
	border: 1px solid rgba(178, 149, 90, 0.35);
	box-shadow: var(--shadow-lg);
}

.hero__badge {
	position: absolute;
	left: -26px;
	bottom: 34px;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.8rem 1.1rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-md);
}

.hero__badge-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(178, 149, 90, 0.14);
	color: var(--gold-dark);
}

.hero__badge-text {
	font-size: 0.83rem;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.35;
}

/* Hero entrance (lightweight, disabled under reduced motion) */
.hero__content {
	min-width: 0;
}

.hero__media {
	min-width: 0;
}

.hero__content > *,
.hero__media {
	animation: rise 0.7s ease both;
}

.hero__content > *:nth-child(2) { animation-delay: 0.08s; }
.hero__content > *:nth-child(3) { animation-delay: 0.16s; }
.hero__content > *:nth-child(4) { animation-delay: 0.24s; }
.hero__content > *:nth-child(5) { animation-delay: 0.32s; }
.hero__content > *:nth-child(6) { animation-delay: 0.4s; }
.hero__media { animation-delay: 0.15s; }

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------- About ---------- */

.about {
	background: var(--white);
}

.about__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2.5rem, 6vw, 4.5rem);
	align-items: center;
}

.about__media {
	position: relative;
}

.about__media::after {
	content: "";
	position: absolute;
	inset: 20px -20px -20px 20px;
	border: 1px solid rgba(178, 149, 90, 0.5);
	border-radius: 22px;
	z-index: 0;
}

.about__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
}

.about__content {
	min-width: 0;
}

.about__content .section-title::after {
	margin-inline: 0;
}

.about__intro {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 1rem;
}

.about__content > p:not(.about__intro) {
	color: var(--text);
	line-height: 1.8;
}

.about__points {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin: 1.6rem 0 2.1rem;
}

.about__points li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-weight: 500;
}

.about__points .icon {
	color: var(--gold);
	margin-top: 0.28em;
}

/* ---------- Trust ---------- */

.trust {
	background: var(--ivory);
}

.trust__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.trust__card {
	flex: 1 1 200px;
	max-width: 340px;
	padding: 1.8rem 1.5rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.trust__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	background: var(--sage-light);
	color: var(--green);
}

.trust__icon .icon {
	width: 24px;
	height: 24px;
}

.trust__card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

.trust__card p {
	font-size: 0.95rem;
	color: var(--muted);
	margin: 0;
}

/* ---------- Services ---------- */

.services {
	background: var(--white);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	gap: 28px;
}

.service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.service-card__media {
	position: relative;
}

.service-card__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.service-card__badge {
	position: absolute;
	left: 18px;
	bottom: -22px;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--green);
	color: var(--gold-light);
	border: 3px solid var(--white);
	box-shadow: var(--shadow-sm);
}

.service-card__badge .icon {
	width: 22px;
	height: 22px;
}

.service-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 2.5rem 1.5rem 1.6rem;
}

.service-card__body h3 {
	font-size: 1.15rem;
	margin-bottom: 0.6rem;
}

.service-card__body p {
	font-size: 0.95rem;
	color: var(--muted);
	flex: 1;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1.1rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--green);
}

.service-card__link .icon {
	transition: transform 0.2s ease;
}

.service-card__link:hover {
	color: var(--gold-dark);
}

.service-card__link:hover .icon {
	transform: translateX(4px);
}

.services__cta {
	margin-top: 3.2rem;
	padding: 2.4rem 2rem;
	text-align: center;
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.services__cta p {
	max-width: 52ch;
	margin: 0 auto 1.5rem;
	font-size: 1.05rem;
}

.services__cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
}

/* ---------- Premium experience ---------- */

.premium {
	position: relative;
	padding-block: clamp(4.5rem, 9vw, 7rem);
	background: var(--green);
	overflow: clip;
}

.premium::before {
	content: "";
	position: absolute;
	width: 640px;
	height: 640px;
	top: -260px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(211, 188, 138, 0.1), transparent 70%);
	pointer-events: none;
}

.premium__inner {
	position: relative;
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.premium__text {
	font-size: 1.12rem;
	line-height: 1.75;
	color: rgba(247, 243, 236, 0.88);
	margin: 1.3rem auto 0;
}

.premium__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-top: 1.9rem;
}

.premium__tags li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.15rem;
	border: 1px solid rgba(211, 188, 138, 0.45);
	border-radius: 999px;
	color: var(--gold-light);
	font-size: 0.9rem;
	font-weight: 500;
}

.premium__tags li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.premium__media {
	margin-top: 3rem;
}

.premium__media img {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 22px;
	border: 1px solid rgba(211, 188, 138, 0.35);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* ---------- Pricing ---------- */

.pricing {
	background: var(--ivory);
}

.pricing__card {
	max-width: 660px;
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: var(--shadow-md);
}

.pricing__big {
	font-size: clamp(1.9rem, 4.5vw, 2.7rem);
	font-weight: 700;
	color: var(--green);
	letter-spacing: -0.01em;
	margin: 1.1rem 0 0.9rem;
}

.pricing__desc {
	max-width: 46ch;
	margin: 0 auto 1.9rem;
	color: var(--muted);
}

/* ---------- SEO content ---------- */

.seo-content {
	background: var(--white);
}

.seo-content__inner {
	max-width: 820px;
	margin: 0 auto;
}

.seo-content__inner .section-title {
	margin-bottom: 1.7rem;
}

.seo-content__inner p {
	line-height: 1.85;
	margin-bottom: 1.15rem;
}

.seo-content__cta {
	margin-top: 2.1rem;
	text-align: center;
}

/* ---------- FAQ ---------- */

.faq {
	background: var(--ivory);
}

.faq__container {
	max-width: 820px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq__item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
}

.faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 1.5rem;
	cursor: pointer;
	list-style: none;
}

.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__item summary h3 {
	font-size: 1.02rem;
	font-weight: 600;
}

.faq__item summary::after {
	content: "+";
	flex: none;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--gold);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq__item[open] summary::after {
	transform: rotate(45deg);
	background: var(--green);
	border-color: var(--green);
	color: var(--ivory);
}

.faq__body {
	padding: 0 1.5rem 1.4rem;
	color: var(--text);
}

.faq__body p {
	margin: 0;
	line-height: 1.75;
}

.faq__item[open] .faq__body {
	animation: faqIn 0.28s ease;
}

@keyframes faqIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.faq__tel {
	color: var(--green);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(178, 149, 90, 0.6);
}

/* ---------- Booking CTA ---------- */

.booking {
	position: relative;
	background: var(--green);
	overflow: clip;
}

.booking::before {
	content: "";
	position: absolute;
	width: 560px;
	height: 560px;
	bottom: -280px;
	right: -160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(211, 188, 138, 0.12), transparent 70%);
	pointer-events: none;
}

.booking__inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(4.5rem, 9vw, 6.5rem) 0;
	text-align: center;
}

.booking__text {
	font-size: 1.12rem;
	color: rgba(247, 243, 236, 0.88);
	max-width: 56ch;
	margin: 1.2rem auto 2rem;
}

.booking__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
}

/* ---------- Contact ---------- */

.contact {
	background: var(--ivory);
}

.contact__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.contact__card {
	padding: 2rem 1.5rem;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: var(--shadow-sm);
}

.contact__icon {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--sage-light);
	color: var(--green);
}

.contact__card h3 {
	font-size: 1.02rem;
	margin-bottom: 0.4rem;
}

.contact__card p {
	margin: 0;
	color: var(--muted);
}

.contact__link {
	color: var(--green);
	font-weight: 600;
}

.contact__link:hover {
	color: var(--gold-dark);
}

.contact__cta {
	margin-top: 2.4rem;
	text-align: center;
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--green-deep);
	color: rgba(247, 243, 236, 0.75);
	padding: 4rem 0 3.5rem;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(247, 243, 236, 0.12);
}

.footer__name {
	color: var(--ivory);
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
}

.footer__text {
	font-size: 0.95rem;
	max-width: 42ch;
	line-height: 1.75;
}

.footer__social {
	display: flex;
	gap: 0.8rem;
	margin-top: 1.3rem;
}

.footer__social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(247, 243, 236, 0.22);
	border-radius: 50%;
	color: var(--ivory);
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
	border-color: var(--gold);
	color: var(--gold-light);
	transform: translateY(-2px);
}

.footer__col h3 {
	color: var(--ivory);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.footer__col li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.95rem;
	margin-bottom: 0.55rem;
}

.footer__col a {
	color: rgba(247, 243, 236, 0.75);
	transition: color 0.2s ease;
}

.footer__col a:hover {
	color: var(--ivory);
}

.footer__col .icon {
	color: var(--gold);
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.8rem 2rem;
	padding-top: 1.8rem;
	font-size: 0.85rem;
	color: rgba(247, 243, 236, 0.5);
}

.footer__bottom p {
	margin: 0;
}

/* ---------- Mobile fixed CTA bar ---------- */

.mobile-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.96);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--line);
	box-shadow: 0 -8px 24px rgba(36, 44, 34, 0.08);
}

.mobile-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 0;
	border: 1.5px solid var(--green);
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	color: var(--green);
}

.mobile-cta__btn--primary {
	background: var(--green);
	border-color: var(--green);
	color: var(--ivory);
}

/* ---------- Scroll reveal (progressive enhancement) ---------- */

html.js .reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		gap: 1.4rem;
	}

	html.js .site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		max-height: 0;
		overflow: hidden;
		padding: 0 24px;
		background: var(--ivory);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-md);
		transition: max-height 0.35s ease, padding 0.3s ease;
	}

	html.js .site-nav.is-open {
		max-height: 520px;
		padding: 1.4rem 24px 1.8rem;
	}

	html.js .nav__list {
		flex-direction: column;
		gap: 0.4rem;
	}

	html.js .nav__link {
		display: block;
		padding: 0.65rem 0;
		font-size: 1.05rem;
	}

	html.js .header__cta {
		margin-top: 1.1rem;
		align-self: flex-start;
	}

	.hero__grid {
		grid-template-columns: 1fr;
	}

	.hero__media {
		max-width: 560px;
		width: 100%;
		margin: 0 auto;
	}

	.hero__badge {
		left: 14px;
		bottom: 14px;
	}

	.hero__media::before {
		inset: 16px -14px -14px 16px;
	}

	.about__grid {
		grid-template-columns: 1fr;
	}

	.about__media {
		max-width: 520px;
		width: 100%;
		margin: 0 auto;
	}

	.contact__grid {
		grid-template-columns: 1fr;
		max-width: 460px;
	}

	.footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 767.98px) {
	body {
		padding-bottom: 84px;
	}

	.mobile-cta {
		display: grid;
	}

	.hero {
		padding-top: calc(var(--header-h) + 3.5rem);
	}

	.hero__trust {
		grid-template-columns: 1fr;
	}

	.services__cta {
		padding: 1.8rem 1.2rem;
	}

	.footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 399.98px) {
	.hero__actions .btn {
		width: 100%;
	}

	.btn--lg {
		width: 100%;
	}
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html.js .reveal {
		opacity: 1;
		transform: none;
	}
}
