﻿/* â”€â”€ RESET & TOKENS â”€â”€ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

:root {
	--r: #44463A;
	--rd: #262E24;
	--rl: #4B4E3E;
	--p: #2D1B4E;
	--pm: #4A2D7F;
	--pl: #ECEEE9;
	--g: linear-gradient(91.28deg, #262E24 0%, #44463A 46.63%, #4B4E3E 100%);
	--gd: linear-gradient(91.28deg, #1e2620 0%, #383b2f 46.63%, #3e4132 100%);
	--pk: #F0F2EE;
	--wh: #fff;
	--off: #FAFAF8;
	--sand: #F4F1EC;
	--ink: #111111;
	--i60: rgba(17, 17, 17, .55);
	--i12: rgba(17, 17, 17, .08);
	--bd: rgba(17, 17, 17, .10);
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--wh);
	color: var(--ink);
	overflow-x: hidden;
	line-height: 1.6
}

/* â”€â”€ NAV â”€â”€ */
nav#nb {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 64px;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--bd);
	transition: box-shadow .3s
}

nav#nb .nl {
	flex-shrink: 0
}

nav#nb .nlinks {
	margin-left: auto
}

nav#nb.sc {
	box-shadow: 0 2px 24px rgba(45, 27, 78, .08)
}

.nl {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none
}

.nav-logo {
	height: 38px;
	width: auto;
	display: block
}

.ft-logo {
	filter: brightness(0) invert(1)
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--g);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: .85rem;
	font-weight: 600;
	text-decoration: none;
	padding: 9px 20px;
	border-radius: 9px;
	white-space: nowrap;
	transition: opacity .2s, transform .2s, box-shadow .2s;
	box-shadow: 0 4px 14px rgba(68,70,58,.25)
}

.nav-cta:hover {
	opacity: .88;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(68,70,58,.35)
}

.nlinks {
	display: flex;
	gap: 32px;
	list-style: none
}

.nlinks a {
	font-size: 14px;
	font-weight: 500;
	color: var(--i60);
	text-decoration: none;
	transition: color .2s
}

.nlinks a:hover {
	color: var(--r)
}

.nlinks .current-menu-item > a,
.nlinks .current_page_item > a,
.nlinks a.active {
	color: var(--r);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px
}

.nr {
	display: flex;
	align-items: center;
	gap: 12px
}

.bg {
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	transition: color .2s
}

.bg:hover {
	color: var(--r)
}

.bs {
	background: var(--g);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 9px 22px;
	border-radius: 8px;
	text-decoration: none;
	transition: opacity .2s, transform .15s
}

.bs:hover {
	opacity: .88;
	transform: translateY(-1px)
}

/* â”€â”€ HERO â”€â”€ */
.hero {
	min-height: 100vh;
	padding: 100px 64px 60px;
	background: #ffffff;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden
}

.hero-blob1,
.hero-blob2 {
	display: none
}

.hero-inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2
}

.h-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--pk);
	border: 1px solid rgba(68,70,58,.22);
	color: var(--r);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 9px;
	margin-bottom: 24px
}

.h-dot {
	width: 7px;
	height: 7px;
	background: var(--r);
	border-radius: 50%;
	animation: blink 1.6s ease-in-out infinite
}

@keyframes blink {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: .25
	}
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(38px, 4.8vw, 60px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -.5px;
	color: var(--ink);
	margin-bottom: 20px
}

.hero h1 em {
	font-style: italic;
	color: var(--r)
}

.hero p {
	font-size: 17px;
	color: var(--i60);
	line-height: 1.75;
	max-width: 440px;
	margin-bottom: 34px
}

.h-btns {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap
}

.btn-pr {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(91.28deg, #262E24 0%, #44463A 46.63%, #4B4E3E 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 30px;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 8px 28px rgba(38, 46, 36, .32);
	transition: box-shadow .2s, transform .15s
}

.btn-pr:hover {
	box-shadow: 0 12px 36px rgba(38, 46, 36, .50);
	transform: translateY(-2px)
}

.btn-sec {
	font-size: 15px;
	font-weight: 500;
	color: var(--p);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color .2s
}

.btn-sec:hover {
	color: var(--r)
}

.h-stats {
	display: flex;
	gap: 32px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--i12)
}

.hstat strong {
	display: block;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -.5px;
	color: var(--p)
}

.hstat span {
	font-size: 12px;
	color: var(--i60)
}

/* â”€â”€ HERO PHONE MOCKUP â”€â”€ */
.hero-right {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 40px 30px 20px
}

.phone-frame {
	width: 270px;
	height: 560px;
	background: #1a0f0a;
	border-radius: 44px;
	padding: 10px;
	box-shadow:
		0 0 0 2px #3a2010,
		0 0 0 4px rgba(68,70,58,.18),
		0 40px 80px rgba(45, 27, 78, .40),
		0 10px 30px rgba(68,70,58,.20);
	position: relative;
	animation: phoneFloat 4s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes phoneFloat {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-14px)
	}
}

.phone-frame::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 6px;
	background: #1a0f0a;
	border-radius: 0 0 8px 8px;
	z-index: 10;
}

.phone-frame::after {
	content: '';
	position: absolute;
	right: -3px;
	top: 110px;
	width: 3px;
	height: 50px;
	background: #3a2010;
	border-radius: 0 3px 3px 0;
}

.phone-screen {
	width: 100%;
	height: 100%;
	border-radius: 36px;
	overflow: hidden;
	background: #f5ede8;
	position: relative;
}

/* Real app screenshot fills the phone screen */
.app-screenshot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	border-radius: 36px;
}

/* Floating notification chips */
.chip {
	position: absolute;
	background: var(--wh);
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(45, 27, 78, .18);
	border: 1px solid var(--bd);
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 10
}

.chip-ic {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.chip-ic.r {
	background: var(--pk)
}

.chip-ic.p {
	background: var(--pl)
}

.chip h6 {
	font-size: 12px;
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap
}

.chip p {
	font-size: 10px;
	color: var(--i60);
	margin-top: 1px;
	white-space: nowrap;
	margin-bottom: 0;
}

.chip-a {
	top: 60px;
	right: 0px;
	animation: fa 3.5s ease-in-out infinite
}

.chip-b {
	bottom: 100px;
	left: 0px;
	animation: fb 3.5s ease-in-out infinite 1.2s
}

@keyframes fa {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-8px)
	}
}

