/* =====================================================================
   Atlas Interests - Design System
   Navy & gold institutional. Mobile-first, fluid, hand-built.
   ===================================================================== */

:root {
	/* Palette */
	--navy:        #0A1F3C;
	--navy-900:    #061429;
	--navy-700:    #12305a;
	--gold:        #C9A24B;
	--gold-soft:   #d9b96f;
	--ink:         #1A1A1A;
	--paper:       #F5F4F1;
	--paper-2:     #EFEDE7;
	--white:       #ffffff;
	--grey-500:    #6b7280;
	--grey-300:    #c9ccd2;
	--line:        rgba(10, 31, 60, 0.12);
	--line-light:  rgba(255, 255, 255, 0.16);

	/* Typography */
	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Fluid type scale */
	--fs-hero:   clamp(2.6rem, 1.5rem + 4.6vw, 5.4rem);
	--fs-h1:     clamp(2.1rem, 1.3rem + 3vw, 3.8rem);
	--fs-h2:     clamp(1.7rem, 1.2rem + 1.9vw, 2.8rem);
	--fs-h3:     clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
	--fs-lead:   clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
	--fs-body:   1rem;
	--fs-small:  0.875rem;
	--fs-eyebrow:0.78rem;

	/* Spacing scale */
	--space-section: clamp(4rem, 2.5rem + 6vw, 8.5rem);
	--container:  1240px;
	--gutter:     clamp(1.25rem, 0.5rem + 3vw, 3rem);
	--radius:     4px;
	--ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
	color: var(--navy);
}
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }
.section { padding-block: var(--space-section); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--paper2 { background: #efede7; }

.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: var(--fs-eyebrow);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.1rem;
}
.eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 1px;
	background: var(--gold);
	vertical-align: middle;
	margin-right: 0.7rem;
}
.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--grey-500); }
.section--navy .lead { color: rgba(255,255,255,0.78); }

.grid { display: grid; gap: var(--gutter); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.95rem 1.9rem;
	border: 1px solid var(--navy);
	border-radius: var(--radius);
	background: var(--navy);
	color: var(--white);
	cursor: pointer;
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn .btn__arrow { transition: transform .3s var(--ease); }
.btn:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.section--navy .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }
.section--navy .btn--ghost:hover { background: var(--white); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
	padding-block: 1.4rem;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.site-header.is-solid,
.site-header.is-scrolled {
	background: rgba(6, 20, 41, 0.96);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 var(--line-light);
	padding-block: 0.9rem;
}
.brand { display: flex; align-items: center; gap: 0.8rem; color: #fff; }
.brand__mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand__logo { height: 46px; width: auto; transition: height .35s var(--ease); }
.site-header.is-scrolled .brand__logo, .site-header.is-solid .brand__logo { height: 40px; }
.brand__logo--invert { filter: brightness(0) invert(1); }
.site-footer .brand__logo { height: 52px; }
.brand__text { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; letter-spacing: 0.02em; color: #fff; line-height: 1; }
.brand__text small { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 2.2rem; margin: 0; padding: 0; }
.primary-nav a {
	color: rgba(255,255,255,0.82);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	position: relative;
	padding-block: 0.4rem;
	transition: color .25s var(--ease);
}
.primary-nav a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
	background: var(--gold); transition: width .3s var(--ease);
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: #fff; }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { width: 100%; }
.header-cta { display: inline-flex; }

/* Mobile nav toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px; height: 44px;
	background: transparent; border: 0; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 26px; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease); margin-inline: auto; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
	.nav-toggle { display: flex; }
	.header-cta { display: none; }
	.primary-nav {
		position: fixed; inset: 0; background: var(--navy-900);
		display: flex; align-items: center; justify-content: center;
		opacity: 0; visibility: hidden; transition: opacity .4s var(--ease);
		z-index: 90;
	}
	body.nav-open .primary-nav { opacity: 1; visibility: visible; }
	.primary-nav ul { flex-direction: column; gap: 1.6rem; }
	.primary-nav a { font-size: 1.4rem; font-family: var(--font-display); }
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	background: linear-gradient(125deg, var(--navy-900) 0%, var(--navy) 55%, var(--navy-700) 100%);
	overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.28; }
.hero::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(120% 80% at 80% 10%, rgba(201,162,75,0.18), transparent 60%);
	pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 920px; padding-block: 9rem; }
.hero h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub { font-size: var(--fs-lead); color: rgba(255,255,255,0.82); max-width: 620px; margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.5); font-size: var(--fs-small); letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Stat band ---------- */
.stats {
	background: var(--navy-900);
	color: #fff;
	border-top: 1px solid var(--line-light);
}
.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.stat { padding: clamp(2rem, 4vw, 3.4rem) var(--gutter); text-align: center; border-right: 1px solid var(--line-light); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.5rem + 3vw, 4rem); font-weight: 600; color: var(--gold); line-height: 1; display: block; }
.stat__num .unit { color: #fff; }
.stat__label { display: block; margin-top: 0.7rem; font-size: var(--fs-small); letter-spacing: 0.06em; color: rgba(255,255,255,0.72); }
@media (max-width: 760px) {
	.stats__grid { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(2) { border-right: 0; }
	.stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-light); }
}

/* ---------- Section header ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head.text-center { margin-inline: auto; }
.section-head h2 { font-size: var(--fs-h2); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(10,31,60,0.45); }
.split__media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; }

/* ---------- Expertise grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.feature-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.8rem;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(10,31,60,0.4); border-color: var(--gold); }
.feature-card__icon { width: 46px; height: 46px; color: var(--gold); margin-bottom: 1.2rem; }
.feature-card h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.feature-card p { color: var(--grey-500); font-size: 0.95rem; }

/* ---------- Property cards ---------- */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .property-grid { grid-template-columns: 1fr; } }
.property-card {
	display: block;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.property-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(10,31,60,0.45); }
.property-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--navy); }
.property-card__media .card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.property-card:hover .card__img { transform: scale(1.06); }
.property-card__placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); }
.property-card__tag { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy-900); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 2px; }
.property-card__body { padding: 1.3rem 1.4rem 1.6rem; }
.property-card__title { font-size: 1.3rem; margin-bottom: 0.25rem; }
.property-card__meta { color: var(--grey-500); font-size: var(--fs-small); margin: 0; }

