/* =========================================================
   Hala Rharrit — homepage stylesheet
========================================================= */

:root {
	--navy: #062c3d;
	--teal: #19b7b0;
	--teal-dark: #0f8f89;
	--gold: #c89b6d;
	--mint: #e8f8f8;
	--white: #ffffff;
	--ink: #16262c;
	--muted: #062C3D;
	--radius: 14px;
	--radius-lg: 24px;
	--container: 1200px;
	--font: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--white);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; margin: 0 0 .5em; line-height: 1.2; color: var(--navy); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

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

.skip-link {
	position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
	position: fixed; top: 10px; left: 10px; z-index: 10000;
	background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 6px;
	left: 10px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 999px;
	border: none;
	font-weight: 600;
	font-size: 0.95rem;
	font-family: inherit;
	white-space: nowrap;
	cursor: pointer;
	translate: 0 0;
	transition: translate .25s cubic-bezier(.4,0,.2,1), opacity .25s ease, background .3s cubic-bezier(.4,0,.2,1), border-color .3s cubic-bezier(.4,0,.2,1);
}
.btn:hover { translate: 0 -1px; opacity: .92; }
.btn--navy { background: #F9BD77; color: var(--white); }
.btn--navy:hover { background: var(--teal); opacity: 1; }
.btn--teal { background: var(--teal); color: var(--white); border: 1.5px solid transparent; }
.btn--teal:hover { background: var(--navy); border-color: var(--teal); opacity: 1; }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.7); }
.btn--outline:hover { background: var(--teal); border-color: var(--teal); opacity: 1; }
.btn--small { padding: 10px 22px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--navy);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 18px;
	padding-bottom: 18px;
}
.main-nav { margin: 0 clamp(14px, 2vw, 20px); }
.main-nav__close { display: none; }
.site-logo {
	display: block;
	flex-shrink: 0;
}
.site-logo img {
	height: 22px;
	width: auto;
	filter: brightness(0) invert(1);
	transition: filter .25s ease;
}
.main-nav ul {
	display: flex;
	flex-wrap: nowrap;
	gap: clamp(8px, 1.2vw, 15px);
}
.main-nav a {
	display: block;
	position: relative;
	padding-bottom: 4px;
	color: rgba(255,255,255,.9);
	font-size: 0.85rem;
	font-weight: 500;
	white-space: nowrap;
	transition: color .2s ease;
}
.main-nav a:hover { color: var(--teal); }
.main-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1.5px;
	background: var(--teal);
	transition: right .2s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--white); }
.main-nav li { flex-shrink: 0; }
.site-header__cta { flex-shrink: 0; padding: 10px 22px; font-size: 0.88rem; }
.nav-toggle { display: none; flex-shrink: 0; }
.nav-toggle span { transition: background .2s ease; }

/* ---------- Header: transparent variant (inner pages) ----------
   Sits directly over .page-hero with no background of its own so the hero
   image shows through, per the Figma inner-page design. Positioned
   absolute (not sticky) so it overlaps the hero from y=0 instead of
   pushing it down. Once scrolled past the hero, main.js adds .is-scrolled,
   switching it to a fixed, solid-navy bar — same look as the home header —
   so nav text stays readable over whatever section is behind it. */
.site-header--transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	transition: background .25s ease;
}
.site-header--transparent .site-logo img { filter: none; }
.site-header--transparent .main-nav a { color: var(--navy); }
.site-header--transparent .main-nav a:hover { color: var(--teal); }
.site-header--transparent .btn--outline { color: var(--navy); border-color: rgba(6,44,61,.35); }
.site-header--transparent .btn--outline:hover { color: var(--white); }
.site-header--transparent .nav-toggle span { background: var(--navy); }

.site-header--transparent.is-scrolled {
	position: fixed;
	background: var(--navy);
}
.site-header--transparent.is-scrolled .site-logo img { filter: brightness(0) invert(1); }
.site-header--transparent.is-scrolled .main-nav a { color: rgba(255,255,255,.9); }
.site-header--transparent.is-scrolled .main-nav a.is-active { color: var(--white); }
.site-header--transparent.is-scrolled .btn--outline { color: var(--white); border-color: rgba(255,255,255,.7); }
.site-header--transparent.is-scrolled .nav-toggle span { background: var(--white); }

