/*
Theme Name: PCT Coaching
Theme URI: https://pctcoaching.co.uk
Author: PCT Coaching
Author URI: https://pctcoaching.co.uk
Description: A clean, professional theme for PCT Coaching, a kids football coaching school based in Stoke-on-Trent. Static pages are hardcoded via custom templates; the blog is powered by WordPress.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pct-coaching
*/

/* =========================================================
   1. Design tokens
   ========================================================= */
:root {
	/* Brand */
	--blue-900: #0a1f63;
	--blue-800: #0e2a8c;
	--blue-700: #1540c9;
	--blue-600: #1b4fd6;   /* logo blue */
	--blue-500: #2f63ec;
	--blue-100: #dbe6ff;
	--blue-50:  #eef3ff;

	--orange:      #ff6a1a;  /* primary accent */
	--orange-dark: #e5560a;
	--orange-soft: #fff1e8;

	--teal:      #12b8a6;    /* secondary accent */
	--teal-soft: #e6faf7;

	/* Neutrals */
	--ink:    #0c1424;
	--ink-80: #243149;
	--muted:  #5a6577;
	--line:   #e5e9f2;
	--bg:     #ffffff;
	--bg-soft:#f5f7fc;
	--bg-blue:#0c1f5c;

	/* Type */
	--font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
	--font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

	/* Layout */
	--maxw: 1200px;
	--gutter: clamp(20px, 5vw, 48px);
	--radius: 18px;
	--radius-sm: 12px;
	--shadow-sm: 0 2px 8px rgba(12,20,36,.06);
	--shadow:    0 18px 40px -18px rgba(12,31,92,.35);
	--shadow-lg: 0 30px 60px -24px rgba(12,31,92,.45);
	--ease: cubic-bezier(.22,.61,.36,1);
}

/* =========================================================
   2. Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	font-size: 1.0625rem;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange); }

h1, h2, h3, h4, h5 {
	font-family: var(--font-head);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { color: var(--ink-80); }

ul, ol { padding-left: 1.2em; }

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

/* =========================================================
   3. Layout helpers
   ========================================================= */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section--blue { background: var(--bg-blue); color: #fff; }
.section--blue h1, .section--blue h2, .section--blue h3 { color: #fff; }
.section--blue p { color: rgba(255,255,255,.78); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.12rem; margin-top: 14px; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .82rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 14px;
}
.eyebrow::before {
	content: "";
	width: 26px; height: 2px;
	background: var(--orange);
	display: inline-block;
}
.section--blue .eyebrow { color: #ffb487; }
.section--blue .eyebrow::before { background: #ffb487; }
.center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =========================================================
   4. Buttons
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1rem;
	padding: 15px 28px;
	border-radius: 100px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -8px rgba(255,106,26,.7); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }
.btn--blue { background: var(--blue-600); color: #fff; }
.btn--blue:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--blue-700); }
.btn--light:hover { background: var(--blue-50); color: var(--blue-800); transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================
   5. Header / nav
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.9);
	backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; }
.brand img { height: 46px; width: auto; border-radius: 8px; }
.brand-mark {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	background: var(--blue-600);
	color: #fff;
	border-radius: 11px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -.04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.16rem; color: var(--ink); letter-spacing: -.02em; }
.brand-text span { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }

.primary-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.primary-nav a {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: .98rem;
	color: var(--ink-80);
	padding: 9px 14px;
	border-radius: 9px;
	transition: background .2s, color .2s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
	color: var(--blue-700);
	background: var(--blue-50);
}
.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: #fff;
	cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   6. Hero
   ========================================================= */
.hero {
	position: relative;
	background:
		radial-gradient(120% 120% at 85% 0%, var(--blue-500) 0%, transparent 55%),
		linear-gradient(160deg, var(--blue-800) 0%, var(--blue-900) 60%, #061448 100%);
	color: #fff;
	overflow: hidden;
}
.hero::after {
	content: "";
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	mask-image: linear-gradient(180deg, #000, transparent 70%);
	pointer-events: none;
}
.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 56px;
	align-items: center;
	padding-block: clamp(60px, 9vw, 112px);
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--orange); }
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,.82); margin-top: 22px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-badge {
	display: inline-flex; align-items: center; gap: 10px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	padding: 8px 16px; border-radius: 100px;
	font-family: var(--font-head); font-weight: 500; font-size: .9rem;
	margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(18,184,166,.25); }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; color: #fff; }