/* ---------- Carousel ---------- */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: 6px; box-shadow: 0 30px 60px -34px rgba(10,31,60,0.55); }
.carousel__track { display: flex; transition: transform .6s var(--ease); }
.carousel__slide { position: relative; flex: 0 0 100%; aspect-ratio: 16 / 9; background: var(--navy); }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__caption { position: absolute; left: 0; bottom: 0; right: 0; padding: 2.2rem 1.8rem 1.4rem; background: linear-gradient(transparent, rgba(6,20,41,0.85)); color: #fff; }
.carousel__caption strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.carousel__caption span { font-size: var(--fs-small); color: var(--gold); letter-spacing: 0.06em; }
.carousel__btn {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.45);
	background: rgba(6,20,41,0.5); color: #fff; font-size: 1.3rem; cursor: pointer;
	display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
	transition: background .25s var(--ease), border-color .25s var(--ease);
}
.carousel__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }
.carousel__dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.4rem; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: var(--grey-300); cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease); }
.carousel__dot.is-active { background: var(--gold); transform: scale(1.25); }
.section--navy .carousel__dot { background: rgba(255,255,255,0.3); }
.section--navy .carousel__dot.is-active { background: var(--gold); }
@media (max-width: 560px) { .carousel__btn { width: 42px; height: 42px; } .carousel__caption strong { font-size: 1.2rem; } }

/* ---------- Criteria / list ---------- */
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 760px) { .criteria-grid { grid-template-columns: 1fr; } }
.criteria { border-top: 2px solid var(--gold); padding-top: 1.2rem; }
.criteria dt { font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 0.3rem; }
.section--navy .criteria dt { color: rgba(255,255,255,0.6); }
.criteria dd { margin: 0; font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); }
.section--navy .criteria dd { color: #fff; }

.tenant-list { display: flex; flex-wrap: wrap; gap: 0.7rem; list-style: none; padding: 0; margin: 1.6rem 0 0; }
.tenant-list li { border: 1px solid var(--line-light); border-radius: 100px; padding: 0.5rem 1.1rem; font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 2.4rem; }
.timeline__item::before { content: ""; position: absolute; left: -2rem; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--paper); }
.timeline__year { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }
.timeline__item h3 { font-size: var(--fs-h3); margin: 0.2rem 0 0.4rem; }
.timeline__item p { color: var(--grey-500); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 100% at 50% 0%, rgba(201,162,75,0.16), transparent 55%); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: var(--fs-h1); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
	background: linear-gradient(125deg, var(--navy-900), var(--navy));
	color: #fff;
	padding-top: clamp(8rem, 6rem + 8vw, 12rem);
	padding-bottom: clamp(3.5rem, 3rem + 4vw, 6rem);
	position: relative;
	overflow: hidden;
}
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(90% 120% at 90% 0%, rgba(201,162,75,0.16), transparent 55%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; }
.breadcrumb { font-size: var(--fs-small); color: rgba(255,255,255,0.55); margin-bottom: 1rem; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Offices / contact ---------- */
.offices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 700px) { .offices { grid-template-columns: 1fr; } }
.office { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; background: #fff; }
.office h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.office address { font-style: normal; color: var(--grey-500); line-height: 1.7; }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } }

/* CF7 styling */
.wpcf7-form p { margin-bottom: 1rem; }
.wpcf7-form label { display: block; font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 0.3rem; }
.wpcf7-form input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.wpcf7-form textarea, .wpcf7-form select {
	width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--grey-300); border-radius: var(--radius);
	font-family: inherit; font-size: 0.95rem; background: #fff; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); }
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-form input[type=submit] {
	background: var(--navy); color: #fff; border: 0; border-radius: var(--radius);
	padding: 0.95rem 2.2rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; cursor: pointer;
	transition: background .3s var(--ease);
}
.wpcf7-form input[type=submit]:hover { background: var(--navy-700); }

/* ---------- Single property ---------- */
.property-detail__meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin: 2rem 0; }
@media (max-width: 700px) { .property-detail__meta { grid-template-columns: repeat(2, 1fr); } }
.property-detail__meta .criteria dd { font-size: 1.3rem; }
.property-detail__hero img { width: 100%; border-radius: var(--radius); }

/* ---------- Generic content (page.php / posts) ---------- */
.entry-content { font-size: 1.05rem; }
.entry-content h2 { font-size: var(--fs-h2); margin-top: 1.6em; }
.entry-content h3 { font-size: var(--fs-h3); margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.entry-content a { color: var(--navy-700); border-bottom: 1px solid var(--gold); }
.entry-content img { border-radius: var(--radius); margin-block: 1.5em; }
blockquote { border-left: 3px solid var(--gold); margin: 1.5em 0; padding-left: 1.4em; font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-block: clamp(3.5rem, 5vw, 5rem) 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
@media (max-width: 860px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .site-footer__grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer address { font-style: normal; line-height: 1.8; font-size: 0.92rem; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: var(--fs-small); color: rgba(255,255,255,0.5); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 999; background: #fff; color: var(--navy); padding: 0.6rem 1rem; border-radius: var(--radius); }
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.pagination .page-numbers { padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