/* Light variant: white logo/nav on a dark hero (e.g. Home's video) instead of the navy default above. Only overrides text/logo colors - the transparent -> solid-navy background swap on scroll is unchanged. */
.site-header--transparent-light .site-logo img { filter: brightness(0) invert(1); }
.site-header--transparent-light .main-nav a { color: rgba(255,255,255,.9); }
.site-header--transparent-light .main-nav a.is-active { color: var(--white); }
.site-header--transparent-light .main-nav a:hover { color: var(--white); }
.site-header--transparent-light .btn--outline { color: var(--white); border-color: rgba(255,255,255,.7); }
.site-header--transparent-light .nav-toggle span { background: var(--white); }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--navy);
}
.hero__video {
	display: block;
	width: 100%;
	height: auto;
}
.hero__inner {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 60px;
}
.hero__heading {
	margin: 0 0 28px;
	font-weight: 600;
}
.hero__heading-line {
	display: block;
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.2;
}
.hero__heading-line--gold { color: #F9BD77; }
.hero__heading-line--teal { color: var(--teal); font-weight: 500; }
.hero__description {
	max-width: 700px;
	margin: 0 auto;
	color: rgba(255,255,255,.92);
	font-size: 0.98rem;
}
.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	color: var(--white);
	z-index: 2;
	animation: hero-bounce 2s infinite;
}
@keyframes hero-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}
.hero__sound-toggle {
	position: absolute;
	right: 28px;
	bottom: 28px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,.7);
	background: rgba(6,44,61,.35);
	color: var(--white);
	cursor: pointer;
	transition: background-color .25s ease, translate .25s cubic-bezier(.4,0,.2,1);
	translate: 0 0;
}
.hero__sound-toggle:hover { background-color: rgba(6,44,61,.55); translate: 0 -3px; }
.hero__sound-icon-off { display: none; }
.hero__sound-toggle.is-muted .hero__sound-icon-on { display: none; }
.hero__sound-toggle.is-muted .hero__sound-icon-off { display: block; }

/* ---------- Seen On ---------- */
.seen-on { background: var(--navy); padding: 26px 0; }
.seen-on__label {
	text-align: center;
	color: rgba(255,255,255,.75);
	font-size: 0.8rem;
	letter-spacing: .5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 22px;
}
.seen-on__label span { width: 32px; height: 1px; background: rgba(255,255,255,.35); }
.seen-on__viewport {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}
.seen-on__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 56px;
	animation: seen-on-scroll 28s linear infinite;
}
.seen-on__viewport:hover .seen-on__track { animation-play-state: paused; }
.seen-on__track img { height: 26px; width: auto; object-fit: contain; opacity: .95; flex-shrink: 0; }
@keyframes seen-on-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about { background: var(--mint); padding: 100px 0; }
.about__inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 60px;
	align-items: center;
}
.eyebrow { color: var(--teal); font-weight: 600; font-size: 0.95rem; margin-bottom: 14px; }
.about__text h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 18px; }
.about__text p:not(.eyebrow) { color: var(--muted); font-size: 0.97rem; }
.about__photo {
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.about__photo img { border-radius: var(--radius-lg); width: 100%; }

/* ---------- Join the Movement ---------- */
.movement { background: var(--teal); padding: 90px 0; text-align: center; }
.movement h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.6rem); }
.movement__subtitle { color: rgba(255,255,255,.9); margin-bottom: 44px; }
.movement__carousel { display: flex; flex-direction: column; gap: 28px; }
.movement__viewport { overflow: hidden; width: 100%; padding-top: 12px; margin-top: -12px; padding-bottom: 4px; }
.movement__cards {
	display: flex;
	gap: 22px;
	transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.movement__cards .movement-card { flex: 0 0 calc((100% - 3 * 22px) / 4); min-width: 0; }
.movement__dots { display: flex; justify-content: center; gap: 10px; }
.movement__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.4);
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}
.movement__dot:hover { background: rgba(255,255,255,.7); }
.movement__dot.is-active { background: var(--white); transform: scale(1.25); }
.movement-card {
	--card-ease: .35s cubic-bezier(.4,0,.2,1);
	border: 1.5px solid var(--white);
	border-radius: var(--radius);
	padding: 34px 28px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 22px;
	background: var(--teal);
	translate: 0 0;
	transition: background var(--card-ease), border-color var(--card-ease), translate var(--card-ease), box-shadow var(--card-ease);
}
.movement-card:hover {
	translate: 0 -4px;
	background: var(--white);
	border-color: var(--white);
	box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.movement-card__icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,.7);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .35s cubic-bezier(.4,0,.2,1);
}
.movement-card__icon::before {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	background-color: var(--white);
	-webkit-mask-image: var(--icon);
	mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: background-color .35s cubic-bezier(.4,0,.2,1);
}
.movement-card__label { color: var(--white); font-weight: 600; line-height: 1.4; transition: color .35s cubic-bezier(.4,0,.2,1); }
.movement-card:hover .movement-card__icon { border-color: var(--teal); }
.movement-card:hover .movement-card__icon::before { background-color: var(--teal); }
.movement-card:hover .movement-card__label { color: var(--teal); }

