/*
Theme Name: Pauline Réflexo
Theme URI: https://pauline-reflexo.fr
Author: Studio Web
Description: Thème sur-mesure pour Pauline Réflexo — Réflexologie plantaire et énergétique chinoise. Optimisé SEO, performance et accessibilité.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pauline-reflexo
*/

/* ==========================================================================
   Custom Properties — Fidèle maquette
   ========================================================================== */

:root {
	--cream: #FAF8F3;
	--cream-warm: #F5F0E8;
	--gold: #C4A55A;
	--gold-light: #E8D9A8;
	--gold-dark: #A08840;
	--olive: #7A8B5A;
	--olive-light: #9AAB7A;
	--olive-dark: #5C6B40;
	--olive-pale: #E8EDE0;
	--text: #3A3A32;
	--text-light: #6B6B60;
	--white: #FFFFFF;
	--shadow-soft: 0 4px 30px rgba(122, 139, 90, 0.08);
	--shadow-card: 0 8px 40px rgba(122, 139, 90, 0.1);
	--font-heading: "Cormorant Garamond", Georgia, "Palatino Linotype", serif;
	--font-body: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--max-width: 1140px;
	--max-width-narrow: 800px;
	--transition: 0.4s ease;
	--header-h: 84px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

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

body {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

a {
	color: var(--gold-dark);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover,
a:focus {
	color: var(--gold);
}

a:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

ul, ol {
	list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 300;
	line-height: 1.2;
	color: var(--olive-dark);
}

h1 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 300;
	line-height: 1.15;
}

h2 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 400;
}

h3 {
	font-family: var(--font-heading);
	font-size: clamp(1.2rem, 3vw, 1.35rem);
	font-weight: 500;
	color: var(--olive-dark);
}

h4 {
	font-size: 1.2rem;
}

p {
	margin-bottom: 16px;
}

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

blockquote {
	border-left: 3px solid var(--gold);
	padding: 24px 32px;
	margin: 40px 0;
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 300;
	font-style: italic;
	color: var(--text-light);
	background: var(--cream-warm);
	border-radius: 0 16px 16px 0;
}

blockquote cite {
	display: block;
	margin-top: 12px;
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-style: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow {
	max-width: var(--max-width-narrow);
}

/* ==========================================================================
   Header / Navigation — style maquette
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 20px 0;
	background: rgba(250, 248, 243, 0.92);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	transition: all 0.5s ease;
}

.site-header.scrolled {
	padding: 14px 0;
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: none;
	padding: 0 40px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--text);
}

.site-logo img {
	height: 44px;
	width: auto;
}

.site-logo-text {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--olive-dark);
}

/* Navigation */

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 36px;
}

.main-nav a {
	font-size: 0.88rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text);
	position: relative;
	transition: color 0.3s;
}

.main-nav > ul > li > a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1.5px;
	background: var(--gold);
	transition: width 0.4s ease;
}

.main-nav a:hover {
	color: var(--gold-dark);
}

.main-nav > ul > li:not(.menu-item-has-children) > a:hover::after,
.main-nav > ul > li.current-menu-item:not(.menu-item-has-children) > a::after,
.main-nav > ul > li.current_page_item:not(.menu-item-has-children) > a::after {
	width: 100%;
}

/* Pas de soulignement sur les parents avec sous-menu (la flèche utilise ::after) */
.main-nav .menu-item-has-children > a::after {
	bottom: auto;
	left: auto;
	width: 5px;
	height: 5px;
	background: none;
}

.main-nav .current-menu-item a,
.main-nav .current_page_item a {
	color: var(--gold-dark);
}

/* Sous-menus (dropdowns) */

.main-nav li {
	position: relative;
}

.main-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 220px;
	background: rgba(250, 248, 243, 0.96);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 12px 0;
	padding-top: 24px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 200;
}

/* Zone invisible qui relie le lien parent au dropdown */
.main-nav .sub-menu::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}

.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.main-nav .sub-menu a {
	display: block;
	padding: 10px 24px;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: none;
	color: var(--text);
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.main-nav .sub-menu a::after {
	display: none;
}

.main-nav .sub-menu a:hover {
	background: var(--olive-pale);
	color: var(--olive-dark);
}

/* Petite flèche sur les items parent */

.main-nav .menu-item-has-children > a {
	padding-right: 16px;
}

.main-nav .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-60%) rotate(45deg);
}

/* Mobile Menu Toggle */

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.menu-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--olive-dark);
	border-radius: 2px;
	transition: 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Hero Section — style maquette
   ========================================================================== */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: calc(var(--header-h) + 36px) 0 100px;
	background: var(--cream);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -20%;
	right: -15%;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--olive-pale) 0%, transparent 70%);
	opacity: 0.6;
}

.hero::after {
	content: "";
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--gold-light) 0%, transparent 65%);
	opacity: 0.35;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	text-align: center;
}

.hero-content h1 {
	margin-bottom: 24px;
	color: var(--olive-dark);
}

.hero-content h1 em {
	font-style: italic;
	color: var(--gold);
	font-weight: 400;
}