@keyframes fb {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(8px)
	}
}

/* â”€â”€ SECTION UTILS â”€â”€ */
section {
	padding: 90px 64px
}

.cx {
	max-width: 1200px;
	margin: 0 auto
}

.tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--r);
	margin-bottom: 12px
}

.sh {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 3.8vw, 44px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.3px;
	margin-bottom: 14px
}

.ss {
	font-size: 16px;
	color: var(--i60);
	line-height: 1.75;
	max-width: 520px
}

.sec-center {
	text-align: center
}

.sec-center .ss {
	margin: 0 auto
}

/* â”€â”€ TRUST BAR â”€â”€ */
.trust {
	padding: 36px 64px;
	border-top: 1px solid var(--bd);
	border-bottom: 1px solid var(--bd);
	background: var(--off)
}

.trust-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap
}

.trust-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--i60);
	letter-spacing: .05em;
	white-space: nowrap
}

.trust-items {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(45, 27, 78, .35)
}

/* â”€â”€ DUAL MODE â”€â”€ */
.dual {
	background: var(--off)
}

.dual-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 56px
}

.dual-card {
	border-radius: 22px;
	padding: 40px;
	border: 1px solid var(--bd);
	background: var(--wh);
	position: relative;
	overflow: hidden;
	transition: transform .3s, box-shadow .3s
}

.dual-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 56px rgba(45, 27, 78, .10)
}

.dual-card::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	opacity: .07;
	pointer-events: none
}

.dual-card.dating::before {
	background: var(--r)
}

.dual-card.friends::before {
	background: var(--pm)
}

.dc-icon {
	width: 60px;
	height: 60px;
	border-radius: 18px;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center
}

.dc-icon.di {
	background: var(--pk)
}

.dc-icon.fi {
	background: var(--pl)
}

.dual-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 10px
}

.dual-card p {
	font-size: 15px;
	color: var(--i60);
	line-height: 1.7;
	margin-bottom: 24px
}

.dc-features {
	display: flex;
	flex-direction: column;
	gap: 10px
}

.dc-feat {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--ink)
}

.dc-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0
}

.dc-dot.r {
	background: var(--r)
}

.dc-dot.v {
	background: var(--pm)
}

/* â”€â”€ HOW IT WORKS â”€â”€ */
.how {
	background: var(--p)
}

.how .tag {
	color: rgba(255, 255, 255, .4)
}

.how .sh {
	color: #fff
}

.how-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 56px;
	background: rgba(255, 255, 255, .07);
	border-radius: 20px;
	overflow: hidden
}

.hs {
	padding: 36px 28px;
	position: relative;
	transition: background .3s
}

.hs:hover {
	background: rgba(255, 255, 255, .05)
}

.hs:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 30px;
	bottom: 30px;
	width: 1px;
	background: rgba(255, 255, 255, .08)
}

.hs-n {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--g);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 18px
}

.hs-emoji {
	font-size: 32px;
	margin-bottom: 14px;
	display: flex;
	align-items: center
}

.hs h4 {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px
}

.hs p {
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.65
}

/* â”€â”€ EVENTS â”€â”€ */
.events {
	background: var(--wh)
}

.ev-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 44px
}

.see-all {
	font-size: 14px;
	font-weight: 600;
	color: var(--r);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap .2s
}

.see-all:hover {
	gap: 8px
}

.ev-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px
}

.ev-card {
	border-radius: 18px;
	border: 1px solid var(--bd);
	overflow: hidden;
	background: var(--wh);
	transition: transform .3s, box-shadow .3s
}

.ev-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(45, 27, 78, .12)
}

.ev-head {
	height: 190px;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 16px
}

.ev-head.g1 {
	background: linear-gradient(160deg, #44463A 0%, #262E24 100%)
}

.ev-head.g2 {
	background: linear-gradient(160deg, #2D1B4E 0%, #7B1FA2 100%)
}

.ev-head.g3 {
	background: linear-gradient(160deg, #1A237E 0%, #2D1B4E 100%)
}

.ev-head.g4 {
	background: linear-gradient(160deg, #262E24 0%, #44463A 100%)
}

.ev-head.g5 {
	background: linear-gradient(160deg, #4A148C 0%, #2D1B4E 100%)
}

.ev-head.g6 {
	background: linear-gradient(160deg, #00695C 0%, #1A237E 100%)
}

.ev-dpill {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 11px;
	border-radius: 9px
}

.ev-emoji {
	display: flex;
	align-items: center
}

.ev-body {
	padding: 18px
}

.ev-cat {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--r);
	margin-bottom: 6px
}

.ev-body h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
	line-height: 1.3
}

.ev-body p {
	font-size: 13px;
	color: var(--i60);
	margin-bottom: 14px
}

.ev-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--i12)
}

.ev-att {
	display: flex;
	align-items: center;
	gap: 6px
}

.av-stk {
	display: flex
}

.av {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: var(--g);
	margin-left: -5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 700;
	color: #fff
}

.av:first-child {
	margin-left: 0
}

.ev-cnt {
	font-size: 11px;
	color: var(--i60)
}

.ev-res {
	background: var(--g);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 7px 16px;
	border-radius: 7px;
	text-decoration: none;
	transition: opacity .2s, transform .15s
}

.ev-res:hover {
	opacity: .85;
	transform: translateY(-1px)
}

/* â”€â”€ DATING FEATURES â”€â”€ */
.dating {
	background: var(--off)
}

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

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

.di-bg {
	background: linear-gradient(160deg, var(--pk) 0%, var(--pl) 100%);
	border-radius: 22px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px
}

.di-card {
	background: var(--wh);
	border-radius: 14px;
	border: 1px solid var(--bd);
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 16px rgba(45, 27, 78, .07)
}

.di-av {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0
}

.di-av.a {
	background: var(--g)
}

.di-av.b {
	background: linear-gradient(135deg, #2D1B4E, #7B1FA2)
}

.di-av.c {
	background: linear-gradient(135deg, #1A237E, #2D1B4E)
}

.di-info h6 {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink)
}

.di-info p {
	font-size: 11px;
	color: var(--i60);
	margin-top: 2px
}

.di-right {
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px
}

.di-pct {
	font-size: 14px;
	font-weight: 800;
	color: var(--r)
}

.di-tag {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 9px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.di-tag.ra {
	background: var(--pk);
	color: var(--r)
}

.di-tag.pa {
	background: var(--pl);
	color: var(--pm)
}

.di-female-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--pk);
	border: 1px solid rgba(68,70,58,.2);
	color: var(--r);
	font-size: 12px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 9px;
	margin-top: 4px;
	width: fit-content
}

.dating-feats {
	margin-top: 36px;
	display: flex;
	flex-direction: column;
	gap: 24px
}

.dfeat {
	display: flex;
	gap: 16px
}

.dfeat-ic {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center
}

.dfeat-ic.r {
	background: var(--pk)
}

.dfeat-ic.p {
	background: var(--pl)
}

.dfeat h5 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px
}

.dfeat p {
	font-size: 14px;
	color: var(--i60);
	line-height: 1.65
}

/* â”€â”€ SAFETY & VERIFICATION â”€â”€ */
.safety {
	background: #f8f7f5
}

.safety .tag {
	color: var(--r)
}

.safety .sh {
	color: var(--p)
}

.safety .ss {
	color: var(--i60);
	margin: 0 auto
}

.safety-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px
}