.hero-stats .num .accent { color: var(--orange); }
.hero-stats small { display: block; color: rgba(255,255,255,.65); font-size: .9rem; letter-spacing: .02em; }

.hero-visual {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.hero-card {
	position: absolute;
	bottom: 22px; left: 22px; right: 22px;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(6px);
	border-radius: var(--radius-sm);
	padding: 18px 20px;
	display: flex; align-items: center; gap: 14px;
	box-shadow: var(--shadow);
}
.hero-card .icon { width: 44px; height: 44px; border-radius: 11px; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; flex: none; }
.hero-card .icon svg { width: 24px; height: 24px; }
.hero-card strong { display: block; color: var(--ink); font-family: var(--font-head); }
.hero-card span { font-size: .9rem; color: var(--muted); }

/* Hero with embedded (portrait) video instead of a placeholder */
.hero-visual--video {
	aspect-ratio: auto;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-inline: auto;
}
.hero-visual--video .hero-card { position: static; inset: auto; width: 100%; max-width: 320px; }

/* TikTok embeds: hide until the video iframe has loaded, show a spinner meanwhile */
.tiktok-embed { opacity: 0; transition: opacity .45s var(--ease); }
.tiktok-embed.pct-ready { opacity: 1; }
.tiktok-host { position: relative; min-height: 420px; }
.tiktok-loader {
	position: absolute; inset: 0;
	display: grid; place-items: center;
	min-height: 420px;
}
.tiktok-spinner {
	width: 44px; height: 44px; border-radius: 50%;
	border: 3px solid rgba(128,128,128,.25);
	border-top-color: var(--orange);
	animation: pct-spin .8s linear infinite;
}
@keyframes pct-spin { to { transform: rotate(360deg); } }

/* =========================================================
   7. Media placeholders (colour blocks for now)
   ========================================================= */
.media {
	position: relative;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
	border-radius: var(--radius);
	display: grid; place-items: center;
	color: rgba(255,255,255,.7);
	overflow: hidden;
	aspect-ratio: 4/3;
}
.media::before {
	content: "";
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.08) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
}
.media--alt   { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.media--teal  { background: linear-gradient(135deg, var(--teal), #0c8478); }
.media--tall  { aspect-ratio: 3/4; }
.media--wide  { aspect-ratio: 16/9; }
.media__label {
	position: relative; z-index: 1;
	font-family: var(--font-head); font-weight: 600;
	letter-spacing: .04em; font-size: .9rem;
	display: inline-flex; align-items: center; gap: 9px;
}
.media__label svg { width: 20px; height: 20px; }
.media--video .media__play {
	position: relative; z-index: 1;
	width: 66px; height: 66px; border-radius: 50%;
	background: rgba(255,255,255,.92); color: var(--blue-700);
	display: grid; place-items: center;
	box-shadow: var(--shadow);
}
.media--video .media__play svg { width: 26px; height: 26px; margin-left: 3px; }

/* Real images sharing the placeholder's shape */
.media-img { width: 100%; display: block; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.media-img--tall { aspect-ratio: 3/4; }
.media-img--wide { aspect-ratio: 16/9; }
.media-img--square { aspect-ratio: 1/1; }

/* Decorative frame: offset accent panel + dotted texture + floating badge */
.photo-frame { position: relative; isolation: isolate; max-width: 460px; }
.photo-frame > .media-img { position: relative; z-index: 2; }
.photo-frame::before {            /* blue panel offset behind, bottom-right */
	content: "";
	position: absolute;
	z-index: 1;
	inset: 26px -22px -22px 44px;
	background: linear-gradient(150deg, var(--blue-600), var(--blue-800));
	border-radius: var(--radius);
}
.photo-frame::after {             /* orange dotted texture peeking top-left */
	content: "";
	position: absolute;
	z-index: 0;
	top: -18px; left: -18px;
	width: 132px; height: 132px;
	background-image: radial-gradient(var(--orange) 2px, transparent 2.5px);
	background-size: 16px 16px;
	opacity: .6;
}
.photo-frame__badge {
	position: absolute;
	z-index: 3;
	left: -16px; bottom: 34px;
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff;
	color: var(--ink);
	font-family: var(--font-head); font-weight: 600; font-size: .9rem;
	padding: 11px 16px;
	border-radius: 100px;
	box-shadow: var(--shadow);
}
.photo-frame__badge svg { width: 18px; height: 18px; color: var(--orange); }

@media (max-width: 620px) {
	.photo-frame { max-width: none; margin-right: 18px; }
	.photo-frame::before { inset: 20px -14px -14px 30px; }
	.photo-frame__badge { left: 8px; }
}

/* =========================================================
   8. Cards
   ========================================================= */
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
	height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
	width: 54px; height: 54px; border-radius: 14px;
	display: grid; place-items: center; margin-bottom: 20px;
	background: var(--blue-50); color: var(--blue-600);
}
.card .icon svg { width: 28px; height: 28px; }
.card.accent .icon { background: var(--orange-soft); color: var(--orange); }
.card.teal .icon { background: var(--teal-soft); color: var(--teal); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card-link {
	display: inline-flex; align-items: center; gap: 7px;
	font-family: var(--font-head); font-weight: 600; font-size: .95rem;
	margin-top: 18px; color: var(--blue-700);
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service card with media top */
.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card .media { border-radius: 0; aspect-ratio: 16/10; }
.service-card .service-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-card .pill { align-self: flex-start; margin-bottom: 14px; }

.pill {
	display: inline-flex; align-items: center; gap: 7px;
	font-family: var(--font-head); font-weight: 600; font-size: .78rem;
	letter-spacing: .04em; text-transform: uppercase;
	padding: 6px 13px; border-radius: 100px;
	background: var(--blue-50); color: var(--blue-700);
}
.pill.accent { background: var(--orange-soft); color: var(--orange-dark); }
.pill.teal { background: var(--teal-soft); color: #0c8478; }

/* =========================================================
   9. Coach profiles
   ========================================================= */
.coach {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
	height: 100%;
}
.coach:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.coach .media { border-radius: 0; aspect-ratio: 1/1; }
.coach .media__label { font-size: 2.4rem; opacity: .55; }
.coach-body { padding: 24px; }
.coach-body h3 { font-size: 1.25rem; }
.coach-role { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--orange); margin-top: 3px; }
.coach-badges { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
.badge {
	font-family: var(--font-head); font-weight: 600; font-size: .74rem;
	padding: 4px 10px; border-radius: 7px;
	background: var(--blue-50); color: var(--blue-700);
}
.coach-body p { font-size: .94rem; }

/* =========================================================
   10. Team / list rows
   ========================================================= */
.team-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
.team-row:hover { border-color: transparent; box-shadow: var(--shadow-sm); transform: translateX(3px); }
.team-row .age {
	width: 58px; height: 58px; flex: none;
	border-radius: 12px;
	background: var(--bg-blue); color: #fff;
	display: grid; place-items: center; text-align: center;
	font-family: var(--font-head); font-weight: 700; line-height: 1;
}
.team-row .age small { display: block; font-size: .58rem; letter-spacing: .1em; opacity: .7; font-weight: 600; margin-top: 3px; }
.team-row h4 { font-family: var(--font-head); font-size: 1.1rem; }
.team-row .meta { font-size: .9rem; color: var(--muted); margin-top: 2px; }

/* =========================================================
   11. Steps / process
   ========================================================= */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step .num {
	width: 46px; height: 46px; border-radius: 12px;
	background: var(--orange); color: #fff;
	display: grid; place-items: center;
	font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
	margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .96rem; }

/* =========================================================
   12. Holiday club / pricing
   ========================================================= */
.price-card {
	background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 34px; height: 100%;
	display: flex; flex-direction: column;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--bg-blue); color: #fff; border-color: transparent; position: relative; }
.price-card.featured h3 { color: #fff; }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.82); }
.price-card.featured .tag-top {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	background: var(--orange); color: #fff;
	font-family: var(--font-head); font-weight: 600; font-size: .76rem;
	letter-spacing: .06em; text-transform: uppercase;
	padding: 6px 16px; border-radius: 100px;
}
.price { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; margin: 14px 0; letter-spacing: -.03em; }
.price small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.featured .price small { color: rgba(255,255,255,.7); }
.feature-list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 12px; flex: 1; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; }
.feature-list svg { width: 20px; height: 20px; flex: none; color: var(--teal); margin-top: 2px; }
.featured .feature-list svg { color: #4fe3d0; }

/* =========================================================
   13. Stats strip
   ========================================================= */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem,4vw,3rem); color: var(--orange); line-height: 1; }
.stat small { display: block; margin-top: 8px; color: var(--muted); font-weight: 500; }
.section--blue .stat small { color: rgba(255,255,255,.7); }

/* =========================================================
   14. CTA band
   ========================================================= */
.cta-band {
	position: relative;
	background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
	color: #fff;
	border-radius: var(--radius);
	padding: clamp(40px, 6vw, 70px);
	overflow: hidden;
	text-align: center;
}
.cta-band::after {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.12) 1.5px, transparent 1.5px);
	background-size: 24px 24px;
	mask-image: linear-gradient(180deg, #000, transparent);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 14px auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* =========================================================
   14b. Testimonial (compact, watermark quote mark)
   ========================================================= */
.testimonial { padding-block: clamp(44px, 5vw, 64px); }
.testimonial .container { text-align: center; }
.testimonial-quote { position: relative; margin: 0; padding: 0; }
.testimonial-quote::before {
	content: "\201C";
	position: absolute;
	top: -.34em; left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(7rem, 16vw, 11rem);
	line-height: 1;
	color: rgba(255,255,255,.07);
	z-index: 0;
	pointer-events: none;
}
.testimonial-quote p {
	position: relative;
	z-index: 1;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: clamp(1.1rem, 1.6vw, 1.45rem);
	line-height: 1.45;
	color: #fff;
	max-width: 720px;
	margin: 0 auto;
}
.testimonial-quote cite {
	display: block;
	margin-top: 18px;
	font-family: var(--font-head);
	font-weight: 600;
	font-style: normal;
	font-size: .92rem;
	color: #ffb487;
}

/* =========================================================
   15. Page hero (inner pages)
   ========================================================= */
.page-hero {
	position: relative;
	background: linear-gradient(160deg, var(--blue-800), var(--blue-900));
	color: #fff;
	padding-block: clamp(56px, 8vw, 96px);
	overflow: hidden;
}
.page-hero::after {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	mask-image: linear-gradient(180deg,#000,transparent 80%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.18rem; margin-top: 18px; max-width: 720px; }
.breadcrumbs { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 18px; font-family: var(--font-head); }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--orange); }

/* =========================================================
   16. Split feature blocks
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-body h2 { margin-bottom: 18px; }
.tick-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; }
.tick-list svg { width: 22px; height: 22px; flex: none; color: var(--teal); margin-top: 3px; }
.tick-list strong { font-family: var(--font-head); }

/* =========================================================
   17. Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-row {
	display: flex; gap: 16px; align-items: flex-start;
	background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius-sm); padding: 20px 22px;
}
.info-row .icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.info-row .icon svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--font-head); font-size: 1.02rem; }
.info-row a, .info-row p { color: var(--muted); font-size: .98rem; }
.info-row a:hover { color: var(--orange); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,4vw,40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
	width: 100%;
	font-family: var(--font-body); font-size: 1rem;
	padding: 13px 16px;
	border: 1.5px solid var(--line); border-radius: 11px;
	background: var(--bg-soft);
	transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--blue-500); background: #fff;
	box-shadow: 0 0 0 4px var(--blue-50);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-alert { padding: 14px 18px; border-radius: 11px; margin-bottom: 22px; font-size: .96rem; }
.form-alert.success { background: var(--teal-soft); color: #0c6157; border: 1px solid #9be3d8; }
.form-alert.error { background: var(--orange-soft); color: var(--orange-dark); border: 1px solid #ffc6a3; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }

/* =========================================================
   18. Blog
   ========================================================= */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.post-card {
	background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
	height: 100%;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .84rem; color: var(--muted); font-family: var(--font-head); font-weight: 500; display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.post-meta .cat { color: var(--orange); }
.post-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--blue-700); }
.post-card p { font-size: .96rem; flex: 1; }

article.single-post { max-width: 760px; margin-inline: auto; }
.single-post .entry-content { font-size: 1.12rem; line-height: 1.8; }
.single-post .entry-content > * + * { margin-top: 1.3em; }
.single-post .entry-content h2 { margin-top: 1.8em; }
.single-post .entry-content h3 { margin-top: 1.5em; }
.single-post .entry-content img { border-radius: var(--radius); }
.single-post .entry-content blockquote {
	border-left: 4px solid var(--orange);
	padding-left: 22px; font-size: 1.2rem; font-style: italic; color: var(--ink);
}
.single-post .entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.featured-media { margin-bottom: 36px; text-align: center; }
.featured-media img { max-width: 100%; height: auto; display: inline-block; border-radius: var(--radius); }

.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 36px; }
.tags a { background: var(--bg-soft); padding: 6px 14px; border-radius: 100px; font-size: .86rem; color: var(--muted); }
.tags a:hover { background: var(--blue-50); color: var(--blue-700); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination .page-numbers {
	display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 14px;
	border: 1px solid var(--line); border-radius: 11px;
	font-family: var(--font-head); font-weight: 600; color: var(--ink-80);
}
.pagination .page-numbers.current { background: var(--blue-600); color: #fff; border-color: transparent; }
.pagination a.page-numbers:hover { border-color: var(--blue-500); color: var(--blue-700); }

.post-nav { display: flex; justify-content: space-between; gap: 18px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.post-nav a { font-family: var(--font-head); font-weight: 600; }
.post-nav small { display: block; color: var(--muted); font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }

/* Sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; margin-bottom: 24px; }
.widget-title { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 16px; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.widget li:last-child { border-bottom: 0; }
.widget a { color: var(--ink-80); }
.widget a:hover { color: var(--orange); }

/* =========================================================
   19. Footer
   ========================================================= */
.site-footer { background: var(--bg-blue); color: rgba(255,255,255,.7); padding-top: clamp(56px,7vw,84px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.65); margin-top: 16px; font-size: .96rem; max-width: 300px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .96rem; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: .95rem; color: rgba(255,255,255,.7); }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--orange); }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
	width: 42px; height: 42px; border-radius: 11px;
	display: grid; place-items: center;
	background: rgba(255,255,255,.08); color: #fff;
	transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--orange); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12);
	padding-block: 26px;
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	font-size: .88rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* =========================================================
   20. WhatsApp float
   ========================================================= */
.wa-float {
	position: fixed; bottom: 22px; right: 22px; z-index: 90;
	width: 58px; height: 58px; border-radius: 50%;
	background: #25d366; color: #fff;
	display: grid; place-items: center;
	box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
	transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================
   21. Animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	* { animation: none !important; }
}

/* =========================================================
   22. Responsive
   ========================================================= */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; gap: 44px; }
	.hero-visual { max-width: 440px; }
	.grid-4 { grid-template-columns: repeat(2,1fr); }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.primary-nav {
		position: fixed; inset: 76px 0 auto 0;
		background: #fff; border-bottom: 1px solid var(--line);
		padding: 16px var(--gutter) 28px;
		opacity: 0; visibility: hidden; pointer-events: none;
		transform: translateY(-10px);
		transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
		box-shadow: var(--shadow);
		max-height: calc(100vh - 76px); overflow-y: auto;
	}
	.primary-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
	.primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
	.primary-nav a { padding: 14px 12px; font-size: 1.05rem; border-radius: 11px; }
	.nav-toggle { display: flex; }
	.header-actions .btn:not(.nav-toggle) { display: none; }
	.split, .contact-grid { grid-template-columns: 1fr; }
	.split.reverse .split-media { order: 0; }
	.post-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
	.grid-2, .grid-3, .grid-4, .post-grid, .stats-strip, .form-row { grid-template-columns: 1fr; }
	.stats-strip { gap: 36px; }
	.footer-top { grid-template-columns: 1fr; gap: 32px; }
	.footer-bottom { flex-direction: column; }
	.hero-stats { gap: 24px; }
	.team-row { grid-template-columns: auto 1fr; }
	.team-row .btn { grid-column: 1 / -1; }
}