.hero-content p {
	font-size: 1.08rem;
	color: var(--text-light);
	max-width: 440px;
	margin: 0 auto 40px;
	line-height: 1.8;
}

.hero-content .btn-group {
	justify-content: center;
}

.hero-image {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-img-wrapper {
	width: 420px;
	height: 520px;
	border-radius: 200px 200px 180px 180px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.hero-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Badge flottant */

.hero-badge {
	position: absolute;
	bottom: 40px;
	left: -30px;
	background: var(--white);
	padding: 18px 24px;
	border-radius: 20px;
	box-shadow: var(--shadow-card);
	z-index: 3;
}

.hero-badge-icon {
	width: 36px;
	height: 36px;
	background: var(--gold-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.hero-badge-icon svg {
	width: 18px;
	height: 18px;
}

.hero-badge span {
	font-size: 0.78rem;
	color: var(--text-light);
	letter-spacing: 0.03em;
	line-height: 1.4;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
	padding: 100px 0;
}

.section--alt {
	background: var(--white);
}

.section--primary {
	background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
	color: var(--white);
}

.section--primary h2,
.section--primary h3 {
	color: var(--white);
}

/* Section label (petit titre au-dessus du H2) */

.section-label {
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 500;
	margin-bottom: 12px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	margin-bottom: 20px;
}

.section-header p {
	color: var(--text-light);
	font-size: 1.02rem;
	max-width: 540px;
	margin: 0 auto;
}

/* Gold decorative divider */

.gold-divider {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	border-radius: 2px;
	margin: 24px 0;
}

.section-header .gold-divider {
	margin: 24px auto;
}

/* ==========================================================================
   Buttons — style maquette (fins, pill, élégants)
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	transition: all 0.4s ease;
	cursor: pointer;
	border: none;
}

.btn--primary {
	background: var(--olive);
	color: var(--white);
}

.btn--primary:hover {
	background: var(--olive-dark);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(122, 139, 90, 0.3);
}

.btn--outline {
	background: transparent;
	border: 1.5px solid var(--gold);
	color: var(--gold-dark);
}

.btn--outline:hover {
	background: var(--gold);
	color: var(--white);
	transform: translateY(-2px);
}

.btn--white {
	background: var(--white);
	color: var(--olive-dark);
}

.btn--white:hover {
	background: transparent;
	color: var(--white);
	border: 1.5px solid var(--white);
}

.btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* ==========================================================================
   Prestations / Benefits Cards — style maquette
   ========================================================================== */

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
}

.benefit-card {
	background: var(--cream);
	padding: 40px 32px;
	border-radius: 24px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: none;
}

.benefit-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--gold-light), var(--olive-light));
	opacity: 0;
	transition: opacity 0.4s;
}

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

.benefit-card:hover::before {
	opacity: 1;
}

.benefit-card h3 {
	margin-bottom: 12px;
	font-size: 1.35rem;
}

.benefit-card p {
	font-size: 0.92rem;
	color: var(--text-light);
	line-height: 1.65;
}

/* Presta duration badge */

.presta-duration {
	display: inline-block;
	margin-top: 16px;
	padding: 6px 16px;
	border-radius: 50px;
	background: var(--gold-light);
	color: var(--gold-dark);
	font-size: 0.78rem;
	font-weight: 400;
	letter-spacing: 0.03em;
}

/* ==========================================================================
   About / Two Columns
   ========================================================================== */

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

.two-columns--reverse {
	direction: rtl;
}

.two-columns--reverse > * {
	direction: ltr;
}

.two-columns img {
	border-radius: 30px 100px 30px 100px;
	box-shadow: var(--shadow-card);
}

/* ==========================================================================
   Quote Banner — style maquette
   ========================================================================== */

.quote-banner {
	background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.quote-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
}

.quote-banner blockquote {
	border-left: none;
	background: none;
	padding: 0;
	margin: 0 auto;
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 300;
	font-style: italic;
	color: var(--white);
	max-width: 700px;
	position: relative;
	z-index: 2;
	line-height: 1.5;
	border-radius: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
	text-align: center;
	padding: 80px 40px;
	background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
	color: var(--white);
	border-radius: 24px;
	margin: 80px 0;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -15%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
}