.sf-card {
	background: #fff;
	border: 1px solid var(--bd);
	border-radius: 20px;
	padding: 30px;
	transition: box-shadow .3s, transform .2s
}

.sf-card:hover {
	box-shadow: 0 6px 24px rgba(45,27,78,.08);
	transform: translateY(-2px)
}

.sf-ic {
	margin-bottom: 16px;
	display: flex;
	align-items: center
}

.sf-ic svg {
	stroke: var(--r)
}

.sf-card h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--p);
	margin-bottom: 8px
}

.sf-card p {
	font-size: 14px;
	color: var(--i60);
	line-height: 1.65
}

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testimonials {
	background: var(--wh)
}

.test-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px
}

.test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px
}

.test-card {
	background: var(--off);
	border-radius: 18px;
	padding: 28px;
	border: 1px solid var(--bd);
	transition: transform .3s, box-shadow .3s
}

.test-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(45, 27, 78, .09)
}

.t-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 14px
}

.star {
	color: #F5C842;
	font-size: 14px
}

.test-card blockquote {
	font-size: 15px;
	color: var(--ink);
	line-height: 1.75;
	margin-bottom: 20px
}

.test-card blockquote::before {
	content: '\201C';
	font-family: 'Playfair Display', serif;
	font-size: 34px;
	line-height: 0;
	vertical-align: -12px;
	color: var(--r);
	margin-right: 3px
}

.t-user {
	display: flex;
	align-items: center;
	gap: 12px
}

.t-av {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.t-av.a {
	background: var(--g)
}

.t-av.b {
	background: linear-gradient(135deg, #2D1B4E, #7B1FA2)
}

.t-av.c {
	background: linear-gradient(135deg, #1A237E, #2D1B4E)
}

.t-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink)
}

.t-loc {
	font-size: 12px;
	color: var(--i60);
	margin-top: 1px
}

.t-etag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 600;
	background: var(--pk);
	color: var(--r);
	padding: 3px 9px;
	border-radius: 9px;
	margin-top: 5px;
	width: fit-content
}

/* â”€â”€ APP DOWNLOAD CTA â”€â”€ */
.app-cta {
	background: var(--g);
	overflow: hidden;
	position: relative;
	padding: 0 64px
}

.app-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
	pointer-events: none
}

.app-cta-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
	padding: 80px 0
}

/* Left content */
.app-pill {
	color: rgba(255,255,255,.9) !important;
	background: rgba(255,255,255,.15) !important;
	border: 1px solid rgba(255,255,255,.25) !important;
	margin-bottom: 20px
}

.app-cta-left h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 16px
}

.app-cta-left h2 em {
	font-style: italic;
	opacity: .92
}

.app-cta-left p {
	font-size: .97rem;
	color: rgba(255,255,255,.78);
	line-height: 1.75;
	margin-bottom: 32px;
	max-width: 460px
}

/* Store buttons */
.app-store-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 28px
}

.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	color: var(--ink);
	text-decoration: none;
	padding: 12px 22px;
	border-radius: 9px;
	min-width: 170px;
	transition: transform .2s, box-shadow .2s;
	box-shadow: 0 4px 20px rgba(0,0,0,.15)
}

.store-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0,0,0,.22)
}

.store-btn svg { flex-shrink: 0; color: var(--p) }
.store-btn div { display: flex; flex-direction: column; gap: 1px }

.store-btn span {
	font-size: .65rem;
	color: var(--i60);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .04em
}

.store-btn strong {
	font-size: .95rem;
	font-weight: 700;
	color: var(--p);
	line-height: 1.2
}

/* Trust row */
.app-trust-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap
}

.app-trust-item {
	display: flex;
	align-items: center;
	gap: 6px
}

.app-trust-item span {
	font-size: .8rem;
	color: rgba(255,255,255,.7);
	font-weight: 500
}

/* Right â€” three phones fan */
.app-cta-right {
	display: flex;
	justify-content: center;
	align-items: center
}

/* Fan container */
.phones-trio {
	position: relative;
	width: 400px;
	height: 520px;
	flex-shrink: 0
}

.trio-phone {
	position: absolute
}

/* Center phone â€” largest, in front */
.trio-center {
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 3
}

/* Left phone â€” smaller, rotated, behind */
.trio-left {
	left: -4px;
	top: 52px;
	transform: rotate(-11deg);
	transform-origin: bottom center;
	z-index: 1
}

/* Right phone â€” smaller, rotated, behind */
.trio-right {
	right: -4px;
	top: 52px;
	transform: rotate(11deg);
	transform-origin: bottom center;
	z-index: 1
}

/* Phone shell */
.tp-shell {
	background: #160D28;
	border-radius: 34px;
	padding: 9px 9px 12px;
	box-shadow:
		0 0 0 1.5px rgba(255,255,255,.12),
		0 28px 72px rgba(0,0,0,.45),
		0 8px 24px rgba(0,0,0,.3),
		inset 0 1px 0 rgba(255,255,255,.07);
	position: relative
}

.trio-center .tp-shell { width: 198px }
.trio-left .tp-shell,
.trio-right .tp-shell { width: 162px; opacity: .92 }

/* Dynamic island / notch pill */
.tp-notch {
    width: 51px;
    height: 10px;
    background: #0D0820;
    border-radius: 0 0 8px 8px;
    margin: 0 auto 5px;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
}

