/* ===================================================
 * GraceMatch PH — main stylesheet
 * Enqueued from /inc/enqueue.php as `gracematch-main`.
 * ===================================================*/

:root {
	--red: #C8102E;          /* love red — primary */
	--red-dark: #8B0E22;     /* deep crimson — hover / dark sections */
	--gold: #D4A24C;         /* warm gold accent (a touch warmer to harmonise with red) */
	--gold-light: #E8C57A;
	--cream: #FFF7F3;        /* warm cream with a faint pink tint */
	--cream-warm: #FBE3DE;   /* peachy blush — sections, badges */
	--sage: #7A8B6C;         /* green checkmark accent (kept for contrast) */
	--ink: #2A1818;
	--muted: #6B5757;
	--border: #F0DCD8;
	--white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', system-ui, sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 600;
	line-height: 1.15;
	color: var(--red-dark);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* === Announcement === */
.annc {
	background: var(--red-dark);
	color: var(--cream);
	font-size: 13px;
	padding: 10px 0;
	text-align: center;
	letter-spacing: 0.3px;
}
.annc span { color: var(--gold-light); font-weight: 600; }

/* === Header === */
.site-header {
	background: var(--cream);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; white-space: nowrap; }
.logo-mark {
	width: 38px; height: 38px;
	background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 700;
}
.logo-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--red-dark);
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.logo-text small {
	color: var(--gold);
	font-weight: 600;
	font-size: 14px;
	margin-left: 2px;
}
.nav-links { display: flex; gap: 28px; align-items: center; flex-wrap: nowrap; }
.nav-links a { font-size: 15px; color: var(--ink); font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* === Buttons === */
.btn {
	display: inline-block;
	padding: 11px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	text-align: center;
	font-family: inherit;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--red); border: 1px solid transparent; }
.btn-ghost:hover { border-color: var(--red); }
.btn-gold { background: var(--gold); color: var(--red-dark); }
.btn-gold:hover { background: var(--gold-light); }
.btn-large { padding: 15px 32px; font-size: 16px; }