/* ---------- Interviews ---------- */
.interviews { background: var(--mint); padding: 100px 0; }
.interviews__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 44px;
}
.interviews__head h2 { margin-bottom: 6px; font-size: clamp(2rem, 4vw, 2.6rem); }
.interviews__subtitle { color: var(--muted); margin: 0; }
.interviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.interview-card {
	display: block;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(6,44,61,.06);
	translate: 0 0;
	transition: translate .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.interview-card:hover {
	translate: 0 -6px;
	box-shadow: 0 20px 40px rgba(6,44,61,.14);
}
.interview-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .35s ease; }
.interview-card:hover img { transform: scale(1.05); }
.interview-card__body { padding: 24px; }
.interview-card__body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.interview-card__date { color: var(--muted); font-size: 0.85rem; margin-bottom: 10px; }
.interview-card__excerpt { color: var(--muted); font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); padding: 90px 0; }
.cta-band__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.cta-band__heading { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 0; }
.cta-band__side p { color: rgba(255,255,255,.85); margin-bottom: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--mint); }
.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px 40px;
	padding: 20px 24px;
}
.footer__nav { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.footer__nav a { color: var(--muted); font-size: 0.92rem; transition: color .2s ease; }
.footer__nav a:hover { color: var(--teal); }
.footer__nav-sep { color: var(--muted); opacity: .5; }
.footer__social { display: flex; align-items: center; gap: 14px; }
.footer__social-label { color: #1B1B1B; font-weight: 600; font-size: 0.92rem; }
.footer__social-icons { display: flex; gap: 10px; }
.social-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	translate: 0 0;
	transition: background .2s ease, translate .2s ease;
}
.social-icon:hover { background: var(--teal); translate: 0 -2px; }
.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 10px 24px 16px;
	font-size: 0.82rem;
	color: var(--muted);
}
.footer__bottom-inner p { margin: 0; }
.footer__bottom-inner a { color: var(--muted); transition: color .2s ease; }
.footer__bottom-text { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.footer__bottom-sep { color: var(--muted); opacity: .5; }
.footer__bottom-inner a:hover { color: var(--teal); }

/* ---------- About page: page hero ---------- */
.page-hero {
	padding: 130px 0 90px;
	text-align: center;
	background: url('../img/page-hero-bg.png') center center / cover no-repeat, var(--mint);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 0; overflow-wrap: break-word; }

/* ---------- About page: intro ---------- */
.about-intro { background: var(--mint); padding: 20px 0 70px; }
.about-intro__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 60px;
	align-items: center;
}
.about-intro__inner p:not(.eyebrow) { color: var(--muted); font-size: 0.97rem; }
.about-intro__inner h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 18px; }
.about-intro__media {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--navy);
}
.about-intro__media video { width: 100%; height: 100%; object-fit: cover; }
.about-video__sound-toggle {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,.7);
	background: rgba(6,44,61,.35);
	color: var(--white);
	cursor: pointer;
	transition: background-color .25s ease, translate .25s cubic-bezier(.4,0,.2,1);
	translate: 0 0;
}
.about-video__sound-toggle:hover { background-color: rgba(6,44,61,.55); translate: 0 -3px; }
.about-video__sound-icon-off { display: none; }
.about-video__sound-toggle.is-muted .about-video__sound-icon-on { display: none; }
.about-video__sound-toggle.is-muted .about-video__sound-icon-off { display: block; }
.about-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 32px;
	margin: 30px 0 34px;
}
.about-stats__item strong { display: block; color: #19B7B0; font-size: 30px; line-height: 1.1; }
.about-stats__item strong .stat-counter { color: #19B7B0; font-size: 55px; font-variant-numeric: tabular-nums; }
.about-cta { text-align: center; }
.about-stats__item span { color: var(--muted); font-size: 0.85rem; }

/* ---------- About page: photo gallery ----------
   4-column base grid so the 3rd (end of row 1) and 4th (start of row 2)
   photos can span 2 columns each — double width vs. the other four,
   with a matching aspect-ratio so every row lines up at the same height. */
.about-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.about-gallery__item { position: relative; aspect-ratio: 6 / 5; overflow: hidden; }
.about-gallery__item:nth-child(3),
.about-gallery__item:nth-child(4) {
	grid-column: span 2;
	aspect-ratio: 12 / 5;
}
.about-gallery__item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s ease; }
.about-gallery__item:hover img { transform: scale(1.06); }
.about-gallery__caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 18px;
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
	background: rgba(6,44,61,.55);
	opacity: 0;
	transition: opacity .35s cubic-bezier(.4,0,.2,1);
	pointer-events: none;
}
.about-gallery__item:hover .about-gallery__caption { opacity: 1; }