/* Screenshot image fills the screen area */
.tp-img {
	width: 100%;
	display: block;
	border-radius: 24px;
	object-fit: cover;
	object-position: top
}

.trio-center .tp-img { height: 418px }
.trio-left .tp-img,
.trio-right .tp-img { height: 342px }

/* Floating match badge on center phone */
.tp-badge {
	position: absolute;
	bottom: 36px;
	left: -52px;
	background: #fff;
	border-radius: 12px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 9px;
	box-shadow: 0 8px 28px rgba(0,0,0,.22);
	min-width: 138px;
	z-index: 10
}

.tp-badge div { display: flex; flex-direction: column; gap: 1px }

.tp-badge strong {
	font-size: .9rem;
	font-weight: 700;
	color: var(--p);
	line-height: 1
}

.tp-badge span {
	font-size: .68rem;
	color: var(--i60)
}

/* Responsive */
@media (max-width: 1100px) {
	.app-cta-inner { grid-template-columns: 1fr 360px }
	.phones-trio { width: 360px; height: 480px }
	.trio-center .tp-shell { width: 178px }
	.trio-left .tp-shell,
	.trio-right .tp-shell { width: 148px }
	.trio-center .tp-img { height: 376px }
	.trio-left .tp-img,
	.trio-right .tp-img { height: 308px }
}

@media (max-width: 1020px) {
	.app-cta-inner {
		grid-template-columns: 1fr;
		gap: 56px
	}
	.app-cta-right { justify-content: flex-start }
	.phones-trio { width: 400px; height: 520px }
	.trio-center .tp-shell { width: 198px }
	.trio-left .tp-shell,
	.trio-right .tp-shell { width: 162px }
	.trio-center .tp-img { height: 418px }
	.trio-left .tp-img,
	.trio-right .tp-img { height: 342px }
}

@media (max-width: 600px) {
	.app-store-btns { flex-direction: column }
	.store-btn { min-width: unset; width: 100% }
	.phones-trio { width: 340px; height: 440px }
	.trio-center .tp-shell { width: 168px }
	.trio-left .tp-shell,
	.trio-right .tp-shell { width: 138px }
	.trio-center .tp-img { height: 354px }
	.trio-left .tp-img,
	.trio-right .tp-img { height: 290px }
	.tp-badge { left: -30px }
}

/* â”€â”€ HOME CONTACT â”€â”€ */
.hc {
	padding: 96px 0
}

.hc-center {
	max-width: 720px;
	margin: 0 auto;
	text-align: center
}

.hc-center .sh {
	margin: 12px 0 16px
}

.hc-center .sh em {
	font-style: italic;
	background: var(--g);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.hc-center .ss {
	margin-bottom: 36px
}

/* Contact meta row */
.hc-meta-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 40px;
	flex-wrap: wrap
}

.hc-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 24px
}

.hc-meta-item a,
.hc-meta-item span {
	font-size: .92rem;
	font-weight: 600;
	color: var(--p);
	text-decoration: none;
	transition: color .2s
}

.hc-meta-item a:hover { color: var(--r) }

.hc-meta-ic {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--pk);
	color: var(--r);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.hc-meta-divider {
	width: 1px;
	height: 28px;
	background: var(--bd)
}

/* Inline form */
.hc-inline-form {
	display: flex;
	gap: 12px;
	align-items: center;
	background: var(--wh);
	border: 1px solid var(--bd);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 4px 32px rgba(45,27,78,.07)
}

.hc-inline-form input {
	flex: 1;
	height: 48px;
	border: 1px solid var(--bd);
	border-radius: 10px;
	padding: 0 16px;
	font-family: 'Inter', sans-serif;
	font-size: .9rem;
	color: var(--ink);
	background: var(--off);
	outline: none;
	transition: border-color .2s, box-shadow .2s
}

.hc-inline-form input::placeholder { color: #b0a8c0 }

.hc-inline-form input:focus {
	border-color: var(--r);
	box-shadow: 0 0 0 3px rgba(68,70,58,.10);
	background: #fff
}

.hc-inline-form .hc-submit {
	flex-shrink: 0;
	height: 48px;
	padding: 0 24px;
	white-space: nowrap
}

.hc-form {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.hc-field {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.hc-phone-wrap {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--bd);
	border-radius: 10px;
	overflow: hidden;
	background: var(--off);
	transition: border-color .2s, box-shadow .2s;
	/* overflow:hidden clips box-shadow â€” use outline for error ring instead */
	outline: 3px solid transparent;
	outline-offset: 0
}

.hc-phone-wrap:focus-within {
	border-color: var(--r);
	outline-color: rgba(68,70,58,.13);
	background: var(--wh)
}

.hc-dial-code {
	display: flex;
	align-items: center;
	padding: 0 12px;
	font-size: .88rem;
	font-weight: 600;
	color: var(--ink);
	background: var(--i12);
	border-right: 1.5px solid var(--bd);
	white-space: nowrap;
	flex-shrink: 0
}

.hc-phone-wrap input {
	flex: 1;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none
}

.hc-field label {
	font-size: .82rem;
	font-weight: 600;
	color: var(--p)
}

.hc-req { color: var(--r) }

.hc-field input,
.hc-field textarea {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: .92rem;
	color: var(--ink);
	background: var(--off);
	border: 1.5px solid var(--bd);
	border-radius: 10px;
	padding: 10px 14px;
	outline: none;
	transition: border-color .2s, box-shadow .2s
}

.hc-field input::placeholder,
.hc-field textarea::placeholder { color: #b0a8c0 }

.hc-field input:focus,
.hc-field textarea:focus {
	border-color: var(--r);
	box-shadow: 0 0 0 3px rgba(68,70,58,.10);
	background: var(--wh)
}

.hc-field textarea {
	resize: vertical;
	min-height: 110px
}

.hc-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(91.28deg, #262E24 0%, #44463A 46.63%, #4B4E3E 100%);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: .92rem;
	font-weight: 600;
	border: none;
	border-radius: 9px;
	padding: 13px 28px;
	cursor: pointer;
	width: 100%;
	transition: opacity .2s, transform .2s;
	box-shadow: 0 4px 14px rgba(38,46,36,.28)
}

.hc-submit:hover:not(:disabled) {
	opacity: .88;
	transform: translateY(-1px)
}

.hc-submit:disabled { opacity: .6; cursor: not-allowed }

.hc-success {
	display: none;
	align-items: center;
	gap: 10px;
	background: #F0FBF4;
	border: 1.5px solid #74C98A;
	border-radius: 10px;
	padding: 14px 16px;
	color: #1B6B35;
	font-size: .88rem;
	font-weight: 500
}

.hc-success.show { display: flex }

@media (max-width: 1020px) {
	.hc-inner {
		grid-template-columns: 1fr;
		gap: 40px
	}
}

/* Two-column contact card */
.hc-card-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center
}

.hc-panel {
	background: transparent;
	padding: 52px 44px;
	display: flex;
	flex-direction: column;
	gap: 20px
}

.hc-tag {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .10em;
	color: var(--r);
	background: none;
	border: none;
	padding: 0;
	align-self: flex-start
}

.hc-panel-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.8rem, 2.8vw, 2.4rem);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.2
}

