/*
 * Hablando con Alba - site stylesheet
 *
 * Design tokens, type scale and section components are ported from the
 * WordPress plugin's assets/css/landing.css. Two deliberate changes:
 *   - the `body.hca-landing-page` rules that neutralised the Astra theme are
 *     gone (nothing to fight here);
 *   - `.wp-block-button__link` and friends became semantic classes (.btn, .card).
 */

/* ------------------------------------------------------------------ tokens */
:root {
	--ink: #2d2330;
	--ink-soft: #5d5260;
	--plum: #633451;
	--plum-dark: #45233a;
	--rose: #c85e78;
	--rose-soft: #f7e7ec;
	--gold: #e3aa3a;
	--cream: #fffaf3;
	--sand: #f8f0e5;
	--white: #fff;
	--border: rgba(69, 35, 58, 0.14);
	--shadow: 0 24px 70px rgba(69, 35, 58, 0.14);
	--serif: Georgia, "Times New Roman", serif;
	--sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--shell: 1160px;
	--header-h: 78px;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	background: var(--white);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.72;
	margin: 0;
	overflow-x: hidden;
}

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

a {
	color: var(--plum);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin: 0 0 0.6em;
}

p, ul, ol {
	margin: 0 0 1.15em;
}

:focus-visible {
	outline: 3px solid rgba(227, 170, 58, 0.75);
	outline-offset: 3px;
}

.skip-link {
	background: var(--plum-dark);
	color: var(--white);
	left: 8px;
	padding: 10px 16px;
	position: fixed;
	top: -60px;
	border-radius: 0 0 10px 10px;
	transition: top 140ms ease;
	z-index: 200;
}

.skip-link:focus {
	top: 0;
}

.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

/* ------------------------------------------------------------------ layout */
.shell {
	margin-inline: auto;
	width: min(var(--shell), calc(100% - 48px));
}

.section {
	padding: 92px 0;
	position: relative;
}

.section--tight {
	padding: 64px 0;
}