/* ---------- About page: vision & mission ---------- */
.about-values { background: var(--navy); padding: 90px 0; text-align: center; }
.about-values h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.6rem); }
.about-values__subtitle { color: rgba(255,255,255,.75); margin: 0 auto 44px; font-size: 0.95rem; white-space: nowrap; }
.about-values__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.value-card {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	text-align: left;
	border: 1.5px solid rgba(255,255,255,.2);
	border-radius: var(--radius);
	padding: 32px;
	translate: 0 0;
	transition: border-color .3s cubic-bezier(.4,0,.2,1), translate .3s cubic-bezier(.4,0,.2,1);
}
.value-card:hover { border-color: var(--teal); translate: 0 -4px; }
.value-card__icon { flex-shrink: 0; width: 64px; height: 64px; }
.value-card__icon img { width: 100%; height: 100%; }
.value-card__body h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.value-card__body p { color: rgba(255,255,255,.75); font-size: 0.92rem; margin: 0; }

/* ---------- About page: quote ---------- */
.about-quote { background: var(--teal); padding: 110px 0; text-align: center; }
.about-quote blockquote { max-width: 900px; margin: 0 auto; }
.about-quote__mark { display: block; font-family: Georgia, serif; font-size: 3.5rem; line-height: 1; color: #FFF; }
.about-quote__mark--close { margin: 10px auto 0; }
.about-quote p { color: var(--white); font-size: clamp(1.05rem, 2vw, 1.3rem); font-style: italic; line-height: 1.6; margin: 10px 0; }
.about-quote cite {
	display: block;
	margin-top: 24px;
	font-style: normal;
}
.about-quote__name { display: block; color: var(--white); font-weight: 700; }
.about-quote__role { display: block; color: #FFF; font-size: 0.9rem; margin-top: 4px; }
a.about-quote__role:hover { text-decoration: underline; }

/* ---------- About page: principles ---------- */
.about-principles { background: var(--mint); padding: 100px 0; }
.about-principles h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 18px; }
.about-principles__subtitle { color: var(--muted); margin-bottom: 44px; font-size: 0.95rem; white-space: nowrap; }
.about-principles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.principle-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: 0 10px 30px rgba(6,44,61,.06);
	translate: 0 0;
	transition: translate .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.principle-card:hover { translate: 0 -6px; box-shadow: 0 20px 40px rgba(6,44,61,.14); }
.principle-card__icon { display: block; width: 64px; height: 64px; margin-bottom: 20px; }
.principle-card__icon img { width: 100%; height: 100%; }
.principle-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.principle-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- About page: diplomatic track record ---------- */
.about-track { background: #e0f3f2; padding: 100px 0; }
.about-track h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 18px; }
.about-track__subtitle { color: var(--muted); margin-bottom: 44px; font-size: 0.95rem; white-space: nowrap; }
.about-track__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-bottom: 22px;
}
.track-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: 0 10px 30px rgba(6,44,61,.06);
	translate: 0 0;
	transition: translate .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.track-card:hover { translate: 0 -6px; box-shadow: 0 20px 40px rgba(6,44,61,.14); }
.track-card__label {
	color: var(--teal);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.track-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.track-card__sub {
	color: var(--muted);
	font-size: 0.78rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.track-card__desc { color: var(--muted); font-size: 0.92rem; margin: 0; }
.track-additional {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: 0 10px 30px rgba(6,44,61,.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.track-additional__text { max-width: 600px; }
.track-additional__text p:not(.track-card__label) { color: var(--muted); font-size: 0.92rem; margin: 0; }
.track-additional__badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-pill {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border: 1.5px solid rgba(6,44,61,.25);
	border-radius: 999px;
	color: var(--navy);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
	transition: border-color .2s ease, background .2s ease;
}
.badge-pill:hover { border-color: var(--teal); background: rgba(25,183,176,.08); }

/* ---------- Service pages (Strategic Communication, etc.) ---------- */
.service-page { background: var(--mint); padding: 70px 0 90px; }
.service-page__container { max-width: 950px; }
.service-page__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 50px;
	transition: box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.service-page__media:hover { box-shadow: 0 24px 48px rgba(6,44,61,.18); }
.service-page__media img {
	width: 100%;
	aspect-ratio: 16 / 7;
	object-fit: cover;
	object-position: center 25%;
	transition: transform .4s ease;
}
.service-page__media:hover img { transform: scale(1.04); }
.service-page__body h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 16px; }
.service-page__body h2:not(:first-child) { margin-top: 40px; }
.service-page__body p { color: var(--muted); font-size: 0.97rem; }
.service-page__tight { margin-bottom: 0 !important; }
.service-page__body .btn { margin-top: 28px; }

/* ---------- Service pages: text + portrait split (Geopolitical Advisory, etc.) ---------- */
.service-split { background: var(--mint); padding: 70px 0 90px; }
.service-split__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 60px;
	align-items: center;
}
.service-split__body h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 20px; }
.service-split__body p { color: var(--muted); font-size: 0.97rem; }
.service-split__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.service-split__media:hover { box-shadow: 0 24px 48px rgba(6,44,61,.18); }
.service-split__media img {
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
	transition: transform .4s ease;
}
.service-split__media:hover img { transform: scale(1.04); }

/* ---------- Speaking & Engagements page ---------- */
.speaking-intro { background: var(--mint); padding: 70px 0 90px; text-align: center; }
.speaking-intro__inner { max-width: 900px; margin: 0 auto 50px; }
.speaking-intro__inner h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 20px; }
.speaking-intro__inner p { color: var(--muted); font-size: 0.97rem; }
.speaking-intro__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.speaking-intro__media:hover { box-shadow: 0 24px 48px rgba(6,44,61,.18); }
.speaking-intro__media img {
	width: 100%;
	aspect-ratio: 21 / 10;
	object-fit: cover;
	transition: transform .4s ease;
}
.speaking-intro__media:hover img { transform: scale(1.04); }