.hc-panel-title em {
	font-style: italic;
	color: var(--r)
}

.hc-panel-sub {
	font-size: .95rem;
	color: var(--i60);
	line-height: 1.75;
	max-width: 400px
}

.hc-form-side {
	background: #fff;
	padding: 52px 44px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-radius: 24px;
	box-shadow: 0 8px 40px rgba(45,27,78,.10)
}

.hc-form-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 2px
}

.hc-form-sub {
	font-size: .88rem;
	color: var(--i60);
	margin-bottom: 16px
}

.hc-form-side .hc-form {
	flex: 1
}

@media (max-width: 800px) {
	.hc-card-wrap {
		grid-template-columns: 1fr
	}

	.hc-panel {
		padding: 40px 28px
	}

	.hc-form-side {
		padding: 40px 28px
	}
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
	background: #111111;
	padding: 60px 64px 0
}

.ft-inner {
	max-width: 1200px;
	margin: 0 auto
}

.ft-top {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
	gap: 48px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255,255,255,.08);
	margin-bottom: 0
}

.ft-brand p {
	font-size: 13.5px;
	color: rgba(255,255,255,.45);
	margin-top: 14px;
	line-height: 1.75;
	max-width: 260px
}

.ft-socials {
	display: flex;
	gap: 10px;
	margin-top: 20px
}

.soc {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.6);
	text-decoration: none;
	transition: background .2s, color .2s, border-color .2s
}

.soc:hover {
	background: var(--r);
	color: #fff;
	border-color: var(--r)
}

.ft-col h5 {
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: rgba(255,255,255,.9);
	margin-bottom: 18px
}

.ft-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px
}

.ft-col a {
	font-size: 13.5px;
	color: rgba(255,255,255,.45);
	text-decoration: none;
	transition: color .2s
}

.ft-col a:hover { color: #fff }

/* Subscribe column */
.ft-subscribe h5 { margin-bottom: 14px }

.ft-sub-form {
	display: flex;
	gap: 0;
	margin-bottom: 28px
}

.ft-sub-form input {
	flex: 1;
	font-family: 'Inter', sans-serif;
	font-size: .87rem;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-right: none;
	border-radius: 9px 0 0 9px;
	padding: 10px 14px;
	color: #fff;
	outline: none;
	transition: border-color .2s
}

.ft-sub-form input::placeholder { color: rgba(255,255,255,.3) }

.ft-sub-form input:focus { border-color: var(--r) }

.ft-sub-form button {
	background: var(--g);
	border: none;
	border-radius: 0 9px 9px 0;
	padding: 0 16px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: opacity .2s
}

.ft-sub-form button:hover { opacity: .85 }

.ft-contact-info {
	display: flex;
	flex-direction: column;
	gap: 14px
}

.ft-ci-row {
	display: flex;
	flex-direction: column;
	gap: 3px
}

.ft-ci-label {
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: rgba(255,255,255,.35)
}

.ft-ci-row a {
	font-size: .92rem;
	font-weight: 600;
	color: rgba(255,255,255,.75);
	text-decoration: none;
	transition: color .2s
}

.ft-ci-row a:hover { color: #fff }

/* Bottom bar */
.ft-bottom {
	padding: 20px 0;
	text-align: center;
	font-size: 13px;
	color: rgba(255,255,255,.3);
	border-top: 1px solid rgba(255,255,255,.06)
}

.ft-links a {
	color: rgba(255, 255, 255, .3);
	text-decoration: none;
	transition: color .2s
}

.ft-links a:hover {
	color: var(--rl)
}

/* â”€â”€ REVEAL â”€â”€ */
.rv {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease
}

.rv.on {
	opacity: 1;
	transform: none
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media(max-width:1020px) {

	nav,
	section,
	.trust,
	.app-cta,
	footer {
		padding-left: 24px;
		padding-right: 24px
	}

	nav {
		padding-top: 0;
		padding-bottom: 0
	}

	.nlinks {
		display: none
	}

	.hero-inner,
	.dual-grid,
	.dating-inner,
	.cta-inner,
	.ft-top {
		grid-template-columns: 1fr;
		gap: 40px
	}

	.hero-right,
	.hero .chip {
		display: none
	}

	.how-steps {
		grid-template-columns: 1fr 1fr
	}

	.ev-grid,
	.test-grid,
	.plans-grid,
	.safety-grid {
		grid-template-columns: 1fr
	}

	.h-stats {
		flex-wrap: wrap;
		gap: 20px
	}

	.cta-stats {
		grid-template-columns: 1fr 1fr
	}

	.ft-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px
	}

	.ft-bottom {
		flex-direction: column;
		gap: 10px
	}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* â•â• HERO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ct-hero {
    position: relative;
    overflow: hidden;
    background: var(--pl);
    padding: 140px 24px 80px;
    text-align: center
}

.ct-hero-blob1,
.ct-hero-blob2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none
}

.ct-hero-blob1 {
    width: 500px;
    height: 500px;
    top: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(68,70,58,.18) 0%, transparent 70%)
}

.ct-hero-blob2 {
    width: 400px;
    height: 400px;
    bottom: -160px;
    right: -80px;
    background: radial-gradient(circle, rgba(123,31,162,.15) 0%, transparent 70%)
}

.ct-hero-text {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto
}

.ct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--p);
    line-height: 1.15;
    margin: 16px 0 18px
}