/* === Hero === */
.hero {
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
	padding: 80px 0 100px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: ""; position: absolute; top: -100px; right: -100px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(201,162,76,0.15) 0%, transparent 70%);
	border-radius: 50%;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.eyebrow {
	display: inline-block;
	background: rgba(200, 16, 46, 0.08);
	color: var(--red);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 22px;
}
.hero h1 {
	font-size: clamp(40px, 5vw, 60px);
	margin-bottom: 22px;
	color: var(--red-dark);
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero p.lead {
	font-size: 18px;
	color: var(--muted);
	margin-bottom: 32px;
	max-width: 520px;
}

/* Hero form */
.hero-form {
	background: var(--white);
	padding: 8px;
	border-radius: 999px;
	display: flex;
	gap: 6px;
	box-shadow: 0 8px 32px rgba(200, 16, 46, 0.08);
	border: 1px solid var(--border);
	max-width: 520px;
	margin-bottom: 18px;
}
.hero-form select,
.hero-form input {
	border: none; outline: none;
	background: transparent;
	padding: 12px 16px;
	font-size: 15px;
	font-family: inherit;
	color: var(--ink);
	flex: 1;
	min-width: 0;
}
.hero-form .divider { width: 1px; background: var(--border); margin: 8px 0; }
.hero-meta { font-size: 13px; color: var(--muted); margin-top: 8px; }
.hero-meta strong { color: var(--red); }

/* Hero visual / profile cards */
.hero-visual { position: relative; height: 540px; }
.photo-card {
	position: absolute;
	background: var(--white);
	border-radius: 22px;
	box-shadow: 0 20px 50px rgba(43, 33, 32, 0.15);
	overflow: hidden;
	border: 8px solid var(--white);
}
.photo-card .photo {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.pc-1 {
	width: 240px; height: 320px;
	top: 30px; left: 20px;
	transform: rotate(-4deg);
}
.pc-1 .photo {
	background: linear-gradient(135deg, #F4D5C2 0%, #D9A78B 50%, #A86B4E 100%);
	position: relative;
}
.pc-1 .photo::after {
	content: "✦";
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: rgba(255,255,255,0.6);
	font-size: 24px;
}
.pc-2 {
	width: 220px; height: 290px;
	top: 100px; right: 30px;
	transform: rotate(5deg);
}
.pc-2 .photo {
	background: linear-gradient(135deg, #E8D4B0 0%, #C9A24C 60%, #8B6B2E 100%);
}
.pc-3 {
	width: 200px; height: 260px;
	bottom: 20px; left: 90px;
	transform: rotate(3deg);
}
.pc-3 .photo {
	background: linear-gradient(135deg, #D8C5B5 0%, #8B5A4E 50%, #5C3A33 100%);
}
.photo-label {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	padding: 16px;
	color: white;
}
.photo-label .name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; }
.photo-label .sub { font-size: 12px; opacity: 0.9; }
.verified-badge {
	position: absolute;
	top: 12px; right: 12px;
	background: var(--white);
	color: var(--red);
	width: 28px; height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.floating-quote {
	position: absolute;
	bottom: 80px; right: -10px;
	background: var(--white);
	padding: 14px 18px;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(43, 33, 32, 0.12);
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 15px;
	color: var(--red-dark);
	max-width: 200px;
	z-index: 3;
}
.floating-quote::before {
	content: "❝";
	color: var(--gold);
	font-size: 32px;
	line-height: 0;
	margin-right: 4px;
}

/* === Trust strip === */
.trust-strip {
	background: var(--white);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 32px 0;
}
.trust-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
	width: 44px; height: 44px;
	background: var(--cream-warm);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--red);
	font-size: 20px;
	flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 15px; color: var(--ink); }
.trust-text span { font-size: 13px; color: var(--muted); }

/* === Section helpers === */
section.block { padding: 100px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; }
.section-head h2 em { color: var(--gold); font-style: italic; font-weight: 500; }
.section-head p { font-size: 17px; color: var(--muted); }

/* === Why Us === */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.feature-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 36px 30px;
	transition: all 0.3s ease;
	position: relative;
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(200, 16, 46, 0.08);
	border-color: var(--gold-light);
}
.feature-icon {
	width: 56px; height: 56px;
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
	color: var(--red-dark);
	margin-bottom: 22px;
}
.feature-card h3 { font-size: 24px; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 15px; }

/* === How === */
.how { background: var(--white); }
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	position: relative;
}
.step { text-align: center; position: relative; }
.step-num {
	width: 60px; height: 60px;
	background: var(--cream-warm);
	color: var(--red);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 700;
	margin: 0 auto 20px;
	border: 2px solid var(--gold-light);
}
.step h4 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); }