.speaking-workshops { background: #e0f3f2; padding: 70px 0 90px; text-align: center; }
.speaking-workshops h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 20px; }
.speaking-workshops__subtitle { color: var(--muted); max-width: 960px; margin: 0 auto 50px; }

.workshop-card {
	display: flex;
	align-items: stretch;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(6,44,61,.06);
	text-align: left;
	margin-bottom: 24px;
	translate: 0 0;
	transition: translate .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.workshop-card:last-child { margin-bottom: 0; }
.workshop-card:hover { translate: 0 -6px; box-shadow: 0 20px 40px rgba(6,44,61,.14); }
.workshop-card--image-right { flex-direction: row-reverse; }
.workshop-card--image-left { flex-direction: row; }
.workshop-card__media { flex: 0 0 42%; overflow: hidden; }
.workshop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.workshop-card:hover .workshop-card__media img { transform: scale(1.05); }
.workshop-card__body { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.workshop-card__body h3 { font-size: 1.25rem; margin-bottom: 14px; }
.workshop-card__body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; }
.workshop-card__body p:last-child { margin-bottom: 0; }

/* ---------- Media page ---------- */
.media-intro { background: var(--mint); padding: 70px 0 90px; text-align: center; }
.media-intro__inner { max-width: 900px; margin: 0 auto; }
.media-intro__inner h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 24px; }
.media-intro__inner p { color: var(--muted); font-size: 0.97rem; }

.media-glance { background: var(--teal); padding: 90px 0; text-align: center; }
.media-glance h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.6rem); }
.media-glance__subtitle { color: rgba(255,255,255,.85); margin-bottom: 44px; }
.media-glance__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.stat-card {
	border: 1.5px solid rgba(255,255,255,.4);
	border-radius: var(--radius);
	padding: 34px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	translate: 0 0;
	transition: translate .35s cubic-bezier(.4,0,.2,1), border-color .35s cubic-bezier(.4,0,.2,1), background .35s cubic-bezier(.4,0,.2,1);
}
.stat-card:hover { translate: 0 -6px; background: rgba(255,255,255,.08); border-color: var(--white); }
.stat-card__icon { width: 56px; height: 56px; margin-bottom: 6px; }
.stat-card__icon img { width: 100%; height: 100%; }
.stat-card strong { color: var(--white); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stat-card__label { color: rgba(255,255,255,.85); font-size: 0.92rem; }

.media-work {
	position: relative;
	padding: 100px 0;
	text-align: center;
	background-size: cover;
	background-position: center;
}
.media-work__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6,15,20,.4), rgba(6,15,20,.5));
}
.media-work__inner { position: relative; z-index: 1; }
.media-work h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.6rem); }
.media-work > .container > p { color: rgba(255,255,255,.85); max-width: 900px; margin: 0 auto 40px; }
.media-work h3 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-bottom: 24px; }
.media-work .btn { margin-top: 12px; }

.media-work__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-bottom: 50px;
}
.book-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px 26px;
	box-shadow: 0 10px 30px rgba(0,0,0,.2);
	translate: 0 0;
	transition: translate .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.book-card:hover { translate: 0 -6px; box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.book-card h4 { font-size: 1.1rem; margin-bottom: 12px; }
.book-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ---------- Responsive ---------- */

/* Nav collapses to hamburger before there's room to wrap onto two lines */
@media (max-width: 1200px) {
	.main-nav {
		position: fixed;
		inset: 68px 0 0 0;
		background: var(--navy);
		transform: translateY(-110%);
		opacity: 0;
		visibility: hidden;
		transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s ease, visibility 0s .35s;
		padding: 20px 24px;
		z-index: 90;
	}
	.main-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s ease;
	}
	.main-nav ul { flex-direction: column; gap: 18px; }
	.main-nav__close {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 16px;
		right: 16px;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		border: 1.5px solid rgba(255,255,255,.4);
		background: none;
		color: var(--white);
		cursor: pointer;
		transition: background-color .2s ease;
	}
	.main-nav__close:hover { background-color: rgba(255,255,255,.12); }
	/* The open mobile panel is always a solid navy fill (above), regardless
	   of header variant - but .site-header--transparent's closed-state nav
	   links are navy text (meant for sitting on a light background before
	   scrolling), which is invisible against this panel's own navy
	   background. Force visible text/icon colors here so every page's
	   mobile menu is readable, not just the ones already using white text
	   (site-header--transparent-light, or a scrolled transparent header). */
	.site-header--transparent .main-nav a { color: rgba(255,255,255,.9); }
	.site-header--transparent .main-nav a.is-active { color: var(--white); }
	.nav-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		background: none;
		border: none;
		padding: 6px;
	}
	.nav-toggle span { width: 22px; height: 2px; background: var(--white); }
	.site-header__cta { display: none; }
	.about-values__subtitle,
	.about-principles__subtitle,
	.about-track__subtitle { white-space: normal; }
}