.ct-hero-text h1 em {
    font-style: italic;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ct-hero-text p {
    font-size: 1.05rem;
    color: var(--i60);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto
}

/* â•â• MAIN TWO-COLUMN â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ct-main {
    background: #fff;
    padding: 80px 24px 100px
}

.ct-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 56px;
    align-items: start
}

/* â”€â”€ Left â€” info panel â”€â”€ */
.ct-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 12px
}

.ct-sub {
    font-size: .97rem;
    color: var(--i60);
    line-height: 1.65;
    margin-bottom: 36px
}

.ct-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px
}

.ct-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--wh);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 20px 22px;
    transition: box-shadow .2s, transform .2s
}

.ct-card:hover {
    box-shadow: 0 8px 32px rgba(68,70,58,.10);
    transform: translateY(-2px)
}

.ct-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--pk);
    color: var(--r);
    display: flex;
    align-items: center;
    justify-content: center
}

.ct-card-body h4 {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--i60);
    margin-bottom: 4px
}

.ct-card-body a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--p);
    text-decoration: none;
    margin-bottom: 2px;
    transition: color .2s
}

.ct-card-body a:hover { color: var(--r) }

.ct-card-body span {
    font-size: .82rem;
    color: var(--i60)
}

/* Social row */
.ct-social-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.ct-social-row span {
    font-size: .83rem;
    font-weight: 500;
    color: var(--i60)
}

.ct-soc {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--bd);
    background: var(--wh);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s
}

.ct-soc:hover {
    background: var(--g);
    color: #fff;
    border-color: transparent
}

/* â”€â”€ Right â€” form panel â”€â”€ */
.ct-form-wrap {
    background: var(--wh);
    border: 1px solid var(--bd);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 4px 40px rgba(45,27,78,.06)
}

.ct-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 8px
}

.ct-form-sub {
    font-size: .9rem;
    color: var(--i60);
    margin-bottom: 32px
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ct-field-full { margin-bottom: 24px }

.ct-field label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--p)
}

.req { color: var(--r) }

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: .93rem;
    color: var(--ink);
    background: var(--off);
    border: 1.5px solid var(--bd);
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none
}

.ct-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232D1B4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer
}

.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #b0a8c0 }

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: var(--r);
    box-shadow: 0 0 0 3px rgba(68,70,58,.10);
    background: var(--wh)
}

.ct-field textarea { resize: vertical; min-height: 130px }

/* Submit button */
.ct-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(91.28deg, #262E24 0%, #44463A 46.63%, #4B4E3E 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    border: none;
    border-radius: 9px;
    padding: 14px 32px;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(38,46,36,.28)
}

.ct-submit:hover:not(:disabled) {
    opacity: .88;
    transform: translateY(-1px)
}

.ct-submit:disabled { opacity: .65; cursor: not-allowed }

/* Success message */
.ct-success {
    display: none;
    align-items: center;
    gap: 14px;
    background: #F0FBF4;
    border: 1.5px solid #74C98A;
    border-radius: 12px;
    padding: 18px 20px;
    color: #1B6B35;
    margin-top: 16px
}

.ct-success.show { display: flex }

.ct-success p {
    font-size: .9rem;
    line-height: 1.55
}

/* â•â• FAQ STRIP â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ct-faq {
    background: var(--pl);
    padding: 80px 24px 90px;
    border-top: 1px solid var(--bd)
}

.ct-faq-inner {
    max-width: 1080px;
    margin: 0 auto
}

.ct-faq-inner > h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--p);
    margin-bottom: 40px;
    text-align: center
}

.ct-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.ct-faq-item {
    background: var(--wh);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 28px 28px 26px;
    transition: box-shadow .2s
}

.ct-faq-item:hover {
    box-shadow: 0 6px 28px rgba(68,70,58,.08)
}

.ct-faq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 10px
}

.ct-faq-item p {
    font-size: .9rem;
    color: var(--i60);
    line-height: 1.65
}

/* â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 860px) {
    .ct-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ct-faq-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    .ct-hero { padding: 120px 20px 60px }

    .ct-form-wrap {
        padding: 28px 20px
    }

    .ct-row {
        grid-template-columns: 1fr
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LEGAL PAGES (Privacy Policy & Terms of Service)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â• HERO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lg-hero {
    position: relative;
    overflow: hidden;
    background: var(--pl);
    padding: 140px 24px 72px;
    text-align: center
}

.lg-hero-blob1,
.lg-hero-blob2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none
}

.lg-hero-blob1 {
    width: 500px;
    height: 500px;
    top: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(68,70,58,.16) 0%, transparent 70%)
}

.lg-hero-blob2 {
    width: 380px;
    height: 380px;
    bottom: -140px;
    right: -80px;
    background: radial-gradient(circle, rgba(123,31,162,.13) 0%, transparent 70%)
}

.lg-hero-text {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto
}

.lg-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--p);
    line-height: 1.15;
    margin: 16px 0 18px
}

.lg-hero-text h1 em {
    font-style: italic;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lg-hero-text p {
    font-size: 1rem;
    color: var(--i60);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto
}

/* â•â• LAYOUT â€” sidebar + main â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lg-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 100px;
    align-items: stretch
}

.lg-no-sidebar {
    grid-template-columns: 1fr;
    max-width: 800px
}

/* â”€â”€ Sidebar TOC â”€â”€ */
.toc-sticky {
    position: sticky;
    top: 100px;
    padding-right: 28px
}

.toc-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--i60);
    margin-bottom: 14px
}

.lg-toc nav {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.toc-link {
    display: block;
    font-size: .82rem;
    color: var(--i60);
    text-decoration: none;
    padding: 6px 10px;
    border-left: 2px solid var(--bd);
    border-radius: 0 6px 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s, border-color .2s, background .2s
}

.toc-link:hover {
    color: var(--r);
    border-color: var(--rl);
    background: var(--pk)
}

.toc-link.active {
    color: var(--r);
    font-weight: 600;
    border-color: var(--r);
    background: var(--pk)
}

/* â”€â”€ Main body â”€â”€ */
.lg-body {
    min-width: 0;
    isolation: isolate
}

/* â•â• SECTIONS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lg-section {
    padding: 35px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--i12)
}

.lg-section:last-child {
    border-bottom: none
}

.lg-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 16px;
    scroll-margin-top: 110px
}

.lg-section h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--p);
    margin: 22px 0 10px
}

.lg-section p {
    font-size: .94rem;
    color: var(--i60);
    line-height: 1.78;
    margin-bottom: 14px
}

.lg-section p:last-child { margin-bottom: 0 }

.lg-section ul {
    margin: 8px 0 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lg-section ul li {
    font-size: .93rem;
    color: var(--i60);
    line-height: 1.65;
    padding-left: 4px
}

.lg-section ul li strong {
    color: var(--p);
    font-weight: 600
}

.lg-section a {
    color: var(--r);
    text-decoration: none;
    font-weight: 500
}

.lg-section a:hover {
    text-decoration: underline
}

/* â”€â”€ Highlight / callout boxes â”€â”€ */
.lg-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--pk);
    border: 1.5px solid rgba(68,70,58,.20);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 20px 0;
    color: var(--r)
}