/* === Testimonials === */
.testimonials { background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%); }
.test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.test-card {
	background: var(--white);
	border-radius: 18px;
	padding: 32px;
	border: 1px solid var(--border);
	position: relative;
}
.test-card::before {
	content: "❝";
	position: absolute;
	top: 18px; right: 24px;
	color: var(--gold);
	font-size: 56px;
	font-family: 'Cormorant Garamond', serif;
	line-height: 1;
	opacity: 0.5;
}
.test-quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 19px;
	color: var(--ink);
	line-height: 1.5;
	margin-bottom: 24px;
	font-style: italic;
}
.test-author {
	display: flex; align-items: center; gap: 14px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
}
.test-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
	flex-shrink: 0;
}
.test-author strong { display: block; font-size: 15px; color: var(--ink); }
.test-author span { font-size: 13px; color: var(--muted); }
.test-badge {
	background: var(--cream-warm);
	color: var(--red);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	margin-left: auto;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* === Pricing === */
.price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
}
.price-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 40px 32px;
	position: relative;
	transition: all 0.3s ease;
}
.price-card.featured {
	border: 2px solid var(--gold);
	transform: scale(1.04);
	box-shadow: 0 24px 60px rgba(200, 16, 46, 0.12);
	background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.price-tag-popular {
	position: absolute;
	top: -14px; left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--red-dark);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 999px;
	letter-spacing: 0.5px;
}
.price-card h3 { font-size: 26px; margin-bottom: 6px; }
.price-card .tier-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-amount {
	font-family: 'Cormorant Garamond', serif;
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 28px;
}
.price-amount .currency { font-size: 22px; color: var(--red); font-weight: 600; }
.price-amount .num { font-size: 52px; font-weight: 700; color: var(--red-dark); }
.price-amount .per { font-size: 15px; color: var(--muted); font-family: 'Inter', sans-serif; }
.price-card ul { list-style: none; margin-bottom: 32px; }
.price-card ul li {
	padding: 10px 0;
	font-size: 14px;
	color: var(--ink);
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.price-card ul li::before {
	content: "✓";
	color: var(--sage);
	font-weight: 700;
	flex-shrink: 0;
}
.price-card ul li.dim { color: var(--muted); }
.price-card ul li.dim::before { content: "—"; color: var(--border); }
.price-card .btn { width: 100%; }

/* === Safety === */
.safety { background: var(--white); }
.safety-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.safety-visual {
	background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
	border-radius: 22px;
	padding: 50px;
	border: 1px solid var(--border);
	position: relative;
}
.safety-shield {
	width: 100%;
	aspect-ratio: 1;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 12px var(--cream-warm), 0 0 0 1px var(--gold-light);
	position: relative;
}
.safety-shield .verse { text-align: center; padding: 40px; }
.safety-shield .verse-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	color: var(--red-dark);
	font-style: italic;
	line-height: 1.4;
	margin-bottom: 14px;
}
.safety-shield .verse-ref {
	font-size: 13px;
	color: var(--gold);
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.safety-list { margin-top: 30px; }
.safety-item {
	display: flex;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
}
.safety-item:last-child { border-bottom: 0; }
.safety-item-icon {
	width: 40px; height: 40px;
	background: var(--cream-warm);
	color: var(--red);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}
.safety-item h4 {
	font-size: 18px;
	margin-bottom: 4px;
	color: var(--ink);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
}
.safety-item p { font-size: 14px; color: var(--muted); }

/* === Stats === */
.stats-bar {
	background: var(--red-dark);
	color: var(--cream);
	padding: 70px 0;
	position: relative;
	overflow: hidden;
}
.stats-bar::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 50%, rgba(201, 162, 76, 0.15), transparent 60%);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
	position: relative;
}
.stats-head {
	text-align: center;
	position: relative;
	margin-bottom: 42px;
}
.stats-eyebrow {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-light);
	font-weight: 600;
	margin-bottom: 12px;
}
.stats-headline {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(26px, 3.2vw, 36px);
	font-weight: 600;
	color: var(--cream);
	margin: 0;
	line-height: 1.25;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.stat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 52px;
	font-weight: 700;
	color: var(--gold-light);
	line-height: 1;
	margin-bottom: 8px;
}
.stat-label {
	font-size: 14px;
	color: var(--cream);
	opacity: 0.9;
	letter-spacing: 0.5px;
	line-height: 1.45;
	max-width: 240px;
	margin: 0 auto;
}
@media (max-width: 640px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
	.stats-head {
		margin-bottom: 28px;
	}
}