@media (max-width: 960px) {
	.about__inner,
	.cta-band__inner { grid-template-columns: 1fr; }
	.about__photo { order: -1; max-width: 420px; margin: 0 auto; }
	.about-intro__grid { grid-template-columns: 1fr; }
	.about-intro__media { order: -1; max-width: 380px; margin: 0 auto; }
	.movement__cards .movement-card { flex-basis: calc((100% - 22px) / 2); }
	.interviews__grid { grid-template-columns: 1fr; }
	.footer__inner { justify-content: flex-start; }
	.about-values__grid,
	.about-principles__grid,
	.about-track__grid { grid-template-columns: 1fr; }
	.about-gallery { grid-template-columns: repeat(2, 1fr); }
	.about-gallery__item:nth-child(3),
	.about-gallery__item:nth-child(4) { aspect-ratio: 8 / 5; }
	.service-split__grid { grid-template-columns: 1fr; }
	.service-split__media { order: -1; max-width: 380px; margin: 0 auto; }
	.workshop-card,
	.workshop-card--image-left,
	.workshop-card--image-right { flex-direction: column; }
	.workshop-card__media { flex-basis: auto; aspect-ratio: 16 / 10; }
	.workshop-card__body { padding: 28px; }
	.media-glance__grid { grid-template-columns: repeat(2, 1fr); }
	.media-work__grid { grid-template-columns: 1fr; }
	.page-block__image-text { grid-template-columns: 1fr; }
	.page-block__image-text-media { order: -1; max-width: 420px; margin: 0 auto; }
	.page-block__image-text--right .page-block__image-text-media { order: -1; }
}