.cta-section h2 {
	color: var(--white);
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.cta-section p {
	font-size: 1.02rem;
	opacity: 0.9;
	margin-bottom: 32px;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
}

/* ==========================================================================
   Page Content (Gutenberg)
   ========================================================================== */

.page-header {
	text-align: center;
	padding: calc(var(--header-h) + 56px) 0 60px;
	background: var(--cream);
}

.page-header h1 {
	margin-bottom: 16px;
}

.page-header .section-label {
	margin-bottom: 12px;
}

.page-header p {
	color: var(--text-light);
	font-size: 1.02rem;
	max-width: 540px;
	margin: 0 auto;
}

.page-content {
	padding: 80px 0;
}

/* Gutenberg Alignment */

.entry-content > *:not(.alignwide):not(.alignfull) {
	max-width: var(--max-width-narrow);
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignwide {
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignfull {
	max-width: none;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
}

/* Gutenberg Block Spacing */

.entry-content > * + * {
	margin-top: 40px;
}

.entry-content > h2,
.entry-content > h3 {
	margin-top: 80px;
}

.entry-content > p + p {
	margin-top: 16px;
}

/* Gutenberg Group breathing room */

.wp-block-group {
	padding-top: 24px;
	padding-bottom: 24px;
}

.wp-block-columns {
	margin-top: 24px;
	margin-bottom: 24px;
	gap: 40px;
}

/* Gutenberg Lists */

.entry-content ul,
.entry-content ol {
	padding-left: 1.5rem;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	margin-bottom: 8px;
	font-size: 0.98rem;
	color: var(--text-light);
}

/* Gutenberg Separator */

.wp-block-separator {
	border: none;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	border-radius: 2px;
	margin: 40px auto;
}

.wp-block-separator.is-style-wide {
	max-width: 100%;
	width: 100%;
}

/* Gutenberg Cover */

.wp-block-cover {
	border-radius: 24px;
	overflow: hidden;
}

/* Gutenberg Buttons — pill, fins, élégants */

.wp-block-button .wp-block-button__link {
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	padding: 16px 36px;
	border-radius: 50px;
	transition: all 0.4s ease;
}

.wp-block-button .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(122, 139, 90, 0.3);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	border-width: 1.5px;
	border-color: var(--gold);
	color: var(--gold-dark);
	background: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--gold);
	color: var(--white);
	border-color: var(--gold);
}

/* ==========================================================================
   Footer — style maquette (fond crème chaud)
   ========================================================================== */

.site-footer {
	background: var(--cream-warm);
	padding: 50px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--olive-dark);
	margin-bottom: 16px;
}

.footer-section p,
.footer-section li {
	font-size: 0.92rem;
	color: var(--text-light);
	line-height: 1.8;
}

.footer-section a {
	color: var(--text-light);
}

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

.footer-section ul li {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-section .icon {
	flex-shrink: 0;
	margin-top: 4px;
	opacity: 0.6;
	color: var(--olive);
}

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 20px;
}

.footer-social a {
	color: var(--olive);
	transition: color 0.2s;
}

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

.footer-bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding-top: 20px;
	text-align: center;
	font-size: 0.82rem;
	color: var(--text-light);
}

.footer-bottom a {
	color: var(--text-light);
	margin: 0 12px;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 968px) {
	.hero {
		min-height: auto;
		padding: calc(var(--header-h) + 16px) 0 60px;
	}

	.hero .container {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-content {
		order: 2;
	}

	.hero-content p {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-image {
		order: 1;
	}

	.hero-img-wrapper {
		width: 300px;
		height: 380px;
	}

	.hero-badge {
		bottom: 20px;
		left: calc(50% - 80px);
	}

	.btn-group {
		justify-content: center;
	}

	.two-columns {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.two-columns--reverse {
		direction: ltr;
	}

	.site-header .container {
		padding: 0 24px;
	}

	/* Mobile Navigation */
	.menu-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(250, 248, 243, 0.96);
		-webkit-backdrop-filter: blur(20px);
		backdrop-filter: blur(20px);
		padding: 24px;
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	}

	.main-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.main-nav ul {
		flex-direction: column;
		gap: 0;
	}

	.main-nav li {
		width: 100%;
	}

	.main-nav a {
		display: block;
		padding: 14px;
		text-align: center;
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	}

	.main-nav a::after {
		display: none;
	}

	.main-nav .sub-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: rgba(0, 0, 0, 0.02);
		box-shadow: none;
		border-radius: 0;
		margin-top: 0;
		padding: 0;
		min-width: auto;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.main-nav .sub-menu a {
		padding: 10px 14px;
		font-size: 0.82rem;
		text-align: center;
		border-bottom: 1px solid rgba(0, 0, 0, 0.03);
		color: var(--text-light);
	}

	.main-nav .menu-item-has-children > a::before {
		display: none;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.section-header {
		margin-bottom: 40px;
	}
}

@media (max-width: 600px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-img-wrapper {
		width: 260px;
		height: 330px;
	}

	.page-header {
		padding: calc(var(--header-h) + 16px) 0 40px;
	}

	.section,
	.page-content {
		padding: 60px 0;
	}

	.quote-banner {
		padding: 50px 0;
	}

	.quote-banner blockquote {
		font-size: 1.3rem;
	}

	.cta-section {
		padding: 50px 24px;
		margin: 50px 0;
	}

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

/* ==========================================================================
   Skip Link (Accessibility)
   ========================================================================== */

.skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	background: var(--olive);
	color: var(--white);
	padding: 8px 16px;
	border-radius: 0 0 8px 8px;
	z-index: 9999;
	font-size: 0.9rem;
}

.skip-link:focus {
	top: 0;
	color: var(--white);
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
	text-align: center;
	padding: 160px 24px 100px;
}

.error-404 h1 {
	font-size: clamp(4rem, 10vw, 8rem);
	color: var(--gold-light);
}

.error-404 p {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 32px;
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
	.site-header,
	.site-footer,
	.menu-toggle,
	.btn {
		display: none;
	}

	body {
		font-size: 12pt;
		color: #000;
		background: #fff;
	}
}