/* === Filipino Christian men mini-band (PHP pricing + GCash) === */
.ph-pricing {
	margin-top: 56px;
	padding: 32px 28px;
	background: linear-gradient(135deg, #FFF9F7 0%, var(--cream-warm) 100%);
	border-radius: 18px;
	border: 1px dashed var(--gold);
}
.ph-pricing__head { text-align: center; margin-bottom: 24px; }
.ph-pricing__head .eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; font-weight: 700; }
.ph-pricing__head h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(22px, 3vw, 28px); color: var(--red-dark); margin: 0 0 8px; }
.ph-pricing__head h3 em { font-style: italic; color: var(--gold); }
.ph-pricing__head p { color: var(--muted); font-size: 14.5px; max-width: 580px; margin: 0 auto; line-height: 1.55; }
.ph-pricing__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 560px; margin: 0 auto; }
.ph-pricing__card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 18px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.ph-pricing__name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; color: var(--red-dark); margin-bottom: 8px; font-weight: 600; }
.ph-pricing__price { display: flex; align-items: baseline; justify-content: center; gap: 2px; font-family: 'Cormorant Garamond', Georgia, serif; margin-bottom: 10px; color: var(--red-dark); }
.ph-pricing__symbol { font-size: 20px; font-weight: 600; }
.ph-pricing__price strong { font-size: 36px; font-weight: 700; line-height: 1; }
.ph-pricing__per { font-size: 13px; color: var(--muted); font-family: 'Inter', sans-serif; }
.ph-pricing__pay { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--muted); background: var(--cream); padding: 5px 10px; border-radius: 999px; margin-bottom: 14px; }
.ph-pricing__pay svg { flex-shrink: 0; }
.ph-pricing .btn-ghost { display: inline-block; padding: 9px 18px; border-radius: 999px; border: 2px solid var(--red); color: var(--red); background: transparent; text-decoration: none; font-weight: 600; font-size: 13px; }
.ph-pricing .btn-ghost:hover { background: var(--red); color: #fff; }
@media (max-width: 540px) { .ph-pricing__cards { grid-template-columns: 1fr; } }

/* === Filipina free-signup band === */
.filipina-cta {
	padding: 80px 0;
	background:
		radial-gradient(circle at 85% 20%, rgba(212, 162, 76, 0.18), transparent 45%),
		linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 60%);
	position: relative;
	overflow: hidden;
}
.filipina-cta__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: center;
}
.filipina-cta__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red);
	background: rgba(200, 16, 46, 0.08);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.filipina-cta__headline {
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.05;
	color: var(--red-dark);
	margin-bottom: 18px;
}
.filipina-cta__headline em { font-style: italic; color: var(--gold); }
.filipina-cta__lead {
	font-size: 17px;
	color: var(--muted);
	max-width: 540px;
	margin-bottom: 24px;
}
.filipina-cta__points { list-style: none; margin: 0 0 30px; padding: 0; }
.filipina-cta__points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	color: var(--ink);
	margin-bottom: 12px;
	line-height: 1.45;
}
.filipina-cta__check {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--gold);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}
.filipina-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.filipina-cta__note { font-size: 13px; color: var(--muted); opacity: 0.85; }
.filipina-cta__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.filipina-cta__seal {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 35%, var(--red) 0%, var(--red-dark) 100%);
	color: var(--cream);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 16px 40px rgba(139, 14, 34, 0.28);
	border: 5px solid var(--gold);
	position: relative;
}
.filipina-cta__seal::before {
	content: "";
	position: absolute;
	inset: 12px;
	border-radius: 50%;
	border: 1.5px dashed rgba(232, 197, 122, 0.6);
}
.filipina-cta__seal-amt {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	color: var(--gold-light);
}
.filipina-cta__seal-sub {
	font-size: 14px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-top: 4px;
	opacity: 0.9;
}
.filipina-cta__seal-cap {
	font-size: 14px;
	color: var(--muted);
	max-width: 220px;
	margin-top: 18px;
	line-height: 1.45;
}
@media (max-width: 860px) {
	.filipina-cta { padding: 56px 0; }
	.filipina-cta__inner { grid-template-columns: 1fr; gap: 36px; }
	.filipina-cta__badge { order: -1; }
	.filipina-cta__actions { align-items: stretch; }
	.filipina-cta__actions .btn { text-align: center; }
}