@media (max-width: 640px) {
	.movement__cards .movement-card { flex-basis: 100%; }
	.movement__carousel { gap: 20px; }
	.about-gallery { grid-template-columns: 1fr; }
	.about-gallery__item:nth-child(3),
	.about-gallery__item:nth-child(4) { grid-column: auto; aspect-ratio: 6 / 5; }
	.value-card { flex-direction: column; }
	.track-additional { flex-direction: column; align-items: flex-start; }
	.service-page__media img { aspect-ratio: 4 / 3; }
	.media-glance__grid { grid-template-columns: 1fr; }
	/* On phones the video's 16:9 shape is nothing like the screen's tall
	   aspect ratio, so showing it uncropped (the desktop behavior) would
	   leave it tiny with lots of empty space below. Fill the screen instead. */
	.hero { height: 100vh; height: 100dvh; }
	.hero__video {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

/* ---------- Scroll-reveal loading animation ----------
   .reveal shares elements with hover-transition components (buttons,
   movement-card, interview-card). The `transition` shorthand can only be
   set once per element, so this list is a superset of every property any
   .reveal-combined component transitions on hover — otherwise this rule
   (same specificity, declared last) would silently cancel their hover
   transitions. Reveal's own opacity/transform get the stagger delay;
   hover-driven properties intentionally have no delay. */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity .7s ease calc(var(--reveal-index, 0) * 90ms),
		transform .7s ease calc(var(--reveal-index, 0) * 90ms),
		translate .35s cubic-bezier(.4,0,.2,1),
		background .35s cubic-bezier(.4,0,.2,1),
		border-color .35s cubic-bezier(.4,0,.2,1),
		box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.press-tab-content { animation: none; }
}

/* ---------- Press page ---------- */
.press-section { padding: 70px 0 100px; background-color: #e8f8f8; }

.press-tabs {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}
.press-tab-content { display: none; }
.press-tab-content.is-active { display: block; animation: pressTabEnter .45s ease both; }
@keyframes pressTabEnter {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}
.press-tab {
	display: inline-flex;
	align-items: center;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--navy);
	background: transparent;
	border: 1.5px solid rgba(6,44,61,.25);
	translate: 0 0;
	transition: translate .25s cubic-bezier(.4,0,.2,1), background .3s cubic-bezier(.4,0,.2,1), border-color .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.press-tab:hover { translate: 0 -1px; border-color: var(--teal); text-decoration: none; box-shadow: 0 6px 16px rgba(6,44,61,.08); }
.press-tab.is-active { background: #F9BD77; border-color: #F9BD77; color: var(--white); }
.press-tab.is-active:hover { background: var(--teal); border-color: var(--teal); }

.press-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.press-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(6,44,61,.06);
	translate: 0 0;
	display: flex;
	flex-direction: column;
	transition: translate .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.press-card:hover { translate: 0 -6px; box-shadow: 0 20px 40px rgba(6,44,61,.14); }
.press-card__media { display: block; overflow: hidden; }
.press-card__media img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .35s ease; }
.press-card:hover .press-card__media img { transform: scale(1.05); }
.press-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.press-card__body h3 { font-size: 1.05rem; margin: 0 0 6px; line-height: 1.35; }
.press-card__date { color: var(--muted); font-size: 0.82rem; margin: 0 0 10px; }
.press-card__excerpt {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 0 0 16px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.press-empty { text-align: center; color: var(--muted); padding: 40px 0; }

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 48px;
}
.pagination__num,
.pagination__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--navy);
	border: 1.5px solid rgba(6,44,61,.18);
	font-size: 0.88rem;
	font-weight: 600;
	background: var(--white);
	translate: 0 0;
	transition: translate .25s cubic-bezier(.4,0,.2,1), background .3s cubic-bezier(.4,0,.2,1), border-color .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.pagination__num:hover,
.pagination__arrow:hover { translate: 0 -1px; border-color: var(--teal); text-decoration: none; box-shadow: 0 6px 14px rgba(6,44,61,.08); }
.pagination__num.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pagination__arrow.is-disabled { opacity: .35; pointer-events: none; }

.press-more-videos { margin-top: 60px; text-align: center; }
.press-more-videos__heading { width: 100%; font-size: 50px; margin-bottom: 16px; }
.press-more-videos__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.press-more-videos__row p { color: var(--muted); font-size: 0.9rem; margin: 0; max-width: 100%; }
.press-more-videos__row .btn { flex-shrink: 0; }

/* ---------- Press detail page ---------- */
.press-article-hero {
	padding: 120px 0 40px;
	background-color: #e8f8f8;
	background-image: url('../img/page-hero-bg.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% 84px; /* confines the image to roughly the header's own height */
}
.press-article-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); max-width: 900px; margin: 0; color: var(--navy); }
.press-article-hero__date { color: var(--muted); font-size: 0.92rem; margin: 12px 0 0; }

.press-detail { padding: 20px 0 90px; background-color: #e8f8f8; }
.press-detail__inner { max-width: var(--container); margin: 0 auto; }
.press-detail__media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; box-shadow: 0 20px 50px rgba(6,44,61,.1); }
.press-detail__media img { width: 100%; display: block; }
.press-detail__body { color: var(--ink); font-size: 1.02rem; line-height: 1.75; }
.press-detail__body p { margin: 0 0 20px; }
.press-detail__body a { color: var(--teal-dark); text-decoration: underline; }
.press-detail__body strong { color: var(--navy); }
.press-detail__body img { width: 100%; border-radius: var(--radius); margin: 8px 0 24px; display: block; }
.press-detail__body h2,
.press-detail__body h3,
.press-detail__body h4 { color: var(--navy); font-weight: 700; margin: 34px 0 14px; line-height: 1.3; }
.press-detail__body h2 { font-size: 1.4rem; }
.press-detail__body h3 { font-size: 1.2rem; }
.press-detail__body h4 { font-size: 1.05rem; }
.press-detail__body ul { list-style: disc; margin: 0 0 24px; padding-left: 22px; }
.press-detail__body ol { list-style: decimal; margin: 0 0 24px; padding-left: 22px; }
.press-detail__body li { margin-bottom: 10px; }
.press-detail__body li::marker { color: var(--teal-dark); }

/* ---------- Legal pages (Terms & Conditions, Privacy Policy) ---------- */
.legal-page { padding: 50px 0 90px; }
.legal-page__inner { max-width: 760px; margin: 0 auto; }

/* ---------- Flexible page blocks (admin-added custom sections) ---------- */
.page-block { padding: 70px 0; }
.page-block--alt { background: var(--mint); }
.page-block__richtext { max-width: 800px; margin: 0 auto; }
.page-block__richtext h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-bottom: 18px; }
.page-block__image-text {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}
.page-block__image-text--right .page-block__image-text-media { order: 2; }
.page-block__image-text-media img { width: 100%; border-radius: var(--radius-lg); display: block; }
.page-block__image-text-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-bottom: 18px; }