.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--sand { background: linear-gradient(135deg, var(--sand) 0%, #f9eef2 100%); }
.section--plum { background: var(--plum-dark); color: var(--white); }

.kicker {
	color: var(--rose);
	font-family: var(--sans);
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.eyebrow {
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(99, 52, 81, 0.12);
	border-radius: 999px;
	box-shadow: 0 8px 30px rgba(69, 35, 58, 0.06);
	color: var(--rose);
	display: inline-flex;
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin-bottom: 18px;
	padding: 9px 14px;
	text-transform: uppercase;
}

.section-title {
	font-size: clamp(2.2rem, 4vw, 3.65rem);
	margin-bottom: 24px;
}

.section-intro {
	color: var(--ink-soft);
	font-size: 1.12rem;
	line-height: 1.75;
	margin-bottom: 46px;
}

.section--plum .section-title { color: var(--white); }
.section--plum .kicker { color: var(--gold); }
.section--plum .section-intro,
.section--plum p { color: rgba(255, 255, 255, 0.82); }

.narrow { max-width: 850px; }

.center {
	margin-inline: auto;
	text-align: center;
}

/* ----------------------------------------------------------------- buttons */
.btn {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--sans);
	font-size: 0.98rem;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 54px;
	padding: 15px 24px;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease,
		background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn--primary {
	background: var(--plum);
	box-shadow: 0 14px 34px rgba(99, 52, 81, 0.24);
	color: var(--white);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: var(--plum-dark);
	box-shadow: 0 18px 38px rgba(99, 52, 81, 0.32);
}

.btn--secondary {
	background: rgba(255, 255, 255, 0.68);
	border-color: rgba(99, 52, 81, 0.24);
	color: var(--plum);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
	background: var(--white);
	border-color: var(--plum);
}

.btn--light {
	background: var(--white);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
	color: var(--plum-dark);
}

.btn--light:hover,
.btn--light:focus-visible { background: #fff6e8; }

.btn--text {
	background: none;
	border: 0;
	color: var(--gold);
	min-height: 0;
	padding: 6px 10px;
}

.section--plum .btn--secondary {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.38);
	color: var(--white);
}

.section--plum .btn--secondary:hover,
.section--plum .btn--secondary:focus-visible {
	background: var(--white);
	border-color: var(--white);
	color: var(--plum-dark);
}

.buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.buttons--center { justify-content: center; }

.microcopy {
	color: var(--ink-soft);
	font-size: 0.87rem;
	line-height: 1.55;
	max-width: 610px;
}

/* ------------------------------------------------------------------ header */
.site-header {
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header__bar {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	min-height: var(--header-h);
}

.brand {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 11px;
	text-decoration: none;
}

.brand img {
	display: block;
	height: 42px;
	width: auto;
}

.brand__text {
	color: var(--plum-dark);
	font-family: var(--serif);
	font-size: 1.12rem;
	line-height: 1.15;
}

.nav {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav a {
	border-radius: 999px;
	color: var(--ink-soft);
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 9px 12px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
	background: var(--rose-soft);
	color: var(--plum-dark);
}

.nav a[aria-current="page"] {
	background: var(--rose-soft);
	color: var(--plum-dark);
}

.header-actions {
	align-items: center;
	display: flex;
	gap: 10px;
}

.lang-switch {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 999px;
	display: inline-flex;
	overflow: hidden;
	padding: 2px;
}

.lang-switch a {
	border-radius: 999px;
	color: var(--ink-soft);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 6px 11px;
	text-decoration: none;
	text-transform: uppercase;
}

.lang-switch a[aria-current="true"] {
	background: var(--plum);
	color: var(--white);
}

.header-cta {
	min-height: 44px;
	padding: 10px 18px;
	font-size: 0.88rem;
}

.nav-toggle {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	cursor: pointer;
	display: none;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.nav-toggle span {
	background: var(--plum-dark);
	border-radius: 2px;
	display: block;
	height: 2px;
	position: relative;
	width: 20px;
}

.nav-toggle span::before,
.nav-toggle span::after {
	background: inherit;
	border-radius: 2px;
	content: "";
	left: 0;
	position: absolute;
	height: 2px;
	width: 100%;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* -------------------------------------------------------------------- hero */
.hero {
	background:
		radial-gradient(circle at 10% 15%, rgba(227, 170, 58, 0.18), transparent 33%),
		radial-gradient(circle at 91% 18%, rgba(200, 94, 120, 0.18), transparent 36%),
		linear-gradient(135deg, #fffaf3 0%, #fff7f3 48%, #f8edf2 100%);
	overflow: hidden;
	padding: 82px 0 0;
	position: relative;
}

.hero::before,
.hero::after {
	border-radius: 50%;
	content: "";
	filter: blur(1px);
	pointer-events: none;
	position: absolute;
}

.hero::before {
	background: linear-gradient(135deg, rgba(227, 170, 58, 0.28), rgba(200, 94, 120, 0.10));
	height: 310px;
	left: -170px;
	top: 10%;
	width: 310px;
}

.hero::after {
	background: linear-gradient(135deg, rgba(99, 52, 81, 0.12), rgba(200, 94, 120, 0.24));
	height: 420px;
	right: -250px;
	top: 0;
	width: 420px;
}

.hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(48px, 7vw, 96px);
	grid-template-columns: 58fr 42fr;
	position: relative;
	z-index: 2;
}

.hero__title {
	font-size: clamp(3rem, 6vw, 5.2rem);
	margin-bottom: 28px;
	max-width: 800px;
}

.hero__title em {
	color: var(--rose);
	font-style: italic;
}

.hero__lead {
	color: var(--ink);
	font-size: clamp(1.12rem, 2vw, 1.3rem);
	font-weight: 600;
	line-height: 1.65;
	margin-bottom: 15px;
	max-width: 730px;
}

.hero__support {
	color: var(--ink-soft);
	font-size: 1.05rem;
	margin-bottom: 30px;
	max-width: 690px;
}

/* portrait with the decorative gold/rose accents */
.photo-frame {
	margin: 0 auto;
	max-width: 430px;
	position: relative;
}

.photo-frame::before {
	background: var(--gold);
	border-radius: 50%;
	content: "";
	height: 82px;
	position: absolute;
	right: -24px;
	top: 46px;
	width: 82px;
	z-index: 0;
}

.photo-frame::after {
	border: 2px solid rgba(200, 94, 120, 0.45);
	border-radius: 50%;
	bottom: 54px;
	content: "";
	height: 110px;
	left: -42px;
	position: absolute;
	width: 110px;
	z-index: 0;
}

.portrait {
	margin: 0;
	position: relative;
	z-index: 1;
}

.portrait img {
	aspect-ratio: 2 / 3;
	border: 10px solid rgba(255, 255, 255, 0.92);
	border-radius: 220px 220px 34px 34px;
	box-shadow: var(--shadow);
	display: block;
	object-fit: cover;
	width: 100%;
}

.photo-note {
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(99, 52, 81, 0.11);
	border-radius: 16px;
	bottom: 24px;
	box-shadow: 0 16px 44px rgba(69, 35, 58, 0.16);
	left: -32px;
	padding: 14px 18px;
	position: absolute;
	z-index: 3;
}

.photo-note strong {
	color: var(--plum-dark);
	display: block;
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.2;
}

.photo-note span {
	color: var(--ink-soft);
	font-size: 0.78rem;
	line-height: 1.35;
}

.trust-strip {
	align-items: center;
	background: var(--white);
	border: 1px solid rgba(99, 52, 81, 0.1);
	border-bottom: 0;
	border-radius: 22px 22px 0 0;
	box-shadow: 0 -10px 42px rgba(69, 35, 58, 0.06);
	display: grid;
	gap: 10px 28px;
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	margin: 70px 0 0;
	padding: 24px 30px;
	position: relative;
	z-index: 3;
}

.trust-strip li {
	align-items: center;
	color: var(--ink-soft);
	display: flex;
	font-size: 0.92rem;
	gap: 9px;
}

.trust-strip li::before {
	align-items: center;
	background: var(--rose-soft);
	border-radius: 50%;
	color: var(--rose);
	content: "\2713";
	display: inline-flex;
	flex: 0 0 25px;
	font-size: 0.78rem;
	height: 25px;
	justify-content: center;
}

.section-art {
	border-radius: 24px;
	box-shadow: var(--shadow);
	margin: 0;
	overflow: hidden;
}

.section-art img {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	width: 100%;
}

/* ------------------------------------------------------------------- cards */
.card-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
	background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: 0 12px 34px rgba(69, 35, 58, 0.06);
	padding: 28px 24px;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
	border-color: rgba(200, 94, 120, 0.3);
	box-shadow: 0 20px 45px rgba(69, 35, 58, 0.1);
	transform: translateY(-4px);
}

.card__icon {
	align-items: center;
	background: var(--rose-soft);
	border-radius: 12px;
	color: var(--rose);
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
	width: 42px;
}

.card h3 {
	color: var(--plum-dark);
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.28;
	margin-bottom: 12px;
}

.card p {
	color: var(--ink-soft);
	font-size: 0.95rem;
	line-height: 1.68;
}

.card p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- services */
.service {
	align-items: start;
	border-top: 1px solid var(--border);
	display: grid;
	gap: clamp(22px, 3.5vw, 44px);
	/* The mirrored source images are only 150x150, so the slot stays small
	   rather than upscaling them into a blurry banner. */
	grid-template-columns: 150px minmax(0, 1fr);
	padding: 44px 0;
}

.service:first-of-type { border-top: 0; }

.service__media {
	border: 6px solid var(--white);
	border-radius: 24px;
	box-shadow: 0 12px 30px rgba(69, 35, 58, 0.12);
	overflow: hidden;
	position: relative;
}

.service__media img,
.service__media--empty {
	aspect-ratio: 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.service__media--empty {
	background:
		radial-gradient(circle at 30% 25%, rgba(227, 170, 58, 0.35), transparent 55%),
		linear-gradient(135deg, var(--rose-soft), #efe2ea);
}

.service h2 {
	color: var(--plum-dark);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin-bottom: 14px;
}

.service p {
	color: var(--ink-soft);
	font-size: 1rem;
}

.price-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.price-list li {
	background: var(--white);
	border: 1px solid rgba(200, 94, 120, 0.28);
	border-radius: 999px;
	color: var(--plum-dark);
	font-size: 0.86rem;
	font-weight: 700;
	padding: 8px 15px;
}

.services-intro {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(0, 1fr) 240px;
}

.services-intro__portrait {
	margin: 0;
}

.services-intro__portrait img {
	aspect-ratio: 1;
	border: 8px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: var(--shadow);
	display: block;
	object-fit: cover;
	width: 100%;
}

/* ------------------------------------------------------------------ videos */
.video-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.video-card {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	color: var(--ink-soft);
	display: flex;
	gap: 14px;
	height: 100%;
	padding: 20px 22px;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-card:hover,
.video-card:focus-visible {
	border-color: rgba(200, 94, 120, 0.35);
	box-shadow: 0 18px 40px rgba(69, 35, 58, 0.12);
	transform: translateY(-3px);
}

.video-card__play {
	background: linear-gradient(135deg, var(--plum), var(--rose));
	border-radius: 50%;
	flex: 0 0 40px;
	height: 40px;
	position: relative;
}

.video-card__play::after {
	border-color: transparent transparent transparent var(--white);
	border-style: solid;
	border-width: 7px 0 7px 11px;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-40%, -50%);
}

.video-card__title {
	flex: 1 1 auto;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.45;
}

.video-card__host {
	color: var(--rose);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* ------------------------------------------------------------------- lists */
.check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.check-list li {
	color: var(--ink-soft);
	padding: 15px 0 15px 44px;
	position: relative;
}

.check-list li + li { border-top: 1px solid rgba(99, 52, 81, 0.1); }

.check-list li::before {
	align-items: center;
	background: var(--white);
	border: 1px solid rgba(200, 94, 120, 0.18);
	border-radius: 50%;
	color: var(--rose);
	content: "\2713";
	display: flex;
	font-size: 0.8rem;
	font-weight: 900;
	height: 28px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 16px;
	width: 28px;
}

.check-list strong { color: var(--plum-dark); }

.check-list--large li {
	font-size: 1.03rem;
	padding-bottom: 20px;
	padding-top: 20px;
}

.check-list--large li::before { top: 21px; }

.section--plum .check-list li { color: rgba(255, 255, 255, 0.82); }
.section--plum .check-list li + li { border-top-color: rgba(255, 255, 255, 0.16); }
.section--plum .check-list li::before {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--gold);
}

/* ------------------------------------------------------------------- quote */
.split {
	align-items: center;
	display: grid;
	gap: clamp(48px, 8vw, 108px);
	grid-template-columns: 58fr 42fr;
}

.quote-card {
	background: var(--plum-dark);
	border-radius: 26px;
	box-shadow: 0 24px 68px rgba(69, 35, 58, 0.22);
	color: var(--white);
	overflow: hidden;
	padding: 54px 46px;
	position: relative;
}

.quote-card::after {
	background: rgba(227, 170, 58, 0.24);
	border-radius: 50%;
	bottom: -110px;
	content: "";
	height: 260px;
	position: absolute;
	right: -105px;
	width: 260px;
}

.quote-card__mark {
	color: var(--gold);
	font-family: var(--serif);
	font-size: 7rem;
	line-height: 0.8;
	margin: 0 0 24px;
	position: relative;
	z-index: 1;
}

.quote-card blockquote {
	color: var(--white);
	font-family: var(--serif);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-style: italic;
	line-height: 1.35;
	margin: 0 0 26px;
	position: relative;
	z-index: 1;
}

.quote-card cite {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.86rem;
	font-style: normal;
	position: relative;
	z-index: 1;
}

/* ------------------------------------------------------------ testimonials */
.testimonial-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial {
	background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
	border: 1px solid var(--border);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	padding: 32px 30px;
	position: relative;
}

.testimonial::before {
	color: var(--rose-soft);
	content: "\201C";
	font-family: var(--serif);
	font-size: 5rem;
	left: 20px;
	line-height: 1;
	position: absolute;
	top: 10px;
	z-index: 0;
}

.testimonial blockquote {
	color: var(--ink-soft);
	font-size: 0.98rem;
	line-height: 1.7;
	margin: 0 0 20px;
	position: relative;
	z-index: 1;
}

.testimonial footer {
	border-top: 1px solid var(--border);
	margin-top: auto;
	padding-top: 16px;
}

.testimonial cite {
	color: var(--plum-dark);
	display: block;
	font-family: var(--serif);
	font-size: 1.05rem;
	font-style: normal;
	font-weight: 600;
}

.testimonial .role {
	color: var(--ink-soft);
	font-size: 0.82rem;
}

/* -------------------------------------------------------------------- blog */
.post-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.post-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
	box-shadow: 0 20px 45px rgba(69, 35, 58, 0.12);
	transform: translateY(-4px);
}

.post-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.post-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 26px 24px;
}

.post-card h3 {
	color: var(--plum-dark);
	font-size: 1.28rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 10px;
}

.post-card h3 a {
	color: inherit;
	text-decoration: none;
}

.post-card h3 a:hover { color: var(--rose); }

.post-card p {
	color: var(--ink-soft);
	font-size: 0.93rem;
}

.post-meta {
	color: var(--rose);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.post-card__more {
	color: var(--plum);
	font-size: 0.88rem;
	font-weight: 800;
	margin-top: auto;
	padding-top: 14px;
	text-decoration: none;
}

/* --------------------------------------------------------- article / prose */
.article-hero {
	background: linear-gradient(135deg, var(--cream), #f8edf2);
	padding: 66px 0 0;
}

.article-hero h1 {
	font-size: clamp(2.2rem, 4.6vw, 3.6rem);
	max-width: 880px;
}

.article-hero__figure {
	border-radius: 24px 24px 0 0;
	margin: 44px 0 0;
	overflow: hidden;
}

.article-hero__figure img {
	aspect-ratio: 16 / 7;
	display: block;
	object-fit: cover;
	width: 100%;
}

.prose {
	margin-inline: auto;
	max-width: 760px;
}

.prose > :first-child { margin-top: 0; }

.prose h2 {
	color: var(--plum-dark);
	font-size: clamp(1.6rem, 3vw, 2.15rem);
	margin: 2em 0 0.6em;
}

.prose h3 {
	color: var(--plum-dark);
	font-size: 1.32rem;
	font-weight: 600;
	margin: 1.7em 0 0.5em;
}

.prose p,
.prose li {
	color: var(--ink-soft);
	font-size: 1.05rem;
	line-height: 1.78;
}

.prose ol,
.prose ul { padding-left: 1.3em; }

.prose li { margin-bottom: 0.6em; }

.prose li::marker {
	color: var(--rose);
	font-weight: 700;
}

.prose figure {
	margin: 2.2em 0;
}

.prose figure img { border-radius: 16px; }

.prose figcaption {
	color: var(--ink-soft);
	font-size: 0.85rem;
	font-style: italic;
	margin-top: 10px;
	text-align: center;
}

/* Numbered lesson headings inside the ported blog posts. */
.prose .post-step {
	align-items: baseline;
	display: flex;
	gap: 14px;
	margin: 2em 0 0.5em;
}

.prose .post-step span {
	align-items: center;
	background: linear-gradient(135deg, var(--plum), var(--rose));
	border-radius: 50%;
	color: var(--white);
	display: inline-flex;
	flex: 0 0 34px;
	font-family: var(--sans);
	font-size: 0.82rem;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	letter-spacing: 0;
}

.prose blockquote {
	border-left: 4px solid var(--rose);
	color: var(--plum-dark);
	font-family: var(--serif);
	font-size: 1.2rem;
	font-style: italic;
	margin: 2em 0;
	padding: 6px 0 6px 24px;
}

/* -------------------------------------------------------------------- form */
.form-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 24px;
	box-shadow: var(--shadow);
	padding: clamp(28px, 4vw, 48px);
}

.field {
	margin-bottom: 20px;
}

.field label {
	color: var(--plum-dark);
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	margin-bottom: 7px;
}

.field .req { color: var(--rose); }

.field input,
.field textarea {
	background: #fffdfb;
	border: 1px solid rgba(99, 52, 81, 0.22);
	border-radius: 12px;
	color: var(--ink);
	font-family: inherit;
	font-size: 1rem;
	padding: 13px 15px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.field input:focus,
.field textarea:focus {
	border-color: var(--rose);
	box-shadow: 0 0 0 4px rgba(200, 94, 120, 0.12);
	outline: none;
}

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

.field--error input,
.field--error textarea {
	border-color: #b3261e;
	background: #fff8f7;
}

.field__error {
	color: #b3261e;
	display: block;
	font-size: 0.83rem;
	font-weight: 600;
	margin-top: 6px;
}

.field-row {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.honeypot {
	left: -9999px;
	position: absolute;
}

.flash {
	border-radius: 14px;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 24px;
	padding: 16px 20px;
}

.flash--success {
	background: #edf7ee;
	border: 1px solid #bcdfc0;
	color: #24603a;
}

.flash--error {
	background: #fdf0ef;
	border: 1px solid #f0c4c1;
	color: #8f2018;
}

.contact-aside {
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.contact-aside a {
	color: var(--plum);
	font-weight: 700;
}

/* ---------------------------------------------------------------- process */
.process-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	margin-top: 52px;
	position: relative;
}

.process-step {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px 28px 30px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.process-step h3 {
	color: var(--plum-dark);
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.process-step p {
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.step-number {
	align-items: center;
	background: linear-gradient(135deg, var(--plum), var(--rose));
	border: 6px solid var(--white);
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(99, 52, 81, 0.2);
	color: var(--white);
	display: flex;
	font-size: 0.9rem;
	font-weight: 900;
	height: 52px;
	justify-content: center;
	margin: -58px auto 24px;
	width: 52px;
}

/* --------------------------------------------------------------------- cta */
.cta-card {
	background:
		radial-gradient(circle at 14% 12%, rgba(227, 170, 58, 0.26), transparent 28%),
		radial-gradient(circle at 88% 85%, rgba(200, 94, 120, 0.27), transparent 35%),
		linear-gradient(135deg, var(--plum-dark), var(--plum));
	border-radius: 30px;
	box-shadow: 0 28px 80px rgba(69, 35, 58, 0.22);
	padding: 72px 34px;
	text-align: center;
}

.cta-card .kicker { color: var(--gold); }

.cta-card h2 {
	color: var(--white);
	font-size: clamp(2.2rem, 4.6vw, 3.9rem);
	margin-bottom: 10px;
}

.cta-card__subtitle {
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	margin-bottom: 30px;
}

.cta-card__note {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.82rem;
	margin: 15px 0 0;
}

/* -------------------------------------------------------------- disclaimer */
.disclaimer {
	align-items: flex-start;
	background: #fff;
	border: 1px solid rgba(69, 35, 58, 0.14);
	border-left: 4px solid #8a5a73;
	border-radius: 14px;
	box-shadow: 0 10px 32px rgba(69, 35, 58, 0.06);
	color: var(--ink-soft);
	display: flex;
	gap: 16px;
	line-height: 1.62;
	margin-inline: auto;
	max-width: 1040px;
	padding: 24px 26px;
}

.disclaimer__icon {
	align-items: center;
	background: #f1e8ed;
	border-radius: 50%;
	color: var(--plum);
	display: inline-flex;
	flex: 0 0 30px;
	font-family: var(--serif);
	font-size: 1rem;
	font-style: italic;
	font-weight: 700;
	height: 30px;
	justify-content: center;
	margin-top: 2px;
}

.disclaimer h2 {
	color: var(--plum-dark);
	font-size: 1.22rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 9px;
}

.disclaimer p {
	font-size: 0.84rem;
	margin: 0 0 9px;
}

.disclaimer p:last-child { margin-bottom: 0; }

.section--disclaimer {
	background: #f7f4f5;
	padding: 58px 0;
}

/* ------------------------------------------------------------------ footer */
.site-footer {
	background: var(--plum-dark);
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.92rem;
	padding: 62px 0 28px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.site-footer a:hover { color: var(--gold); }

.footer-grid {
	display: grid;
	gap: 40px;
	grid-template-columns: 1.4fr 1fr 1fr;
	padding-bottom: 40px;
}

.site-footer h2 {
	color: var(--white);
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.site-footer .brand__text { color: var(--white); }

.footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-list li { margin-bottom: 9px; }

.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	padding-top: 22px;
	font-size: 0.84rem;
}

/* ------------------------------------------------------------ breakpoints */
@media (max-width: 1080px) {
	.nav a { padding: 9px 9px; font-size: 0.86rem; }
	.header-cta { display: none; }
}

@media (max-width: 900px) {
	.site-header__bar { min-height: 66px; }

	.nav-toggle { display: inline-flex; }

	.nav {
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: 16px;
		box-shadow: var(--shadow);
		display: none;
		flex-direction: column;
		gap: 2px;
		padding: 12px;
		position: absolute;
		right: 24px;
		top: calc(100% + 8px);
		width: min(280px, calc(100vw - 48px));
		z-index: 120;
	}

	.nav[data-open="true"] { display: flex; }

	.nav a {
		display: block;
		font-size: 0.98rem;
		padding: 11px 14px;
	}

	.section { padding: 74px 0; }

	.hero { padding-top: 56px; }

	.hero__grid,
	.split { grid-template-columns: 1fr; gap: 44px; }

	.service { grid-template-columns: 120px minmax(0, 1fr); gap: 20px; }

	.services-intro { grid-template-columns: 1fr; }

	.services-intro__portrait { max-width: 220px; order: -1; }

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

@media (max-width: 620px) {
	body { font-size: 16px; }

	.shell { width: min(100% - 32px, var(--shell)); }

	.section { padding: 58px 0; }

	.hero__title { font-size: clamp(2.6rem, 11vw, 3.6rem); }

	.section-title { font-size: 2.1rem; }

	.trust-strip { grid-template-columns: 1fr; margin-top: 52px; padding: 20px 22px; }

	.photo-frame { max-width: 340px; }

	.photo-note { left: 6px; right: 6px; bottom: 16px; }

	.buttons,
	.buttons .btn:not(.btn--text) { width: 100%; }

	.quote-card { padding: 40px 26px; }

	.cta-card { border-radius: 24px; padding: 52px 22px; }

	.footer-grid { grid-template-columns: 1fr; gap: 30px; }

	.article-hero__figure img { aspect-ratio: 4 / 3; }
}

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

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

@media print {
	.site-header,
	.site-footer,
	.buttons,
	.nav-toggle { display: none !important; }

	body { font-size: 12pt; }
}