.lg-highlight svg { flex-shrink: 0; margin-top: 1px }

.lg-highlight p {
    font-size: .88rem;
    color: var(--r);
    font-weight: 500;
    margin: 0;
    line-height: 1.6
}

.lg-warn {
    background: #FFF8EC;
    border-color: rgba(220,150,0,.25);
    color: #8A5C00
}

.lg-warn p { color: #8A5C00 }
.lg-warn svg { color: #C98A00 }

/* â”€â”€ Contact box â”€â”€ */
.lg-contact-box {
    background: var(--off);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px
}

.lg-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--p)
}

.lg-contact-row svg { flex-shrink: 0; color: var(--r) }

.lg-contact-row a {
    color: var(--r);
    font-weight: 600;
    text-decoration: none
}

.lg-contact-row a:hover { text-decoration: underline }

/* â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 860px) {
    .lg-layout {
        grid-template-columns: 1fr;
        padding: 40px 20px 80px
    }

    .toc-sticky {
        position: static;
        padding-right: 0;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--bd);
        margin-bottom: 40px
    }

    .lg-toc nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px
    }

    .toc-link {
        border-left: none;
        border-bottom: 2px solid var(--bd);
        border-radius: 6px 6px 0 0;
        padding: 6px 10px
    }

    .toc-link:hover,
    .toc-link.active {
        border-bottom-color: var(--r)
    }

    .lg-body {
        padding-left: 0;
        border-left: none
    }
}

@media (max-width: 480px) {
    .lg-hero { padding: 120px 20px 56px }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* â•â• HERO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ab-hero {
    position: relative;
    overflow: hidden;
    background: var(--pl);
    padding: 130px 64px 80px
}

.ab-blob1, .ab-blob2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none
}

.ab-blob1 {
    width: 560px; height: 560px;
    top: -200px; left: -100px;
    background: radial-gradient(circle, rgba(68,70,58,.16) 0%, transparent 70%)
}

.ab-blob2 {
    width: 420px; height: 420px;
    bottom: -160px; right: -80px;
    background: radial-gradient(circle, rgba(123,31,162,.13) 0%, transparent 70%)
}

.ab-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.ab-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--p);
    line-height: 1.2;
    margin: 16px 0 18px
}

.ab-hero-text h1 em {
    font-style: italic;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ab-hero-text p {
    font-size: 1rem;
    color: var(--i60);
    line-height: 1.75;
    margin-bottom: 28px
}

.ab-hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.ab-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.ab-stat {
    background: var(--wh);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow .2s, transform .2s
}

.ab-stat:hover {
    box-shadow: 0 8px 28px rgba(68,70,58,.10);
    transform: translateY(-2px)
}

.ab-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px
}

.ab-stat span {
    font-size: .82rem;
    font-weight: 500;
    color: var(--i60)
}

/* â•â• MISSION / VISION â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ab-mv {
    background: var(--wh);
    padding: 88px 0
}

.ab-mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.ab-mv-card {
    background: var(--pl);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 32px 28px;
    transition: box-shadow .2s, transform .2s
}

.ab-mv-card:hover {
    box-shadow: 0 10px 36px rgba(68,70,58,.10);
    transform: translateY(-3px)
}

.ab-mv-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--wh);
    color: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(68,70,58,.12)
}

.ab-mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 12px
}

.ab-mv-card p {
    font-size: .92rem;
    color: var(--i60);
    line-height: 1.72
}

/* â•â• STORY â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ab-story {
    background: var(--off);
    padding: 88px 0;
    border-top: 1px solid var(--bd)
}

.ab-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.ab-story-text .sh {
    margin: 12px 0 16px
}

.ab-story-text .sh em {
    font-style: italic;
    background: var(--g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ab-story-text .ss {
    text-align: left;
    margin-bottom: 14px
}

.ab-body {
    font-size: .94rem;
    color: var(--i60);
    line-height: 1.75;
    margin-bottom: 14px
}

/* Timeline */
.ab-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 28px
}

.ab-story-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--r), rgba(68,70,58,.1))
}

.ab-tl-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 32px;
    position: relative
}

.ab-tl-item:last-child { padding-bottom: 0 }

.ab-tl-dot {
    position: absolute;
    left: -28px;
    top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 0 3px var(--pk);
    flex-shrink: 0
}

.ab-tl-year {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--r);
    background: var(--pk);
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 6px
}

.ab-tl-content h4 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 5px
}

.ab-tl-content p {
    font-size: .87rem;
    color: var(--i60);
    line-height: 1.65
}