.press-share { display: flex; align-items: center; gap: 14px; margin-top: 44px; padding-top: 30px; border-top: 1px solid rgba(6,44,61,.1); }
.press-share__label { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.press-share__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--navy);
	border: none;
	cursor: pointer;
	padding: 0;
	translate: 0 0;
	transition: translate .25s cubic-bezier(.4,0,.2,1), background .3s cubic-bezier(.4,0,.2,1);
}
.press-share__icon:hover { translate: 0 -3px; background: var(--teal-dark); text-decoration: none; }
.press-share__icon.is-copied { background: var(--teal-dark); }

.press-related { background: #e0f3f2; padding: 70px 0 90px; }
.press-related__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; gap: 16px; flex-wrap: wrap; }
.press-related__head h2 { font-size: 1.5rem; margin: 0; color: var(--navy); }

@media (max-width: 960px) {
	.press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.press-grid { grid-template-columns: 1fr; }
	.press-tabs { gap: 10px; }
	.press-tab { padding: 10px 20px; font-size: 0.85rem; }
}

/* ---------- Contact page ---------- */
.contact-section { padding: 70px 0 100px; background-color: #e8f8f8; }

.contact-intro { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.contact-intro__eyebrow {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--teal-dark);
	margin: 0 0 10px;
}
.contact-intro h2 { margin: 0 0 14px; }
.contact-intro__subtitle { color: var(--muted); margin: 0; }

.contact-success,
.contact-errors {
	max-width: 700px;
	margin: 0 auto 30px;
	padding: 14px 20px;
	border-radius: var(--radius);
	text-align: center;
	font-size: 0.92rem;
}
.contact-success { background: var(--white); border: 1.5px solid var(--teal); color: var(--teal-dark); }
.contact-errors { background: #fdecea; border: 1.5px solid #f3b4ae; color: #b3261e; }
.contact-errors ul { list-style: none; margin: 0; padding: 0; }
.contact-errors li { margin-bottom: 4px; }
.contact-errors li:last-child { margin-bottom: 0; }

.contact-tabs {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}
.contact-tab {
	display: inline-flex;
	align-items: center;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	font-family: inherit;
	cursor: pointer;
	color: var(--navy);
	background: var(--white);
	border: 1.5px solid rgba(6,44,61,.18);
	translate: 0 0;
	transition: translate .25s cubic-bezier(.4,0,.2,1), background .3s cubic-bezier(.4,0,.2,1), border-color .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.contact-tab:hover { translate: 0 -1px; border-color: var(--teal); box-shadow: 0 6px 16px rgba(6,44,61,.08); }
.contact-tab.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.contact-tab.is-active:hover { background: var(--teal); border-color: var(--teal); }

.contact-layout {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 700px;
	margin: 0 auto;
	gap: 40px;
}
.contact-form-panel { display: none; }
.contact-form-panel.is-active { display: block; animation: pressTabEnter .4s ease both; }

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 24px;
	margin-bottom: 20px;
}
.form-field--full { grid-column: 1 / -1; margin-bottom: 20px; }

.form-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 7px;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid rgba(25,183,176,.35);
	border-radius: 10px;
	background: rgba(255,255,255,.6);
	font-family: inherit;
	font-size: 0.92rem;
	color: var(--ink);
	transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(22,38,44,.4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--teal);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(25,183,176,.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field select { cursor: pointer; }

.contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 24px;
	cursor: pointer;
}
.contact-consent input { margin-top: 3px; flex-shrink: 0; }

.contact-honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.contact-sidebar {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 30px;
}
.contact-sidebar p.contact-sidebar__eyebrow {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--teal);
	margin: 0 0 8px;
}
.contact-sidebar h3 { margin: 0 0 12px; }
.contact-sidebar p { color: var(--muted); margin: 0 0 20px; font-size: 0.92rem; }
.contact-sidebar__icons { display: flex; gap: 12px; }
.contact-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--teal);
	color: var(--teal-dark);
	background: transparent;
	transition: background-color .25s ease, color .25s ease, translate .25s cubic-bezier(.4,0,.2,1);
	translate: 0 0;
}
.contact-icon-circle:hover { background-color: var(--teal); color: var(--white); translate: 0 -3px; text-decoration: none; }
.contact-icon-circle__glyph {
	display: block;
	width: 18px;
	height: 18px;
	background-color: currentColor;
	-webkit-mask-image: var(--icon);
	mask-image: var(--icon);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

@media (min-width: 900px) {
	.contact-layout { grid-template-columns: 2fr 1fr; max-width: none; align-items: start; }
}
@media (max-width: 640px) {
	.contact-form-grid { grid-template-columns: 1fr; }
	.contact-tabs { gap: 10px; }
	.contact-tab { padding: 10px 20px; font-size: 0.85rem; }
}