/* Filipina back-link footnote inside the men-focused pricing section */
.pricing-fil-note {
	display: inline-block;
	margin-top: 14px;
	padding: 10px 18px;
	background: rgba(212, 162, 76, 0.12);
	border: 1px dashed var(--gold);
	border-radius: 999px;
	color: var(--red-dark);
	font-size: 14px;
	font-weight: 500;
}
.pricing-fil-note a {
	color: var(--red);
	text-decoration: underline;
	font-weight: 600;
}
.pricing-fil-note a:hover { color: var(--red-dark); }

/* === Final CTA === */
.final-cta {
	background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
	color: var(--cream);
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.final-cta::before {
	content: "✦";
	position: absolute;
	font-size: 360px;
	color: rgba(201, 162, 76, 0.06);
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-family: serif;
}
.final-cta h2 {
	color: var(--cream);
	font-size: clamp(36px, 4.5vw, 52px);
	margin-bottom: 18px;
	position: relative;
}
.final-cta h2 em { color: var(--gold-light); font-style: italic; }
.final-cta p {
	font-size: 18px;
	opacity: 0.9;
	margin-bottom: 36px;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.final-cta .btn-gold {
	font-size: 17px;
	padding: 16px 38px;
	position: relative;
}

/* === Footer === */
.site-footer {
	background: var(--ink);
	color: rgba(250, 246, 238, 0.7);
	padding: 70px 0 30px;
}
.foot-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 50px;
}
.foot-brand p {
	font-size: 14px;
	margin: 16px 0;
	max-width: 320px;
	line-height: 1.7;
}
.foot-socials { display: flex; gap: 12px; margin-top: 16px; }
.foot-socials a {
	width: 38px; height: 38px;
	background: rgba(255,255,255,0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: all 0.2s;
}
.foot-socials a:hover { background: var(--red); color: var(--gold-light); }
.site-footer h5 {
	color: var(--cream);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 18px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 6px 0; font-size: 14px; }
.site-footer ul li a:hover { color: var(--gold-light); }
.foot-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: rgba(250, 246, 238, 0.5);
	flex-wrap: wrap;
	gap: 10px;
}

/* === Responsive === */
@media (max-width: 980px) {
	.hero-grid, .safety-grid { grid-template-columns: 1fr; }
	.hero-visual { height: 480px; }
	.why-grid, .test-grid, .price-grid, .steps { grid-template-columns: 1fr 1fr; }
	.stats-grid, .trust-row { grid-template-columns: 1fr 1fr; gap: 24px; }
	.foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.nav-links { display: none; }
}
@media (max-width: 600px) {
	.why-grid, .test-grid, .price-grid, .steps, .stats-grid, .trust-row { grid-template-columns: 1fr; }
	section.block { padding: 70px 0; }
	.price-card.featured { transform: none; }
	.foot-grid { grid-template-columns: 1fr; }
	.hero { padding: 50px 0 60px; }
	.floating-quote { display: none; }
	.hero-form { flex-direction: column; border-radius: 22px; }
	.hero-form .divider { display: none; }
}

/* === WP Core / accessibility === */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px; width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.entry-content img { border-radius: 8px; }


/* === Content pages (Help Center, Privacy, ToS, About) ===
 * Typography polish for any page that uses page.php's .entry-content wrapper.
 */
.entry-content { font-size: 16px; line-height: 1.75; }
.entry-content h2 {
	font-size: 30px;
	margin-top: 2em;
	margin-bottom: 0.5em;
	padding-bottom: 0.35em;
	border-bottom: 2px solid var(--gold-light);
}
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 {
	font-size: 21px;
	margin-top: 1.8em;
	margin-bottom: 0.4em;
	color: var(--red);
}
.entry-content p { margin: 0 0 1em; }
.entry-content hr {
	border: none;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--border), transparent);
	margin: 3em 0;
}
.entry-content a {
	color: var(--red);
	text-decoration: underline;
	text-decoration-color: var(--gold-light);
	text-underline-offset: 3px;
	transition: color .2s, text-decoration-color .2s;
}
.entry-content a:hover {
	color: var(--red-dark);
	text-decoration-color: var(--red);
}
.entry-content ul,
.entry-content ol {
	padding-left: 1.5em;
	margin: 0.8em 0 1.4em;
}
.entry-content ul li,
.entry-content ol li { padding: 4px 0; }
.entry-content ul li::marker { color: var(--gold); }
.entry-content strong { color: var(--red-dark); }
.gma-help-intro {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 19px !important;
	font-style: italic;
	color: var(--muted) !important;
	line-height: 1.5;
	margin-bottom: 1.5em;
}