/* â•â• VALUES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ab-values {
    background: var(--wh);
    padding: 88px 0;
    border-top: 1px solid var(--bd)
}

.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px
}

.ab-val-card {
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 28px 24px;
    background: var(--off);
    transition: box-shadow .2s, transform .2s, background .2s
}

.ab-val-card:hover {
    background: var(--pl);
    box-shadow: 0 6px 28px rgba(68,70,58,.09);
    transform: translateY(-2px)
}

.ab-val-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--pk);
    color: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.ab-val-card h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 8px
}

.ab-val-card p {
    font-size: .88rem;
    color: var(--i60);
    line-height: 1.68
}

/* â•â• TEAM â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ab-team {
    background: var(--pl);
    padding: 88px 0;
    border-top: 1px solid var(--bd)
}

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 48px
}

.ab-team-card {
    background: var(--wh);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    transition: box-shadow .2s, transform .2s
}

.ab-team-card:hover {
    box-shadow: 0 10px 36px rgba(68,70,58,.10);
    transform: translateY(-3px)
}

.ab-team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.ab-team-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--p);
    margin-bottom: 4px
}

.ab-team-card span {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--r);
    margin-bottom: 12px
}

.ab-team-card p {
    font-size: .84rem;
    color: var(--i60);
    line-height: 1.65
}

/* â•â• CTA STRIP â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ab-cta {
    background: var(--g);
    padding: 72px 0
}

.ab-cta-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.ab-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 8px
}

.ab-cta h2 em {
    font-style: italic;
    opacity: .88
}

.ab-cta p {
    font-size: .95rem;
    color: rgba(255,255,255,.78)
}

.ab-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0
}

.ab-cta .btn-pr {
    background: #fff;
    color: var(--ink);
    box-shadow: none
}

.ab-cta .btn-pr:hover { background: rgba(255,255,255,.88); transform: translateY(-2px) }

.ab-cta .btn-sec {
    border-color: rgba(255,255,255,.5);
    color: #fff;
	padding: 0 20px;
    border-radius: 9px;
}

.ab-cta .btn-sec:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff
}

/* â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1020px) {
    .ab-hero { padding: 120px 32px 64px }
    .ab-hero-inner { grid-template-columns: 1fr; gap: 40px }
    .ab-mv-grid { grid-template-columns: 1fr 1fr }
    .ab-story-inner { grid-template-columns: 1fr; gap: 48px }
    .ab-values-grid { grid-template-columns: 1fr 1fr }
    .ab-team-grid { grid-template-columns: 1fr 1fr }
    .ab-cta-inner { padding: 0 32px }
}

@media (max-width: 640px) {
    .ab-hero { padding: 110px 20px 56px }
    .ab-mv-grid { grid-template-columns: 1fr }
    .ab-values-grid { grid-template-columns: 1fr }
    .ab-team-grid { grid-template-columns: 1fr 1fr }
    .ab-hero-stats { grid-template-columns: 1fr 1fr }
    .ab-cta-inner { padding: 0 20px; flex-direction: column; text-align: center }
}

/* â”€â”€ WordPress Utilities â”€â”€ */
.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter{ display:block; margin:0 auto 1rem; }
.wp-caption { max-width:100%; }
.wp-caption-text { font-size:.8rem; color:var(--i60); text-align:center; }
.screen-reader-text { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.entry-content img { max-width:100%; height:auto; border-radius:8px; }
.entry-content p { margin-bottom:1.2rem; }
.entry-content h2,.entry-content h3 { font-family:'Playfair Display',serif; margin:2rem 0 1rem; color:var(--p); }
.entry-content ul,.entry-content ol { margin:0 0 1.2rem 1.5rem; }
.entry-content a { color:var(--r); }
.page-main { padding:120px 0 80px; }
.page-title { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.8rem); color:var(--p); margin-bottom:24px; }
.page-thumb { margin-bottom:32px; border-radius:16px; overflow:hidden; }
/* Preloader */
#preloader { position:fixed; inset:0; background:#fff; z-index:9999; display:flex; align-items:center; justify-content:center; transition:opacity .4s,visibility .4s; }
#preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner { width:44px; height:44px; border:3px solid var(--bd); border-top-color:var(--r); border-radius:50%; animation:spin .8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
/* Mobile Nav */
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .25s,opacity .25s; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
@media (max-width:768px) {
  nav#nb { padding:0 24px; }
  .nav-hamburger { display:flex; }
  .nlinks { display:none; position:fixed; top:68px; left:0; right:0; background:#fff; flex-direction:column; padding:20px 24px 32px; box-shadow:0 8px 32px rgba(0,0,0,.12); z-index:299; gap:0; }
  .nlinks.nav-open { display:flex; }
  .nlinks li a { display:block; padding:12px 0; border-bottom:1px solid var(--bd); font-size:1rem; }
  .nav-cta { display:none; }
}
/* FAQ accordion */
.ct-faq-item h4 { cursor:pointer; }
.ct-faq-item p { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.ct-faq-item.open p { max-height:500px; }
/* Post cards */
.posts-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.post-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 4px 24px rgba(45,27,78,.07); }
.post-card-img { width:100%; height:180px; object-fit:cover; }
.post-card-body { padding:20px 22px 24px; }
.post-card-cat { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--r); margin-bottom:8px; }
.post-card-title a { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--ink); text-decoration:none; }
.post-card-excerpt { font-size:.85rem; color:var(--i60); margin:8px 0 14px; }
.post-card-meta { font-size:.78rem; color:var(--i60); display:flex; gap:12px; }
@media (max-width:900px) { .posts-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:580px) { .posts-grid { grid-template-columns:1fr; } }
/* Pagination */
.ruvia-pagination { display:flex; justify-content:center; gap:8px; padding:40px 0; flex-wrap:wrap; }
.ruvia-pagination a,.ruvia-pagination span { width:40px; height:40px; display:flex; align-items:center; justify-content:center; border-radius:10px; border:1.5px solid var(--bd); font-size:.9rem; font-weight:500; color:var(--ink); text-decoration:none; transition:all .2s; }
.ruvia-pagination .current,.ruvia-pagination a:hover { background:var(--r); color:#fff; border-color:var(--r); }
/* Breadcrumbs */
.ruvia-breadcrumbs { font-size:.83rem; color:var(--i60); padding:12px 0; }
.ruvia-breadcrumbs a { color:var(--r); text-decoration:none; }
.ruvia-breadcrumbs .sep { margin:0 6px; }
/* 404 */
.error-404 { min-height:70vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:120px 24px 80px; }
.error-404 h1 { font-family:'Playfair Display',serif; font-size:clamp(3rem,8vw,6rem); color:var(--r); line-height:1; margin-bottom:16px; }
.error-404 p { font-size:1.1rem; color:var(--i60); margin-bottom:32px; max-width:400px; }
.error-404 .h-btns { justify-content:center; }

/* â”€â”€ Inline form validation â”€â”€ */
/* â”€â”€ Inline form validation â”€â”€ */
.field-error {
    display: block;
    font-size: .78rem;
    color: #dc3545;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.4
}
/* Regular inputs */
.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220,53,69,.12) !important
}
/* Phone wrapper â€” error border wraps the whole +971 + input row */
.hc-phone-wrap.input-error,
.ct-phone-wrap.input-error {
    border-color: #dc3545 !important;
    outline-color: rgba(220,53,69,.18) !important
}
.hc-phone-wrap.input-error input,
.ct-phone-wrap.input-error input {
    border: none !important;
    box-shadow: none !important;
    outline: none !important
}