/* === Mobile hamburger menu === */
.nav-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	margin-left: auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border-radius: 8px;
}
.nav-toggle:hover { background: var(--cream-warm); }
.nav-toggle .bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--red);
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-panel { display: contents; }

@media (max-width: 980px) {
	.nav-toggle { display: flex; }
	.nav-panel {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--cream);
		border-top: 1px solid var(--border);
		border-bottom: 1px solid var(--border);
		box-shadow: 0 8px 24px rgba(43, 24, 24, 0.06);
		flex-direction: column;
		padding: 8px 24px 24px;
		gap: 0;
	}
	.nav-panel.is-open { display: flex; }
	.nav-panel .nav-links {
		display: flex !important;
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}
	.nav-panel .nav-links a {
		padding: 14px 4px;
		border-bottom: 1px solid var(--border);
		font-size: 16px;
	}
	.nav-panel .nav-links a:last-child { border-bottom: none; }
	.nav-panel .nav-cta {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding-top: 18px;
		margin-top: 8px;
		border-top: 1px solid var(--border);
	}
	.nav-panel .nav-cta .btn { width: 100%; }
	.site-header { position: relative; }
}


/* === Couple avatars on success-stories testimonials === */
.test-avatar--couple {
	position: relative;
	width: 68px;
	height: 48px;
	background: none;
	flex-shrink: 0;
}
.test-avatar__face {
	position: absolute;
	top: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid var(--white);
	background: var(--cream-warm);
	object-fit: cover;
	box-shadow: 0 2px 6px rgba(43, 24, 24, 0.10);
}
.test-avatar__face--her { left: 0; z-index: 2; }
.test-avatar__face--him { left: 20px; z-index: 1; }


/* === Latest blog snippet on homepage === */
.latest-blog { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%); }
.blog-snippet {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 22px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	max-width: 980px;
	margin: 0 auto;
	box-shadow: 0 16px 40px rgba(200, 16, 46, 0.06);
	transition: transform .25s ease, box-shadow .25s ease;
}
.blog-snippet:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 50px rgba(200, 16, 46, 0.10);
}
.blog-snippet__image {
	display: block;
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--red) 100%);
	min-height: 280px;
	position: relative;
	overflow: hidden;
}
.blog-snippet__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.blog-snippet__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-snippet__mark {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 120px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1;
}
.blog-snippet__body {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.blog-snippet__date {
	font-size: 13px;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	margin-bottom: 14px;
}
.blog-snippet__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 28px;
	line-height: 1.2;
	margin: 0 0 14px;
	color: var(--red-dark);
}
.blog-snippet__title a { color: inherit; text-decoration: none; }
.blog-snippet__title a:hover { color: var(--red); }
.blog-snippet__excerpt {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 22px;
}
.blog-snippet__cta {
	align-self: flex-start;
	display: inline-block;
}
.latest-blog__all {
	text-align: center;
	margin: 30px 0 0;
	font-size: 15px;
}
.latest-blog__all a {
	color: var(--red);
	text-decoration: underline;
	text-decoration-color: var(--gold-light);
	text-underline-offset: 4px;
	font-weight: 600;
}
.latest-blog__all a:hover {
	color: var(--red-dark);
	text-decoration-color: var(--red);
}
@media (max-width: 800px) {
	.blog-snippet { grid-template-columns: 1fr; }
	.blog-snippet__image { min-height: 220px; }
	.blog-snippet__body { padding: 28px; }
	.blog-snippet__title { font-size: 24px; }
}
