/* ==========================================================================
   Sousa Football Agents — main.css
   Design system + components. Media queries live in responsive.css.

   Table of contents
   1.  Design tokens (variables)
   2.  Base / typography
   3.  Layout primitives (container, grid, section)
   4.  Buttons & links
   5.  Header / navigation
   6.  Preloader
   7.  Custom cursor
   8.  Floating WhatsApp
   9.  Hero
   10. Section: Who we are / pillars
   11. Section: Services
   12. Section: Markets / map
   13. Section: Alliances
   14. Section: Team
   15. Section: Blog preview / posts
   16. Section: Contact form
   17. Section: Final CTA
   18. Interior pages / accordion
   19. Ruben landing
   20. Animation utilities (reveal)
   ========================================================================== */

@font-face {
	font-family: "Georama Expanded";
	src: url("../../../../uploads/2026/06/Georama_Expanded/Georama_Expanded-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Georama Expanded";
	src: url("../../../../uploads/2026/06/Georama_Expanded/Georama_Expanded-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Georama Expanded";
	src: url("../../../../uploads/2026/06/Georama_Expanded/Georama_Expanded-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Georama Expanded";
	src: url("../../../../uploads/2026/06/Georama_Expanded/Georama_Expanded-ExtraBold.ttf") format("truetype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Georama Expanded";
	src: url("../../../../uploads/2026/06/Georama_Expanded/Georama_Expanded-Black.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* 1. Design tokens
   ------------------------------------------------------------------------ */
:root {
	/* Brand palette */
	--color-green: #0B3E13;
	--color-gold-soft: #CEB887;
	--color-cream: #f4eedf;
	--color-dark: #171b17;
	--color-white: #ffffff;

	/* Derived tones */
	--color-green-deep: #08250C;
	--color-gold-deep: #7A6C4D;
	--color-ink: #171b17;
	--color-muted: #68645c;
	--color-line: rgba(23, 27, 23, 0.14);
	--color-line-light: rgba(246, 241, 231, 0.18);
	--gradient-green: linear-gradient(135deg, #0B3E13 0%, #08250C 100%);
	--gradient-gold: linear-gradient(135deg, #CEB887 0%, #7A6C4D 100%);

	/* Typography */
	--font-serif: "Georama Expanded", "Arial Black", Impact, system-ui, sans-serif;
	--font-sans: "Georama Expanded", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

	/* Fluid type scale — single source of truth, fluid mobile→desktop.
	   Each token's clamp min is tuned to fit small screens, the cap drives
	   desktop impact, and the vw connects them so the responsive media-query
	   refinements are no longer the only thing holding sizes together. */
	--fs-display:    clamp(1.85rem, 6vw, 5.25rem);    /* big statements: footer / who-cta title */
	--fs-hero:       clamp(1rem, 4.4vw, 4.6rem);      /* hero headline + preloader (nowrap-safe) */
	--fs-h1:         clamp(1.5rem, 4vw, 3.6rem);      /* primary section titles */
	--fs-h2:         clamp(1.35rem, 2.6vw, 2.4rem);   /* subsection titles */
	--fs-h3:         clamp(1.2rem, 1.7vw, 1.6rem);    /* card titles */
	--fs-h4:         clamp(1.05rem, 1.3vw, 1.25rem);  /* minor headings */
	--fs-lead:       clamp(1.02rem, 1.3vw, 1.25rem);  /* leads / subheads / intros */
	--fs-eyebrow-lg: clamp(0.92rem, 1vw, 1.1rem);     /* large section eyebrows */
	--fs-body:       0.95rem;
	--fs-small:      0.8rem;
	--fs-eyebrow:    0.72rem;                          /* small uppercase labels */

	/* Spacing scale */
	--space-section: clamp(4.5rem, 10vw, 9rem);
	--space-lg: clamp(2.5rem, 5vw, 4.5rem);
	--space-md: 1.5rem;
	--space-sm: 0.75rem;

	/* Layout */
	--container: 1280px;
	--container-narrow: 880px;
	--radius: 4px;
	--radius-lg: 14px;

	/* Motion */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
	--dur: 0.6s;

	/* Header height */
	--header-h: 84px;
}

/* 2. Base / typography
   ------------------------------------------------------------------------ */
html {
	scroll-behavior: smooth;
}
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
	font-family: var(--font-sans);
	font-size: var(--fs-body);
	font-weight: 400;
	line-height: 1.58;
	color: var(--color-ink);
	background:
		linear-gradient(180deg, rgba(215, 197, 143, 0.1), rgba(7, 61, 29, 0.03)),
		var(--color-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
	margin: 0 0 0.5em;
	color: var(--color-ink);
	text-transform: uppercase;
}

p {
	margin: 0 0 1.2em;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s var(--ease-soft), opacity 0.3s var(--ease-soft);
}

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-green);
	margin-bottom: 1rem;
}

.lead {
	font-size: var(--fs-lead);
	line-height: 1.5;
	color: var(--color-ink);
	font-weight: 500;
}

.muted {
	color: var(--color-muted);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 1rem;
	z-index: 10001;
	background: var(--color-green);
	color: var(--color-white);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius);
}
.skip-link:focus {
	top: 1rem;
}

/* 3. Layout primitives
   ------------------------------------------------------------------------ */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

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

.section {
	padding-block: var(--space-section);
	position: relative;
}

.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }
.section--green {
	background: var(--gradient-green);
	color: var(--color-cream);
}
.section--dark {
	background: linear-gradient(135deg, var(--color-dark), #08250C);
	color: var(--color-cream);
}
.section--green h1, .section--green h2, .section--green h3,
.section--dark h1, .section--dark h2, .section--dark h3 {
	color: var(--color-cream);
}
.section--green .eyebrow,
.section--dark .eyebrow {
	color: var(--color-gold-soft);
}

.section-head {
	max-width: 720px;
	margin-bottom: var(--space-lg);
}
.section-head__title {
	font-size: var(--fs-h2);
}

.grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 4. Buttons & links
   ------------------------------------------------------------------------ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: var(--font-sans);
	font-size: 1.28rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	min-height: 62px;
	padding: 1.05em 2.5em;
	border-radius: 100px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
	will-change: transform;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
	background: var(--color-green);
	color: var(--color-cream);
}
.btn--primary:hover {
	background: var(--color-green-deep);
}
.btn--gold {
	background: var(--color-gold-soft);
	color: var(--color-dark);
}
.btn--gold:hover { background: #C9BA8B; }

.btn--outline {
	background: transparent;
	border-color: currentColor;
	color: inherit;
}
.btn--outline:hover {
	background: var(--color-ink);
	color: var(--color-cream);
	border-color: var(--color-ink);
}
.btn--external {
	min-height: 44px;
	padding: 0.72rem 1.05rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.btn--external::after {
	width: 0.95em;
	height: 0.95em;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M10 7h7v7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M10 7h7v7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn--external:hover::after { transform: translate(3px, -3px); }
.section--green .btn--outline:hover,
.section--dark .btn--outline:hover {
	background: var(--color-cream);
	color: var(--color-ink);
	border-color: var(--color-cream);
}

.btn--nav {
	padding: 0.75em 1.5em;
	background: var(--color-green);
	color: var(--color-cream);
	font-size: 0.98rem;
}
.btn--nav:hover { background: var(--color-green-deep); }

/* Underline link with animated rule */
.link-underline {
	position: relative;
	display: inline-block;
	font-weight: 500;
}
.link-underline::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s var(--ease);
}
.link-underline:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* 5. Header / navigation
   ------------------------------------------------------------------------ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: transform 0.55s var(--ease), background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
	border-bottom: 1px solid transparent;
}
.site-header.is-services-hidden,
.site-header.is-who-hidden,
.site-header.is-ruben-hidden {
	transform: translateY(calc(-100% - 2px));
}
/* Keep the fixed header below WordPress' toolbar for logged-in users. */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .menu-overlay { top: 32px; }
.site-header__bar {
	height: var(--header-h);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	width: 100%;
	max-width: none;
	gap: 2rem;
}
.site-header__brand {
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
}

/* Scrolled state (toggled by JS) */
.site-header.is-scrolled {
	background: #1B3F18;
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom-color: rgba(246, 241, 231, 0.16);
}
/* The alliances page starts transparent over its cream hero. */
body.is-alliances-page .site-header {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom-color: transparent;
}
/* Once fixed while scrolling, give the navigation a solid cream surface. */
body.is-alliances-page .site-header.is-scrolled {
	background: var(--color-cream);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom-color: rgba(11, 62, 19, 0.14);
}
body.is-alliances-page .site-header .site-nav__list a,
body.is-alliances-page .site-header .brand-text,
body.is-alliances-page .site-header .brand-text__full,
body.is-alliances-page .site-header .menu-trigger,
body.is-alliances-page .site-header .header-instagram,
body.is-alliances-page .site-header .header-language-toggle,
body.is-alliances-page .site-header .site-nav__mobile-cta {
	color: var(--color-green);
}
/* Every template opens with a dark hero / green page-hero, so the header
   starts light and inverts to dark once scrolled (background turns cream). */
.site-header:not(.is-scrolled) .brand-text,
.site-header:not(.is-scrolled) .brand-text__full,
.site-header:not(.is-scrolled) .site-nav__list a {
	color: var(--color-cream);
}
.site-header.is-scrolled .site-nav__list a { color: var(--color-cream); }
.site-header:not(.is-scrolled) .nav-toggle__line,
.site-header:not(.is-scrolled) .nav-toggle__line::before,
.site-header:not(.is-scrolled) .nav-toggle__line::after {
	background: var(--color-cream);
}
.site-header.is-scrolled .nav-toggle__line,
.site-header.is-scrolled .nav-toggle__line::before,
.site-header.is-scrolled .nav-toggle__line::after {
	background: var(--color-cream);
}

.custom-logo-link { display: inline-block; }
.custom-logo { max-height: 48px; width: auto; }

.site-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: clamp(150px, 13vw, 190px);
	height: 58px;
}
.site-logo__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.4s var(--ease);
}
.site-logo__image--base,
.site-logo__image--ball { display: none; }
.site-logo:hover .site-logo__image--full { transform: scale(1.025); }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text__name {
	font-family: var(--font-serif);
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.02em;
}
.brand-text__full {
	font-size: 0.62rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-top: 4px;
}

.site-nav {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-self: start;
	padding: 0;
	border: 0;
	background: transparent;
}
.site-header.is-scrolled .site-nav {
	background: transparent;
	box-shadow: none;
}
.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
.site-nav__list a {
	display: block;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	position: relative;
	padding: 0.75rem 0 0.55rem;
	transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 1px;
	width: 100%;
	height: 1px;
	background: #C9BA8B;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.45s var(--ease);
}
.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: center;
}
.site-nav__list a:hover { color: #C9BA8B; background: transparent; transform: translateY(-2px); }
.site-nav__mobile-cta { display: none; }

.site-header__tools {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 1.35rem;
}
.menu-trigger {
	display: none; /* desktop uses the inline nav; trigger only shows on mobile */
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #C9BA8B;
	cursor: pointer;
	z-index: 1003;
}
.menu-trigger__lines { position: relative; display: block; width: 32px; height: 14px; }
.menu-trigger__lines i {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: currentColor;
	transform-origin: center;
	transition: top 0.4s var(--ease), width 0.35s var(--ease), transform 0.4s var(--ease);
}
.menu-trigger__lines i:first-child { top: 2px; }
.menu-trigger__lines i:last-child { top: 11px; width: 72%; }
.menu-trigger:hover .menu-trigger__lines i:last-child { width: 100%; }
.menu-trigger[aria-expanded="true"] .menu-trigger__lines i:first-child { top: 7px; transform: rotate(45deg); }
.menu-trigger[aria-expanded="true"] .menu-trigger__lines i:last-child { top: 7px; width: 100%; transform: rotate(-45deg); }
.header-instagram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: #C9BA8B;
	transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}
.header-instagram svg { width: 30px; height: 30px; }
.header-instagram:hover { color: var(--color-cream); transform: translateY(-2px); }
.header-language-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.38rem;
	min-width: 58px;
	height: 36px;
	padding: 0 0.65rem;
	border: 1px solid currentColor;
	border-radius: 999px;
	color: #C9BA8B;
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s var(--ease);
}
.header-language-toggle img {
	display: block;
	flex: 0 0 18px;
	width: 18px !important;
	height: 18px !important;
	border-radius: 50%;
	object-fit: contain;
	box-shadow: 0 0 0 1px rgba(246, 241, 231, 0.2);
}
.header-language-toggle:hover {
	background: #C9BA8B;
	border-color: #C9BA8B;
	color: var(--color-green-deep);
	transform: translateY(-2px);
}

/* Editorial drawer opened by the header trigger. */
.menu-overlay {
	position: fixed;
	inset: 0 0 0 auto;
	width: clamp(400px, 33.333vw, 560px);
	z-index: 1001;
	padding: calc(var(--header-h) + 2.5rem) clamp(2rem, 3.5vw, 3.5rem) 3rem;
	background: #1B3F18;
	color: var(--color-cream);
	overflow-y: auto;
	transform: translateX(100%);
	visibility: hidden;
	pointer-events: none;
	box-shadow: -28px 0 70px rgba(27, 63, 24, 0.2);
	transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.8s;
}
.menu-overlay.is-open {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}
.menu-overlay__inner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 3rem;
	width: 100%;
	min-height: 100%;
	margin-inline: auto;
}
.menu-overlay__eyebrow {
	display: block;
	margin-bottom: 1.4rem;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #C9BA8B;
}
.menu-overlay__list { counter-reset: overlay-link; }
.menu-overlay__list li {
	counter-increment: overlay-link;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.menu-overlay__list a {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	width: max-content;
	font-family: var(--font-serif);
	font-size: var(--fs-h2);
	line-height: 1.02;
	transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.menu-overlay__list a::before {
	content: "0" counter(overlay-link);
	font-family: var(--font-sans);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	color: #C9BA8B;
}
.menu-overlay__list a:hover { color: #C9BA8B; transform: translateX(10px); }
.menu-overlay.is-open .menu-overlay__list li { opacity: 1; transform: none; }
.menu-overlay.is-open .menu-overlay__list li:nth-child(1) { transition-delay: 0.24s; }
.menu-overlay.is-open .menu-overlay__list li:nth-child(2) { transition-delay: 0.31s; }
.menu-overlay.is-open .menu-overlay__list li:nth-child(3) { transition-delay: 0.38s; }
.menu-overlay.is-open .menu-overlay__list li:nth-child(4) { transition-delay: 0.45s; }
.menu-overlay.is-open .menu-overlay__list li:nth-child(5) { transition-delay: 0.52s; }
.menu-overlay.is-open .menu-overlay__list li:nth-child(6) { transition-delay: 0.59s; }
.menu-overlay__about {
	padding-top: 2rem;
	padding-bottom: 2rem;
	border-top: 1px solid rgba(246, 241, 231, 0.2);
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s var(--ease) 0.52s, transform 0.65s var(--ease) 0.52s;
}
.menu-overlay.is-open .menu-overlay__about { opacity: 1; transform: none; }
.menu-overlay__about > p:first-of-type { font-family: var(--font-serif); font-size: var(--fs-h2); line-height: 1.2; }
.menu-overlay__description { max-width: 42ch; margin-top: 1.2rem; opacity: 0.7; }
.menu-overlay__contact { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 2rem; color: #C9BA8B; }
body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 1002; background: transparent; border-color: transparent; transform: translateY(0); }
body.nav-open .site-nav { opacity: 0; pointer-events: none; }

/* Hamburger */
.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
	z-index: 1002;
}
.nav-toggle__box { display: block; width: 28px; height: 16px; position: relative; }
.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-ink);
	transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle__line { top: 50%; transform: translateY(-50%); }
.nav-toggle__line::before { top: -8px; }
.nav-toggle__line::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__line { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__line::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__line::after { transform: translateY(-8px) rotate(-45deg); }

/* 6. Preloader
   ------------------------------------------------------------------------ */
.preloader {
	position: fixed;
	inset: 0;
	z-index: 100000;
	overflow: hidden;
	background: transparent;
	transition: opacity 0.25s linear, visibility 0.25s linear;
}
.preloader.is-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.preloader__panel {
	position: absolute;
	left: 0;
	width: 100%;
	height: 50.1%;
	background: #F6F1E7;
	will-change: transform;
	transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader__panel--top { top: 0; transform-origin: top center; }
.preloader__panel--bottom { bottom: 0; transform-origin: bottom center; }
.preloader__inner {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding-inline: 1rem;
	font-family: var(--font-serif);
	font-size: var(--fs-hero);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: 0;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-gold-soft);
	will-change: transform, opacity;
	transition: transform 0.85s var(--ease), opacity 0.45s ease;
}
.preloader__line {
	display: block;
	white-space: nowrap;
	opacity: 0;
	color: var(--color-gold-soft);
	transform-origin: center center;
	will-change: transform, opacity, color;
	transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.36s ease, color 0.8s ease;
}
.preloader__word { display: inline-block; }
.preloader__line--mobile { display: none; }
.preloader__line--top { transform: translateY(-48vh) scale(1.16); }
.preloader__line--bottom { transform: translateY(48vh) scale(1.16); }
.preloader.is-entering .preloader__line {
	opacity: 1;
	transform: translateY(0) scale(1.16);
}
.preloader.is-settled .preloader__line {
	color: var(--color-gold-soft);
	transform: translateY(0) scale(1);
}
.preloader.is-morphing .preloader__line {
	transform: translate(var(--morph-x, 0px), var(--morph-y, 0px)) scale(var(--morph-scale, 1));
}
.preloader.is-opening .preloader__panel--top { transform: translateY(-100%); }
.preloader.is-opening .preloader__panel--bottom { transform: translateY(100%); }
.preloader.is-opening .preloader__line {
	color: var(--color-cream);
	opacity: 1;
	transition-delay: 0s, 0.78s, 0.18s;
}
.preloader.is-revealed .preloader__line {
	opacity: 0;
	transition-duration: 0.34s;
}

/* Ruben landing preloader: minimal percentage and transitional wipe. */
.preloader--ruben .preloader__panel {
	background: #061f0b;
	transition-duration: .58s;
}
.preloader--ruben.is-opening .preloader__panel--top,
.preloader--ruben.is-opening .preloader__panel--bottom { transform: translateY(-200%); }
.preloader--ruben::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		radial-gradient(circle at 50% 48%, rgba(206,184,135,.09), transparent 28rem),
		repeating-linear-gradient(90deg, rgba(246,241,231,.018) 0 1px, transparent 1px 72px);
	pointer-events: none;
}
.ruben-loader {
	position: absolute;
	z-index: 3;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	color: var(--color-cream);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .3s ease, transform .5s var(--ease);
}
.preloader--ruben.is-entering .ruben-loader { opacity: 1; transform: none; }
.ruben-loader__identity { display: grid; gap: .38rem; margin: 0 0 1.15rem; text-align: center; text-transform: uppercase; }
.ruben-loader__identity strong { color: var(--color-cream); font-family: var(--font-sans); font-size: clamp(1.35rem, 5vw, 2.15rem); font-weight: 900; letter-spacing: -.045em; line-height: 1; }
.ruben-loader__identity span { color: var(--color-gold-soft); font-size: clamp(.48rem, 1.5vw, .62rem); font-weight: 900; letter-spacing: .2em; line-height: 1; }
.ruben-loader__count {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: .12em;
	margin: 0;
	color: var(--color-cream);
	font-family: var(--font-sans);
	font-size: clamp(2.45rem, 9vw, 4.25rem);
	font-weight: 800;
	letter-spacing: -.08em;
	line-height: .82;
}
.ruben-loader__count strong { min-width: 2.2ch; font: inherit; text-align: right; }
.ruben-loader__count span { margin-top: .12em; color: var(--color-gold-soft); font-size: .28em; font-weight: 900; letter-spacing: 0; }
.ruben-loader__progress {
	position: relative;
	width: min(20rem, 76vw);
	height: 1px;
	margin-top: 1.5rem;
	background: rgba(246,241,231,.14);
}
.ruben-loader__progress i { display: block; width: 0; height: 100%; background: var(--color-gold-soft); box-shadow: 0 0 16px rgba(206,184,135,.32); }
.ruben-loader__ball {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.35rem;
	height: 1.35rem;
	fill: #061f0b;
	stroke: var(--color-cream);
	stroke-width: 1.25;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: translate(-50%, -50%);
}
.ruben-loader__status { margin-top: 1rem; color: rgba(246,241,231,.58); font-size: .52rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.preloader--ruben.is-complete .ruben-loader__count { color: var(--color-gold-soft); }
.preloader--ruben.is-opening .ruben-loader { opacity: 0; transform: translateY(-8px); }

/* One continuous hand-off: supporting hero elements enter only after the
   intro headline has reached its final position. */
.preloader--intro ~ .site-header {
	opacity: 0;
	transform: translateY(-32px);
	transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.preloader--intro ~ .site-header .site-logo__image--full { opacity: 0; }
.preloader--intro ~ .site-header .site-logo__image--base,
.preloader--intro ~ .site-header .site-logo__image--ball { display: block; }
.preloader--intro ~ .site-header .site-logo__image--base { opacity: 1; }
.preloader--intro ~ .site-header .site-logo__image--ball {
	opacity: 0;
	transform: translateX(-70px) rotate(-220deg) scale(0.72);
	transform-origin: 29.4% 50%;
}
.preloader--intro ~ .site-main .hero__flourish {
	opacity: 0;
	transform: translateY(12px) scale(0.94);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.preloader--intro ~ .site-main .hero__headline {
	opacity: 0;
	transition: opacity 0.34s ease;
}
.preloader--intro ~ .site-main .hero__actions {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.preloader--intro ~ .site-main .hero__scroll {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.preloader--intro.is-opening ~ .site-header {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}
.preloader--intro.is-opening ~ .site-header .site-logo__image--ball {
	animation: headerBallDock 1s 0.5s var(--ease) forwards,
		headerLogoPieceOut 0.28s 1.5s ease forwards;
}
.preloader--intro.is-opening ~ .site-header .site-logo__image--base {
	animation: headerLogoPieceOut 0.28s 1.5s ease forwards;
}
.preloader--intro.is-opening ~ .site-header .site-logo__image--full {
	animation: headerLogoFinalIn 0.28s 1.5s ease forwards;
}
.preloader--intro.is-opening ~ .site-main .hero__flourish {
	opacity: 1;
	transform: none;
	transition-delay: 0.38s;
}
.preloader--intro.is-opening ~ .site-main .hero__headline {
	opacity: 1;
	transition-delay: 0.08s;
}
.preloader--intro.is-opening ~ .site-main .hero__actions {
	opacity: 1;
	transform: none;
	transition-delay: 0.52s;
}
.preloader--intro.is-opening ~ .site-main .hero__scroll {
	opacity: 1;
	transform: none;
	transition-delay: 0.68s;
}
@keyframes headerBallDock {
	0% { opacity: 0; transform: translateX(-70px) rotate(-220deg) scale(0.72); }
	15% { opacity: 1; }
	100% { opacity: 1; transform: translateX(0) rotate(0) scale(1); }
}
@keyframes headerLogoPieceOut {
	to { opacity: 0; }
}
@keyframes headerLogoFinalIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* 7. Custom cursor
   ------------------------------------------------------------------------ */
.custom-cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	pointer-events: none;
	mix-blend-mode: difference;
	z-index: 9999;
	transform: translate(-50%, -50%);
	display: none; /* enabled by JS on desktop */
	transition: width 0.3s var(--ease), height 0.3s var(--ease);
}
.custom-cursor.is-active { display: block; }
/* Original vintage ball artwork used as the pointer. */
.custom-cursor__ball {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	filter: invert(1);
}
/* Gentle, continuous rotation so it reads as a rolling ball. */
.custom-cursor__ball {
	transform-origin: 50% 50%;
	animation: ccSpin 9s linear infinite;
}
.custom-cursor.is-hover {
	width: 78px;
	height: 78px;
}
.custom-cursor.is-hover .custom-cursor__ball { animation-duration: 5s; }
@keyframes ccSpin {
	to { transform: rotate(360deg); }
}

/* 8. Floating WhatsApp
   ------------------------------------------------------------------------ */
.wa-float {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: var(--color-cream);
	color: var(--color-green);
	padding: 0.85rem;
	border-radius: 100px;
	box-shadow: 0 14px 34px rgba(27, 63, 24, 0.32);
	overflow: hidden;
	transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); background: var(--color-gold-soft); color: var(--color-green-deep); }
.wa-float__icon { width: 24px; height: 24px; fill: currentColor; flex: none; }
.wa-float__text {
	max-width: 0;
	white-space: nowrap;
	overflow: hidden;
	font-size: 1rem;
	font-weight: 500;
	transition: max-width 0.5s var(--ease), margin 0.5s var(--ease);
}
.wa-float:hover .wa-float__text {
	max-width: 180px;
	margin-left: 0.6rem;
	margin-right: 0.3rem;
}

/* 9. Hero
   ------------------------------------------------------------------------ */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	text-align: center;
	color: var(--color-cream);
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.hero__media img,
.hero__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__media img {
	max-width: none;
	transform-origin: center center;
	will-change: transform;
	animation: heroImageDrift 18s ease-in-out infinite alternate;
}
.hero__media-video {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
.hero__media-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;        /* 16:9 based on viewport width */
	min-width: 177.78vh;    /* 16:9 based on viewport height */
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: 0;
}
@keyframes heroImageDrift {
	0% { transform: scale(1.05) translate3d(-1.2%, 0, 0); }
	50% { transform: scale(1.09) translate3d(0, -0.6%, 0); }
	100% { transform: scale(1.13) translate3d(1.2%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.hero__media img { animation: none; transform: scale(1.03); }
}
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	/* Black gradient overlay so the light title stays legible over any photo. */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
}
.hero__content {
	/* Stays inside .container, so it respects the site's width grid. */
	padding-block: calc(var(--header-h) + 2rem);
	max-width: none;
	margin-inline: auto;
}
.hero__eyebrow { color: var(--color-gold-soft); }
.hero__headline {
	font-size: var(--fs-hero);
	font-weight: 500;
	line-height: 1.04;
	color: var(--color-cream);
	margin: 0 auto 1.4rem;
	max-width: none;
}
.hero__headline-line {
	display: block;
	width: max-content;
	max-width: 100%;
	margin-inline: auto;
}
.hero__headline-line:first-child { white-space: nowrap; }
.hero__headline-line--mobile { display: none; }
.hero__headline .word { display: inline-block; }
.hero__subhead {
	font-size: var(--fs-lead);
	line-height: 1.55;
	color: var(--color-cream);
	opacity: 0.9;
	max-width: 52ch;
	margin: 0 auto 1.8rem;
}

/* Vintage-football flourish: gold line + rolling ball under the title */
.hero__flourish {
	position: relative;
	width: clamp(180px, 24vw, 280px);
	height: 30px;
	margin: 0 auto 1.8rem;
}
.hero__line {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color-gold-soft);
	transform: scaleX(1);
	transform-origin: left center;
}
.hero__ball {
	position: absolute;
	top: 50%;
	left: 0;
	width: 26px;
	height: 26px;
	margin-top: -13px;
	color: var(--color-gold-soft);
}
.hero__ball img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(625%) hue-rotate(5deg) brightness(93%) contrast(88%);
}
html.intro-morphed .hero__ball { left: calc(100% - 26px); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }

/* Hero pill CTAs: outlined secondary action + gold primary action. */
.hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	font-family: var(--font-sans);
	font-size: 1.28rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	min-height: 62px;
	padding: 1.05em 2.5em;
	border: 1px solid transparent;
	border-radius: 100px;
	transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.hero__cta:hover { transform: translateY(-2px); }
.hero__cta--outline {
	color: var(--color-cream);
	border-color: var(--color-cream);
}
.hero__cta--outline:hover {
	color: var(--color-dark);
	background: var(--color-cream);
}
.hero__cta--gold {
	color: var(--color-dark);
	background: #C9BA8B;
}
.hero__cta--gold:hover { background: #C9BA8B; }
.hero__cta-arrow {
	width: 22px;
	height: 22px;
	color: currentColor;
	transition: transform 0.45s var(--ease);
}
.hero__cta:hover .hero__cta-arrow { transform: translateX(5px); }
.hero__scroll {
	position: absolute;
	bottom: clamp(1.25rem, 3vw, 2.5rem);
	left: 0;
	right: 0;
	width: max-content;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	color: var(--color-cream);
	text-align: center;
	opacity: 0.88;
	transition: color 0.35s var(--ease), opacity 0.35s var(--ease);
}
.hero__scroll:hover { color: #C9BA8B; opacity: 1; }
.hero__scroll-arrow {
	display: block;
	width: 32px;
	height: 48px;
	color: #C9BA8B;
	animation: exploreArrow 1.8s var(--ease) infinite;
}
.hero__scroll-arrow svg { display: block; width: 100%; height: 100%; }
.hero__scroll-text {
	font-size: clamp(0.85rem, 1.15vw, 1.05rem);
	font-weight: 500;
	letter-spacing: 0.02em;
}
@keyframes exploreArrow {
	0%, 100% { transform: translateY(-5px); opacity: 0.55; }
	50% { transform: translateY(6px); opacity: 1; }
}

/* 10. Who we are / pillars
   ------------------------------------------------------------------------ */
.who-story {
	position: relative;
	min-height: auto;
	background: #F0E6D1;
	color: var(--color-gold-deep);
	overflow: hidden;
	--quote-scroll: 0px;
}
.who-story::after {
	content: "";
	position: absolute;
	right: max(-4rem, -4vw);
	top: 8%;
	z-index: 0;
	width: min(56vw, 620px);
	aspect-ratio: 640 / 420;
	background: url("../img/quote-fill.svg") center / contain no-repeat;
	opacity: 0.12;
	transform: translate3d(0, var(--quote-scroll), 0) rotate(-5deg);
	transform-origin: center;
	pointer-events: none;
	will-change: transform;
}
.who-story__sticky {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: auto;
	padding-block: clamp(7rem, 11vw, 11rem);
	overflow: hidden;
}
.who-story__layout {
	width: 100%;
	max-width: 1600px;
}
.who-story .container {
	max-width: min(1520px, 100%);
}
.who-story__statement-row,
.who-story__detail-row {
	display: grid;
	grid-template-columns: minmax(140px, 0.16fr) minmax(0, 1fr);
	gap: clamp(2rem, 3.5vw, 3.5rem);
}
.who-story__eyebrow {
	padding-top: 0.5em;
	font-family: var(--font-serif);
	font-size: var(--fs-eyebrow-lg);
	font-style: italic;
	color: #8C7136;
}
.who-story__statement {
	max-width: none;
	font-family: var(--font-sans);
	font-size: var(--fs-h2);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: 0;
	color: var(--color-green);
}
.scroll-word { color: rgba(140, 113, 54, 0.3); will-change: color; }
.who-story__statement .scroll-word { color: rgba(140, 113, 54, 0.3); }
.who-story__detail-row { margin-top: clamp(1rem, 1.6vw, 1.5rem); }
.who-story__detail { justify-self: start; width: 100%; }
.who-story__detail > p {
	font-size: var(--fs-lead);
	line-height: 1.65;
	color: rgba(122, 108, 77, 0.92);
}
.who-story__principles-row {
	display: grid;
	grid-template-columns: minmax(140px, 0.16fr) minmax(0, 1fr);
	gap: clamp(2rem, 3.5vw, 3.5rem);
	margin-top: clamp(2.5rem, 4vw, 4rem);
}
.who-story__principles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.25rem, 2.5vw, 2rem);
	align-items: start;
	max-width: 1160px;
}
.who-story__principle {
	border: 1px solid rgba(140, 113, 54, 0.5);
	border-radius: 14px;
	background: rgba(255, 252, 244, 0.55);
	box-shadow: 0 18px 40px rgba(140, 113, 54, 0.12);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.who-story__principle:hover,
.who-story__principle[open] {
	border-color: rgba(140, 113, 54, 0.85);
	box-shadow: 0 22px 48px rgba(140, 113, 54, 0.2);
}
.who-story__principle summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1.25rem, 2.2vw, 1.9rem);
	cursor: pointer;
	list-style: none;
}
.who-story__principle summary::-webkit-details-marker { display: none; }
.who-story__principle-title {
	font-size: clamp(1.1rem, 1.7vw, 1.45rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8C7136;
	transition: color 0.3s ease;
}
.who-story__principle summary:hover .who-story__principle-title,
.who-story__principle[open] .who-story__principle-title {
	color: #6E5827;
}
.who-story__principle-icon {
	position: relative;
	flex: none;
	width: 14px;
	height: 14px;
}
.who-story__principle-icon::before,
.who-story__principle-icon::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: #8C7136;
	transition: transform 0.35s ease;
}
.who-story__principle-icon::before { width: 100%; height: 1px; }
.who-story__principle-icon::after { width: 1px; height: 100%; }
.who-story__principle[open] .who-story__principle-icon::after { transform: rotate(90deg); }
.who-story__principle > p {
	margin: 0;
	padding: 0 clamp(1.25rem, 2.2vw, 1.9rem) clamp(1.25rem, 2vw, 1.75rem);
	font-size: var(--fs-lead);
	line-height: 1.65;
	color: rgba(101, 85, 48, 0.95);
}
.who-story__actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 1rem; margin-top: 0; }
.who-story .btn--gold { background: var(--color-green-deep); color: var(--color-cream); }
.who-story .btn--outline { color: var(--color-green-deep); border-color: rgba(8, 37, 12, 0.5); }
.who-story .btn--outline:hover { color: var(--color-cream); background: var(--color-green-deep); border-color: var(--color-green-deep); }

/* Home team band: founder cards on a deep green background with a dotted weave. */
.home-team {
	position: relative;
	padding-block: var(--space-section);
	background-color: var(--color-green);
	background-image:
		radial-gradient(circle at 20% 22%, rgba(194, 173, 127, 0.2), transparent 22rem),
		radial-gradient(rgba(206, 184, 135, 0.12) 1.2px, transparent 1.9px),
		linear-gradient(135deg, #123F18 0%, #08250C 58%, #061B09 100%);
	background-size: auto, 24px 24px, auto;
	color: var(--color-cream);
	overflow: hidden;
}
.home-team .section-head {
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.home-team__title {
	width: 100%;
	margin-inline: auto;
	font-size: clamp(2.6rem, 6.5vw, 5.4rem);
	font-weight: 900;
	line-height: 0.96;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-cream);
}
.home-team__title-prefix {
	color: var(--color-cream);
}
.home-team .team-card {
	filter: drop-shadow(0 32px 55px rgba(0, 0, 0, 0.45));
}

/* Home quick links: cream band with two large green buttons under the team. */
.home-links {
	background: #F0E6D1;
	padding-block: clamp(3.5rem, 6vw, 6rem);
}
.home-links__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.home-links__btn {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.4rem;
	min-height: clamp(150px, 16vw, 220px);
	padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.75rem, 3.5vw, 3.25rem);
	border-radius: 18px;
	background:
		radial-gradient(circle at 82% 14%, rgba(206, 184, 135, 0.18), transparent 16rem),
		linear-gradient(135deg, #123F18 0%, #0B3E13 48%, #08250C 100%);
	color: var(--color-cream);
	box-shadow: 0 24px 50px rgba(8, 37, 12, 0.22);
	overflow: hidden;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.home-links__btn:hover {
	transform: translateY(-6px);
	box-shadow: 0 32px 62px rgba(8, 37, 12, 0.3);
}
.home-links__label {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	color: var(--color-gold-soft);
}
.home-links__title {
	font-size: clamp(1.7rem, 3.4vw, 3rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.home-links__arrow {
	position: absolute;
	right: clamp(1.5rem, 3vw, 2.75rem);
	bottom: clamp(1.4rem, 2.6vw, 2.4rem);
	width: clamp(28px, 3vw, 40px);
	color: var(--color-gold-soft);
	transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}
.home-links__btn:hover .home-links__arrow {
	transform: translateX(8px);
	color: var(--color-cream);
}

/* Full-bleed editorial invitation between the brand statement and services. */
.who-cta {
	position: relative;
	min-height: clamp(500px, 72vh, 760px);
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 20% 22%, rgba(194, 173, 127, 0.2), transparent 22rem),
		linear-gradient(135deg, #123F18 0%, #08250C 58%, #061B09 100%);
	color: var(--color-cream);
	overflow: hidden;
}
.who-cta__background,
.who-cta__overlay,
.who-cta__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.who-cta__video {
	overflow: hidden;
	pointer-events: none;
}
.who-cta__video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;        /* 16:9 based on viewport width */
	min-width: 177.78vh;    /* 16:9 based on viewport height */
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: 0;
}
.who-cta__background {
	max-width: none;
	object-fit: cover;
	object-position: center;
	transform: scale(1.08);
	will-change: transform;
}
.who-cta__overlay {
	background:
		linear-gradient(180deg, rgba(8, 37, 12, 0.55) 0%, rgba(8, 37, 12, 0.7) 100%),
		linear-gradient(90deg, rgba(8, 37, 12, 0.45) 0%, rgba(8, 37, 12, 0.55) 100%);
}
.who-cta__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(4rem, 8vw, 7rem);
}
.who-cta__content > * { margin-left: 38%; }
.who-cta__eyebrow {
	display: block;
	margin-bottom: 1.25rem;
	font-family: var(--font-serif);
	font-size: var(--fs-eyebrow-lg);
	font-style: italic;
	color: var(--color-gold-soft);
}
.who-cta h2 {
	max-width: 22ch;
	margin-bottom: 1.25rem;
	font-family: var(--font-serif);
	font-size: var(--fs-display);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: 0;
	color: var(--color-cream);
}
.who-cta p {
	max-width: 62ch;
	margin-bottom: 2.25rem;
	font-size: var(--fs-lead);
	line-height: 1.55;
	color: rgba(246, 241, 231, 0.86);
}
.who-cta .btn--gold { background: var(--color-gold-soft); color: var(--color-dark); }

/* Services continues the green handoff without a photographic background. */
#services.section--green {
	background: var(--gradient-green);
	padding-top: var(--space-section);
}
#services > .container { max-width: 1600px; }
.who {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}
.who__media {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.who__media img,
.who__media .media__placeholder { width: 100%; height: 100%; object-fit: cover; }
.who__body .lead { margin-bottom: 1.5rem; }

.pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: var(--space-lg);
	border-top: 1px solid var(--color-line);
}
.section--green .pillars,
.section--dark .pillars { border-color: var(--color-line-light); }
.pillar {
	padding: var(--space-md) var(--space-md) var(--space-md) 0;
	border-right: 1px solid var(--color-line);
}
.section--green .pillar,
.section--dark .pillar { border-color: var(--color-line-light); }
.pillar:last-child { border-right: 0; }
.pillar__number {
	font-family: var(--font-serif);
	font-size: 0.95rem;
	color: var(--color-gold-soft);
	display: block;
	margin-bottom: 1rem;
}
.pillar__title { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.pillar__text { font-size: 0.95rem; color: inherit; opacity: 0.85; margin: 0; }

/* 11. Services
   ------------------------------------------------------------------------ */
.services-intro__eyebrow {
	display: block;
	margin-bottom: 1.25rem;
	font-family: var(--font-serif);
	font-size: var(--fs-eyebrow-lg);
	font-style: italic;
	color: #C9BA8B;
}
.services-intro__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
	gap: clamp(4rem, 9vw, 10rem);
	align-items: start;
}
.services-intro__lead h2 {
	max-width: 14ch;
	font-family: var(--font-serif);
	font-size: var(--fs-h1);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: 0;
}
.services-intro__grid > p {
	max-width: 860px;
	margin: 0;
	font-size: var(--fs-lead);
	line-height: 1.45;
	color: rgba(246, 241, 231, 0.82);
}
.services-carousel {
	--carousel-shift: 28px;
	position: relative;
	margin-top: clamp(1rem, 2vw, 2.5rem);
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(2rem, 3.5vw, 4rem);
	align-items: start;
}
.service-card:nth-child(1),
.service-card:nth-child(3) { margin-top: clamp(2.5rem, 4vw, 4rem); }
.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
}
.service-card__media {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 12px;
	background: #F6F1E7;
}
.service-card__media img,
.service-card__media .media__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.25s ease, transform 0.55s var(--ease), filter 0.25s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	padding: clamp(1.35rem, 2vw, 2rem) 0 0;
	transition: opacity 0.25s ease, transform 0.55s var(--ease);
}
.service-card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 1rem;
	border: 1px solid rgba(201, 186, 139, 0.48);
	border-radius: 50%;
	color: #C9BA8B;
	background: rgba(8, 37, 12, 0.42);
}
.service-card__icon-img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}
.service-card__title {
	max-width: none;
	margin-bottom: 1rem;
	font-family: var(--font-serif);
	font-size: var(--fs-h2);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: 0;
}
.service-card__title span { display: block; white-space: normal; }
.service-card__desc { color: rgba(246, 241, 231, 0.78); font-size: var(--fs-body); line-height: 1.5; }
.service-card__cta {
	align-self: flex-start;
	margin-top: 1.5rem;
	min-height: 50px;
	padding: 0.95rem 1.65rem;
	border-radius: 999px;
	background: #C9BA8B;
	color: #1B3F18;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card__cta:hover { background: #1B3F18; color: #F6F1E7; transform: translateY(-2px); }
.services-carousel__arrow {
	position: absolute;
	top: clamp(14rem, 18vw, 18rem);
	z-index: 3;
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #C9BA8B;
	color: #fff;
	font-size: 2.15rem;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(27, 63, 24, 0.18);
	transform: translateY(-50%);
	transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.services-carousel__arrow--prev { left: -38px; }
.services-carousel__arrow--next { right: -38px; }
.services-carousel__arrow:hover { background: #1B3F18; transform: translateY(-50%) scale(1.06); }
.services-carousel__arrow:disabled { cursor: wait; opacity: 0.55; }

/* The slots stay fixed; only their image and copy transition. */
.services-carousel.is-prev { --carousel-shift: -28px; }
.services-carousel.is-leaving .service-card__media img {
	opacity: 0;
	filter: blur(3px);
	transform: translateX(var(--carousel-shift)) scale(0.97);
}
.services-carousel.is-leaving .service-card__body {
	opacity: 0;
	transform: translateX(var(--carousel-shift));
}

/* 12. Markets / map
   ------------------------------------------------------------------------ */
.map { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.map__stage {
	position: relative;
	aspect-ratio: 16 / 11;
	background:
		radial-gradient(circle at 30% 30%, rgba(201, 186, 139, 0.12), transparent 60%),
		var(--color-green-deep);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.map__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__line {
	fill: none;
	stroke: var(--color-gold-soft);
	stroke-width: 1;
	opacity: 0.5;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}
.map__point {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.map__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-gold-soft);
	box-shadow: 0 0 0 0 rgba(201, 186, 139, 0.6);
	animation: pulse 2.6s var(--ease) infinite;
	flex: none;
}
.map__label {
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.05em;
	color: var(--color-cream);
	white-space: nowrap;
	background: rgba(27, 63, 24, 0.6);
	padding: 2px 8px;
	border-radius: 100px;
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(201, 186, 139, 0.5); }
	70% { box-shadow: 0 0 0 12px rgba(201, 186, 139, 0); }
	100% { box-shadow: 0 0 0 0 rgba(201, 186, 139, 0); }
}
.map__sub { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.map__tag {
	font-size: 0.8rem;
	padding: 0.4rem 0.9rem;
	border: 1px solid var(--color-line-light);
	border-radius: 100px;
	color: var(--color-cream);
	opacity: 0.85;
}

/* 13. Alliances
   ------------------------------------------------------------------------ */
.sousa-icon { display: block; width: 100%; height: 100%; }

.alliance-grid {
	display: grid;
	gap: clamp(1.8rem, 4vw, 3rem);
}
.alliance {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	position: relative;
	padding-block: clamp(1.5rem, 3vw, 2.6rem);
	isolation: isolate;
}

/* Brand mark + animated infographic field */
.alliance__brand {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(260px, 36vw, 430px);
	overflow: hidden;
}
.alliance__brand::before {
	content: "";
	position: absolute;
	inset: 9%;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(206, 184, 135, 0.26) 0 2px, transparent 3px),
		radial-gradient(circle at 50% 50%, rgba(11, 62, 19, 0.08), transparent 62%);
	background-size: 34px 34px, auto;
	animation: allianceField 16s linear infinite;
	z-index: -2;
}
.alliance__logo {
	width: min(78%, 360px);
	max-height: 250px;
	object-fit: contain;
	filter: drop-shadow(0 22px 36px rgba(23, 27, 23, 0.14));
	animation: allianceFloat 6s ease-in-out infinite;
}
/* Large photo in the brand slot; the orbiting circles peek out around it. */
.alliance__photo {
	width: min(100%, 700px);
	max-height: clamp(400px, 54vw, 660px);
	object-fit: contain;
	object-position: bottom center;
	animation: allianceFloat 6s ease-in-out infinite;
}
/* The United block: let its photo fill the column full-size. */
.alliance--flip .alliance__photo {
	max-height: clamp(460px, 62vw, 800px);
}
/* The dark disc existed to back the light logo — not needed behind a photo. */
.alliance__brand--photo::after {
	display: none;
}
.alliance__brand--photo::before {
	inset: 2%;
}
/* Wrapper that hosts the orbit OUTSIDE the reveal clip, so it never crops. */
.alliance__media {
	position: relative;
	width: 100%;
}
/* Framed variant (451): inverted colors — green frame around a light dotted
   inner, with the partner logo on a green badge hanging below the photo. */
.alliance__media--frame {
	padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.alliance__brand--frame {
	background:
		radial-gradient(rgba(11, 62, 19, 0.10) 1px, transparent 1.6px),
		linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
	background-size: 26px 26px, auto;
	border: clamp(8px, 1vw, 13px) solid var(--color-green);
	border-radius: clamp(22px, 3vw, 34px);
	padding: clamp(1rem, 2.4vw, 2rem) clamp(1rem, 2.4vw, 2rem) 0;
	box-shadow: 0 24px 48px rgba(8, 37, 12, 0.14);
}
.alliance__brand--frame::before {
	display: none;
}
/* Framed photos sit still, flush against the bottom of the frame. */
.alliance__brand--frame .alliance__photo {
	animation: none;
}
.alliance__media-logo {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	padding: 0.55rem 1.8rem;
	background: var(--color-green);
	border-radius: 999px;
	box-shadow: 0 14px 28px rgba(8, 37, 12, 0.24);
}
.alliance__media-logo img {
	display: block;
	height: clamp(28px, 3.4vw, 42px);
	width: auto;
	max-width: 200px;
	object-fit: contain;
	/* The 451 artwork is dark green — render it white over the badge. */
	filter: brightness(0) invert(1);
}
/* Inverted variant (451): the whole block flips to green with cream type,
   and the photo frame + logo badge flip to cream. */
.alliance--invert {
	/* Full-bleed band: stretch to the viewport edges, then pad the content
	   back so it stays aligned with the page container. */
	margin-inline: calc(50% - 50vw);
	padding-block: clamp(2rem, 4.5vw, 3.6rem);
	padding-inline: calc(50vw - 50%);
	background:
		radial-gradient(circle at 16% 14%, rgba(206, 184, 135, 0.16), transparent 26rem),
		radial-gradient(rgba(244, 238, 223, 0.05) 1px, transparent 1.6px),
		linear-gradient(150deg, #0E4A18 0%, var(--color-green) 55%, var(--color-green-deep) 100%);
	background-size: auto, 26px 26px, auto;
	box-shadow: 0 30px 60px rgba(8, 37, 12, 0.22);
	color: var(--color-cream);
}
.alliance--invert .alliance__name,
.alliance--invert .alliance__owner,
.alliance--invert .alliance__details-title,
.alliance--invert .alliance__resource summary,
.alliance--invert .alliance__resource-title {
	color: var(--color-cream);
}
.alliance--invert .alliance__summary,
.alliance--invert .alliance__details p,
.alliance--invert .alliance__resources-note,
.alliance--invert .alliance__resource > p {
	color: rgba(244, 238, 223, 0.82);
}
.alliance--invert .alliance__resources-note strong {
	color: var(--color-gold-soft);
}
/* The highlighted word uses the same gold fill-loop as the green service
   blocks (e.g. "Career Planning & Management"). */
.alliance--invert .alliance__name .title-fill-loop {
	color: var(--color-green-deep);
	padding: 0.02em 0.13em 0.05em;
	margin-inline: 0.08em;
}
.alliance--invert .alliance__name .title-fill-loop::before {
	background: var(--gradient-gold);
}
.alliance--invert .alliance__details,
.alliance--invert .alliance__resources,
.alliance--invert .alliance__resource {
	border-color: rgba(244, 238, 223, 0.28);
}
.alliance--invert .alliance__resource summary:hover .alliance__resource-title,
.alliance--invert .alliance__resource[open] .alliance__resource-title {
	color: var(--color-gold-soft);
}
.alliance--invert .alliance__resource-plus::before,
.alliance--invert .alliance__resource-plus::after {
	background: var(--color-cream);
}
/* Gold frame + cream badge with the logo back in its dark original color. */
.alliance--invert .alliance__brand--frame {
	border-color: var(--color-cream);
	padding: 0;
	box-shadow: 0 24px 48px rgba(4, 20, 7, 0.3);
}
.alliance--invert .alliance__brand--frame .alliance__photo {
	width: 100%;
	height: clamp(500px, 54vw, 660px);
	max-height: none;
	object-fit: cover;
	object-position: center 58%;
	display: block;
}
/* Resource icons: cream so they read clearly over the green band. */
.alliance--invert .alliance__resource-icon {
	color: var(--color-cream);
	border-color: rgba(244, 238, 223, 0.35);
}
.alliance--invert .alliance__media-logo {
	background: var(--color-cream);
	box-shadow: 0 14px 28px rgba(4, 20, 7, 0.3);
}
.alliance--invert .alliance__media-logo img {
	filter: none;
}
/* Buttons flip too: cream base, gold hover stays. */
.alliance--invert .alliance__links .btn--external {
	background: var(--color-cream) !important;
	color: var(--color-green-deep) !important;
	border-color: var(--color-cream) !important;
}
.alliance--invert .alliance__links .btn--external:hover {
	background: var(--color-gold-soft) !important;
	color: var(--color-green-deep) !important;
	border-color: var(--color-gold-soft) !important;
}
.alliance__media--photo .alliance__orbit {
	inset: -7%;
}
/* Small partner logo above the alliance title. */
.alliance__header-logo {
	display: block;
	height: clamp(42px, 5vw, 64px);
	width: auto;
	max-width: 200px;
	object-fit: contain;
	margin-bottom: 1.1rem;
}
.alliance__header-logo--dark {
	padding: 0.55rem 0.8rem;
	border-radius: 14px;
	background: radial-gradient(circle at 32% 26%, #175A24, #08250C 78%);
	box-shadow: 0 12px 26px rgba(8, 37, 12, 0.28);
}
.alliance__logo-text {
	font-size: clamp(2.5rem, 9vw, 6rem);
	line-height: 0.9;
	color: var(--color-green);
	animation: allianceFloat 6s ease-in-out infinite;
}
.alliance__orbit {
	position: absolute;
	inset: 3%;
	border: 1px solid rgba(11, 62, 19, 0.13);
	border-radius: 50%;
	animation: allianceSpin 28s linear infinite;
	z-index: -1;
}
.alliance__orbit span {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-gold-soft);
	box-shadow: 0 0 0 8px rgba(206, 184, 135, 0.16);
}
.alliance__orbit span:nth-child(1) { top: 9%; left: 50%; }
.alliance__orbit span:nth-child(2) { right: 8%; top: 62%; background: var(--color-green); }
.alliance__orbit span:nth-child(3) { left: 13%; bottom: 20%; }
.alliance__signal {
	position: absolute;
	inset: 16%;
	border-radius: 50%;
	pointer-events: none;
}
.alliance__signal span {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(206, 184, 135, 0.42);
	border-radius: 50%;
	animation: alliancePulse 3.8s ease-out infinite;
}
.alliance__signal span:nth-child(2) { animation-delay: 1.2s; }
.alliance__signal span:nth-child(3) { animation-delay: 2.4s; }

@keyframes allianceFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@keyframes allianceSpin {
	to { transform: rotate(360deg); }
}
@keyframes alliancePulse {
	0% { opacity: 0.55; transform: scale(0.72); }
	100% { opacity: 0; transform: scale(1.18); }
}
@keyframes allianceField {
	to { background-position: 34px 34px, 0 0; }
}

/* Body */
.alliance__body {
	display: flex;
	flex-direction: column;
	gap: clamp(1rem, 2vw, 1.35rem);
}
.alliance__name {
	max-width: 15ch;
	margin-bottom: 0.35rem;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(1.8rem, 3.5vw, 3.8rem);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}
.alliance__name-fill {
	position: relative;
	z-index: 0;
	display: inline-block;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	margin-inline: 0.08em;
	padding: 0.02em 0.13em 0.05em;
	overflow: hidden;
	color: var(--color-cream);
	text-shadow: none;
}

.alliance__name-fill::before,
.alliance__name-fill::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 3px;
	pointer-events: none;
}

.alliance__name-fill::before {
	background: linear-gradient(90deg, #063F18 0%, #1B6B35 48%, #063F18 100%);
	transform-origin: left center;
	transform: none;
}

.alliance__name-fill::after {
	background: linear-gradient(105deg, transparent 0%, rgba(215, 197, 143, 0.08) 28%, rgba(215, 197, 143, 0.36) 48%, rgba(244, 238, 223, 0.18) 56%, transparent 76%);
	transform: translateX(-120%);
	animation: heroWordSheen 3.8s var(--ease) infinite;
	mix-blend-mode: screen;
}
.alliance__owner { color: var(--color-green); font-weight: 700; margin: 0; }
.alliance__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 0.1rem;
}
.alliance__links .btn {
	width: max-content;
	color: var(--color-green);
	border-color: rgba(11, 62, 19, 0.52);
	background: rgba(255, 255, 255, 0.28);
}
.alliance__links .btn:hover {
	color: var(--color-cream);
	background: var(--color-green);
	border-color: var(--color-green);
}
.alliance__summary {
	max-width: 54ch;
	margin: 0;
	color: var(--color-muted);
	font-size: clamp(0.98rem, 1.4vw, 1.08rem);
	line-height: 1.65;
}
.alliance + .alliance {
	border-top: 1px solid rgba(11, 62, 19, 0.14);
	margin-top: clamp(1rem, 2.5vw, 2rem);
	padding-top: clamp(2.5rem, 5vw, 4rem);
}
.alliance--flip {
	grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
}
.alliance--flip .alliance__media {
	order: 2;
}

/* Secondary alliance: a quieter, compact presentation beneath featured 451. */
.alliance--compact {
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
	padding-block: clamp(1rem, 2vw, 1.8rem);
}
.alliance--compact .alliance__media {
	width: min(100%, 430px);
	justify-self: end;
}
.alliance--compact .alliance__brand {
	min-height: 0;
	aspect-ratio: 1 / 1;
	padding: 0;
}
.alliance--compact .alliance__photo,
.alliance--compact.alliance--flip .alliance__photo {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center;
}
.alliance--compact .alliance__name {
	font-size: clamp(1.65rem, 2.8vw, 3rem);
}
/* Flat cream — no dotted weave or gradients, matching the hero above. */
#alliances.section--cream {
	background: var(--color-cream);
}
.alliance__brand--dark::after {
	content: "";
	position: absolute;
	inset: 12%;
	border-radius: 50%;
	background: radial-gradient(circle at 32% 26%, #175A24, #08250C 72%);
	box-shadow: 0 30px 55px rgba(8, 37, 12, 0.32);
	z-index: -1;
}
.alliance__brand--dark .alliance__logo {
	width: min(62%, 300px);
	filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}
.alliance__details {
	max-width: 54ch;
}
.alliance__details-title {
	margin-bottom: 0.6rem;
	color: var(--color-green);
	font-size: var(--fs-eyebrow-lg);
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.alliance__details p {
	margin: 0 0 0.9rem;
	color: var(--color-muted);
	font-size: clamp(0.92rem, 1.2vw, 1rem);
	line-height: 1.65;
}
.alliance__details p:last-child {
	margin-bottom: 0;
}

/* Shared resources */
/* Alliance resources as full-width accordions. */
.alliance__services-toggle > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 48px;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(11, 62, 19, 0.32);
	border-radius: 999px;
	color: var(--color-green);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	list-style: none;
}
.alliance__services-toggle > summary::-webkit-details-marker { display: none; }
.alliance__services-toggle-icon {
	position: relative;
	width: 14px;
	height: 14px;
}
.alliance__services-toggle-icon::before,
.alliance__services-toggle-icon::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: currentColor;
	transition: transform 0.3s ease;
}
.alliance__services-toggle-icon::before { width: 100%; height: 1px; }
.alliance__services-toggle-icon::after { width: 1px; height: 100%; }
.alliance__services-toggle[open] .alliance__services-toggle-icon::after { transform: rotate(90deg); }
.alliance__services-toggle[open] > summary { margin-bottom: 0.5rem; }

.alliance__resources {
	width: 100%;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(11, 62, 19, 0.18);
}
.alliance__resources-note {
	margin: 0;
	padding: 0.9rem 0;
	color: var(--color-muted);
	font-size: 0.82rem;
	line-height: 1.5;
}
.alliance__resources-note strong {
	display: block;
	color: var(--color-green-deep);
	font-size: 0.92rem;
}
.alliance__resource {
	border-bottom: 1px solid rgba(11, 62, 19, 0.18);
	color: var(--color-green-deep);
}
.alliance__resource summary {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 0;
	cursor: pointer;
	list-style: none;
}
.alliance__resource summary::-webkit-details-marker { display: none; }
.alliance__resource-icon {
	flex: none;
	display: inline-flex;
	width: 38px;
	height: 38px;
	padding: 8px;
	border: 1px solid rgba(11, 62, 19, 0.12);
	border-radius: 50%;
	color: var(--color-gold-deep);
}
.alliance__resource-title {
	flex: 1;
	font-weight: 700;
	font-size: clamp(0.95rem, 1.2vw, 1.05rem);
	line-height: 1.2;
	transition: color 0.3s ease;
}
.alliance__resource summary:hover .alliance__resource-title,
.alliance__resource[open] .alliance__resource-title {
	color: var(--color-gold-deep);
}
.alliance__resource-plus {
	position: relative;
	flex: none;
	width: 12px;
	height: 12px;
}
.alliance__resource-plus::before,
.alliance__resource-plus::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: var(--color-gold-deep);
	transition: transform 0.35s ease;
}
.alliance__resource-plus::before { width: 100%; height: 1px; }
.alliance__resource-plus::after { width: 1px; height: 100%; }
.alliance__resource[open] .alliance__resource-plus::after { transform: rotate(90deg); }
.alliance__resource > p {
	margin: 0;
	padding: 0 0 1rem calc(38px + 0.85rem);
	color: var(--color-muted);
	font-size: 0.86rem;
	line-height: 1.55;
}

/* 14. Team
   ------------------------------------------------------------------------ */
.team-showcase {
	position: relative;
	min-height: 108svh;
	display: flex;
	align-items: center;
	padding-block: clamp(8rem, 12vw, 12rem);
	background:
		radial-gradient(circle at 82% 45%, rgba(246, 241, 231, 0.045), transparent 35rem),
		linear-gradient(135deg, #1B3F18 0%, #08250C 100%);
	color: #F6F1E7;
	overflow: hidden;
	cursor: grab;
}
.team-showcase.is-globe-dragging,
.page-hero--alliances.is-globe-dragging { cursor: grabbing; }
.team-showcase a,
.team-showcase button { cursor: pointer; }
.alliance-globe {
	position: absolute;
	top: 50%;
	left: 72%;
	z-index: 1;
	width: min(74vw, 98svh, 1280px);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	transform-origin: center;
	will-change: transform;
	cursor: grab;
	pointer-events: auto;
}
.alliance-globe:active { cursor: grabbing; }
.alliance-globe__stage {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.08));
	will-change: transform, opacity;
}
.alliance-globe__canvas,
.alliance-globe__canvas canvas {
	width: 100%;
	height: 100%;
	display: block;
}
.alliance-globe__canvas canvas {
	cursor: grab;
	outline: 0;
	touch-action: none;
}
.alliance-globe__canvas canvas:active {
	cursor: grabbing;
}
.alliance-globe__fallback {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 44% 28%, rgba(11, 62, 19, 0.68) 0 2px, transparent 3px),
		radial-gradient(circle at 58% 55%, rgba(140, 113, 54, 0.95) 0 5px, transparent 6px),
		radial-gradient(circle at 50% 50%, rgba(11, 62, 19, 0.08), transparent 68%);
	background-size: 22px 22px, 100% 100%, 100% 100%;
}
.team-showcase__container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 760px);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
	justify-content: start;
	max-width: 1600px;
}
.team-showcase__eyebrow {
	display: block;
	margin-bottom: 1.4rem;
	font-family: var(--font-serif);
	font-size: var(--fs-eyebrow-lg);
	font-style: italic;
	color: #C9BA8B;
}
.team-showcase__header h2 {
	max-width: 11ch;
	font-family: var(--font-serif);
	font-size: var(--fs-h1);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: 0;
	color: var(--color-cream);
}
.team-feature__intro {
	max-width: 34ch;
	margin: 1.5rem 0 1.75rem;
	font-size: var(--fs-lead);
	line-height: 1.55;
	color: rgba(246, 241, 231, 0.76);
}
.team-showcase__logos {
	display: flex;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 2.75rem);
	margin-bottom: 2rem;
}
.team-showcase__logo {
	display: block;
	width: auto;
	object-fit: contain;
}
.team-showcase__logo--ipso { height: clamp(88px, 8vw, 120px); }
.team-showcase__logo--451 { height: clamp(68px, 6vw, 90px); }
.team-showcase__header .btn--gold { width: max-content; }

/* 15. Footer
   ------------------------------------------------------------------------ */
.site-footer {
	position: relative;
	padding-block: clamp(3rem, 6vw, 6rem) 2rem;
	background: #1B3F18;
	color: #F6F1E7;
	overflow: hidden;
}
.site-footer__container { max-width: 1600px; }
.site-footer__brandline {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: center;
}
.site-footer__brandline > span { height: 1px; background: rgba(201, 186, 139, 0.45); }
.site-footer__brandline a { display: block; width: clamp(130px, 12vw, 185px); }
.site-footer__brandline img { display: block; width: 100%; height: auto; }
.site-footer__statement {
	text-align: center;
	padding-top: clamp(3rem, 6vw, 5rem);
}
.site-footer__main {
	display: grid;
	grid-template-columns: repeat(2, minmax(210px, 280px));
	justify-content: center;
	gap: clamp(3rem, 7vw, 8rem);
	align-items: start;
	padding-block: clamp(4rem, 8vw, 8rem);
}
.site-footer__statement > p {
	margin: 0 auto;
	font-family: var(--font-sans);
	font-size: var(--fs-display);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: 0;
}
.site-footer__statement em { font-family: var(--font-serif); font-weight: 400; color: #C9BA8B; }
.site-footer__cta {
	display: inline-block;
	margin-top: 2.75rem;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid #C9BA8B;
	color: #C9BA8B;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color 0.3s ease, border-color 0.3s ease;
}
.site-footer__cta:hover { color: #F6F1E7; border-color: #F6F1E7; }
.site-footer__column { padding-top: 0.6rem; text-align: center; }
.site-footer__social { justify-content: center; }
.site-footer__column h2 {
	margin-bottom: 1.75rem;
	font-family: var(--font-serif);
	font-size: var(--fs-h4);
	font-weight: 400;
	font-style: italic;
	color: #C9BA8B;
}
.site-footer__column > a,
.site-footer__column > p {
	display: block;
	margin: 0 0 0.45rem;
	font-size: 1.08rem;
	line-height: 1.55;
	color: rgba(246, 241, 231, 0.82);
}
.site-footer__column > a:hover { color: #C9BA8B; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.75rem; }
.site-footer__social a { color: #C9BA8B; font-size: 0.95rem; }
.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem clamp(1.5rem, 3.5vw, 3.75rem);
	padding-bottom: clamp(2.5rem, 4vw, 4rem);
	border-bottom: 1px solid rgba(201, 186, 139, 0.22);
}
.site-footer__nav a { font-size: 1.05rem; color: rgba(246, 241, 231, 0.86); transition: color 0.3s ease; }
.site-footer__nav a:hover { color: #C9BA8B; }
.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: center;
	padding-top: 2rem;
	font-size: var(--fs-small);
	color: rgba(246, 241, 231, 0.52);
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom p:last-child { text-align: right; }
.site-footer__bottom a { color: inherit; }
.site-footer__bottom a:hover { color: #C9BA8B; }

/* 16. Blog preview / posts
   ------------------------------------------------------------------------ */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.post-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(41, 38, 37, 0.12); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img,
.post-card__media .media__placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card__cat {
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-green);
	margin-bottom: 0.7rem;
}
.post-card__title { color: #0b3e13; font-size: var(--fs-h3); margin-bottom: 0.6rem; line-height: 1.2; }
.post-card__excerpt { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
.post-card__meta { margin-top: auto; font-size: 0.8rem; color: var(--color-muted); }
.post-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	width: max-content;
	margin-top: 1.1rem;
	padding: 0.72rem 1rem;
	border: 1px solid var(--color-green);
	border-radius: 999px;
	background: var(--color-green);
	color: var(--color-cream);
	box-shadow: 0 9px 20px rgba(8, 37, 12, 0.14);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.post-card__cta svg {
	width: 16px;
	transition: transform 0.3s var(--ease);
}
.post-card:hover .post-card__cta {
	border-color: var(--color-gold-soft);
	background: var(--color-gold-soft);
	color: var(--color-green-deep);
	transform: translateY(-2px);
}
.post-card:hover .post-card__cta svg { transform: translateX(5px); }

/* Blog hero */
.page-hero--blog .page-hero__title {
	font-family: var(--font-sans);
	font-size: clamp(2.7rem, 7vw, 6rem);
	font-weight: 900;
	line-height: 0.96;
	text-transform: uppercase;
}
.page-hero--blog .eyebrow {
	display: block;
	margin-bottom: 1.05rem;
	font-weight: 800;
	color: var(--color-gold-soft);
}
.page-hero--blog .page-hero__lead {
	max-width: 44ch;
	margin-top: 1.4rem;
}

/* Featured (latest) post on the blog index */
.blog-feature {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.blog-feature__link {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 22px 55px rgba(41, 38, 37, 0.1);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.blog-feature__link:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 65px rgba(41, 38, 37, 0.16);
}
.blog-feature__media {
	min-height: clamp(260px, 30vw, 430px);
}
.blog-feature__media img,
.blog-feature__media .media__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}
.blog-feature__link:hover .blog-feature__media img { transform: scale(1.04); }
.blog-feature__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(1.8rem, 3.5vw, 3.25rem);
}
.blog-feature__eyebrow {
	margin-bottom: 0.9rem;
	color: var(--color-gold-deep);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.blog-feature__title {
	font-size: clamp(1.5rem, 2.6vw, 2.3rem);
	line-height: 1.12;
	color: var(--color-green);
}
.blog-feature__excerpt {
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: clamp(0.95rem, 1.2vw, 1.05rem);
	line-height: 1.6;
}
.blog-feature__meta {
	margin-top: 1.25rem;
	font-size: 0.8rem;
	color: var(--color-muted);
}
.blog-feature__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	width: max-content;
	margin-top: 1.5rem;
	padding: 0.8rem 1.15rem;
	border: 1px solid var(--color-green);
	border-radius: 999px;
	background: var(--color-green);
	color: var(--color-cream);
	box-shadow: 0 10px 24px rgba(8, 37, 12, 0.16);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-feature__cta svg {
	width: 17px;
	transition: transform 0.3s var(--ease);
}
.blog-feature__link:hover .blog-feature__cta {
	border-color: var(--color-gold-soft);
	background: var(--color-gold-soft);
	color: var(--color-green-deep);
	box-shadow: 0 14px 30px rgba(8, 37, 12, 0.2);
	transform: translateY(-2px);
}
.blog-feature__link:hover .blog-feature__cta svg { transform: translateX(6px); }

/* Blog toolbar: search + category pills (built for a growing archive). */
.blog-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(11, 62, 19, 0.14);
}
.blog-toolbar__search {
	position: relative;
	flex: 1 1 260px;
	max-width: 380px;
}
.blog-toolbar__input {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 3rem 0.7rem 1.25rem;
	border: 1px solid rgba(11, 62, 19, 0.25);
	border-radius: 999px;
	background: #fff;
	color: var(--color-green-deep);
	font-family: inherit;
	font-size: 0.9rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-toolbar__input:focus {
	outline: 0;
	border-color: var(--color-green);
	box-shadow: 0 0 0 3px rgba(11, 62, 19, 0.12);
}
.blog-toolbar__submit {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: var(--color-green);
	color: var(--color-cream);
	cursor: pointer;
	transition: background 0.3s ease;
}
.blog-toolbar__submit svg { width: 17px; height: 17px; }
.blog-toolbar__submit:hover { background: var(--color-green-deep); }
.blog-toolbar__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.blog-toolbar__cat {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(11, 62, 19, 0.25);
	border-radius: 999px;
	color: var(--color-green);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.blog-toolbar__cat:hover,
.blog-toolbar__cat.is-current {
	background: var(--color-green);
	border-color: var(--color-green);
	color: var(--color-cream);
}
.blog-toolbar__count {
	font-size: 0.68rem;
	opacity: 0.65;
}

/* Single post — featured image as full hero, centered content. */
.single-post__hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(640px, 78svh);
	padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5rem));
	padding-bottom: clamp(3.5rem, 7vw, 6rem);
	background:
		radial-gradient(circle at 82% 20%, rgba(194, 173, 127, 0.16), transparent 28rem),
		linear-gradient(135deg, #0B3E13 0%, #08250C 100%);
	color: var(--color-cream);
	overflow: hidden;
}
.single-post__hero--image {
	background:
		linear-gradient(180deg, rgba(8, 37, 12, 0.55) 0%, rgba(8, 37, 12, 0.72) 60%, rgba(8, 37, 12, 0.9) 100%),
		var(--post-hero-img);
	background-position: center;
	background-size: cover;
}
.single-post__hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
}
.single-post__cat {
	display: block;
	margin-bottom: 1rem;
	color: var(--color-gold-soft);
	font-weight: 800;
}
.single-post__title {
	max-width: 22ch;
	margin-inline: auto;
	font-size: clamp(1.8rem, 4vw, 3.2rem);
	font-weight: 900;
	line-height: 1.05;
	color: var(--color-cream);
	text-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}
.single-post__deck {
	max-width: 58ch;
	margin: 1.25rem auto 0;
	color: rgba(246, 241, 231, 0.9);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.55;
}
.single-post__author {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	max-width: min(100%, 34rem);
	margin-top: 1.75rem;
	padding: 0.72rem 1.15rem 0.72rem 0.72rem;
	border: 1px solid rgba(246, 241, 231, 0.26);
	border-radius: 999px;
	background: rgba(8, 37, 12, 0.56);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-align: left;
}
.single-post__author-monogram {
	display: grid;
	place-items: center;
	flex: 0 0 3.25rem;
	width: 3.25rem;
	height: 3.25rem;
	border: 1px solid rgba(201, 186, 139, 0.7);
	border-radius: 50%;
	background: var(--color-gold-soft);
	color: var(--color-green-deep);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}
.single-post__author-photo {
	flex: 0 0 3.25rem;
	width: 3.25rem;
	height: 3.25rem;
	border: 1px solid rgba(201, 186, 139, 0.7);
	border-radius: 50%;
	object-fit: cover;
}
.single-post__author-copy {
	display: grid;
	gap: 0.08rem;
}
.single-post__author-label {
	color: var(--color-gold-soft);
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
.single-post__author-name {
	color: var(--color-cream);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
}
.single-post__author-role {
	color: rgba(246, 241, 231, 0.72);
	font-size: 0.74rem;
	line-height: 1.35;
}
.single-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	margin-top: 1.75rem;
	color: rgba(246, 241, 231, 0.78);
	font-size: 0.82rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.single-post__author {
		width: 100%;
		max-width: 25rem;
		border-radius: 1rem;
	}
	.single-post__author-monogram {
		flex-basis: 2.9rem;
		width: 2.9rem;
		height: 2.9rem;
	}
	.single-post__author-role {
		font-size: 0.7rem;
	}
}
.single-post__meta i {
	width: 26px;
	height: 1px;
	background: var(--color-gold-soft);
}
.single-post__body .entry-content {
	font-size: clamp(1rem, 1.25vw, 1.13rem);
	line-height: 1.75;
}
.single-post__body .entry-content > p:first-child {
	font-size: clamp(1.12rem, 1.5vw, 1.3rem);
	line-height: 1.6;
	color: var(--color-green);
	font-weight: 500;
}
.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}
.post-tags a {
	padding: 0.35rem 0.85rem;
	border: 1px solid rgba(11, 62, 19, 0.25);
	border-radius: 999px;
	color: var(--color-green);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.post-tags a:hover { background: var(--color-green); color: var(--color-cream); }
.single-post__nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: clamp(2.5rem, 4vw, 3.5rem);
	padding-top: 1.75rem;
	border-top: 1px solid rgba(11, 62, 19, 0.18);
}
.single-post__nav-card {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.single-post__nav-card--next { text-align: right; align-items: flex-end; }
.single-post__nav-label {
	color: var(--color-gold-deep);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.single-post__nav-title {
	color: var(--color-green);
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.3s ease;
}
.single-post__nav-card:hover .single-post__nav-title { color: var(--color-gold-deep); }
.single-post__blog-return {
	display: flex;
	justify-content: center;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}
/* Author signature at the end of a post. */
.entry-content .post-signature {
	margin-top: clamp(2.25rem, 4vw, 3rem);
	padding-top: 1.5rem;
	border-top: 1px solid rgba(140, 113, 54, 0.45);
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}
.entry-content .post-signature strong {
	display: block;
	margin-bottom: 0.15rem;
	color: var(--color-green);
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* The media placeholder (no featured image) — subtle abstract texture */
.media__placeholder {
	display: block;
	background:
		radial-gradient(circle at 70% 20%, rgba(201, 186, 139, 0.25), transparent 55%),
		linear-gradient(135deg, var(--color-green) 0%, var(--color-green-deep) 100%);
}

/* 16. Contact form
   ------------------------------------------------------------------------ */
.contact-form-section {
	background: #E2DCC9;
}
.contact {
	display: grid;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}
.contact--centered {
	margin-inline: auto;
}
.contact__intro .lead { margin-bottom: 1.5rem; }
.contact__details { margin-top: 2rem; display: grid; gap: 0.4rem; }
.contact__details a {
	color: var(--color-green);
	font-weight: 800;
}
.contact .section-head__title {
	color: var(--color-green);
	font-size: clamp(1.8rem, 4vw, 3.8rem);
	line-height: 1;
	max-width: 12ch;
}

.form { display: grid; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__field label {
	font-size: var(--fs-eyebrow);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-muted);
}
.form__field input,
.form__field textarea {
	font-family: var(--font-sans);
	font-size: 1.05rem;
	color: var(--color-ink);
	background: #fff;
	border: 1.5px solid rgba(11, 62, 19, 0.22);
	border-radius: 12px;
	padding: 0.95rem 1.1rem;
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
	color: rgba(23, 27, 23, 0.42);
}
.form__field input:focus,
.form__field textarea:focus {
	outline: none;
	border-color: var(--color-green);
	box-shadow: 0 0 0 3px rgba(11, 62, 19, 0.14);
}
.form__field textarea { resize: vertical; min-height: 140px; }
.form__optional { font-weight: 400; opacity: 0.6; text-transform: none; letter-spacing: 0; }
.form__field.has-error input,
.form__field.has-error textarea { border-color: #b3261e; }
.form__error { color: #b3261e; font-size: 0.8rem; text-transform: none; letter-spacing: 0; }
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__feedback {
	border-radius: var(--radius);
	padding: 1rem 1.2rem;
	font-size: 0.95rem;
	display: none;
}
.form__feedback.is-visible { display: block; }
.form__feedback.is-success { background: rgba(27, 63, 24, 0.1); color: var(--color-green); }
.form__feedback.is-error { background: rgba(179, 38, 30, 0.1); color: #b3261e; }
.contact-form-section #sousa-contact-form {
	color: var(--color-green);
}
.contact-form-section #sousa-contact-form .form__field label {
	color: var(--color-green);
	text-transform: none;
	letter-spacing: 0.01em;
	font-size: 0.95rem;
	font-weight: 700;
}
.contact-form-section #sousa-contact-form .form__field input,
.contact-form-section #sousa-contact-form .form__field textarea {
	color: var(--color-ink);
	background: #fff;
	border: 1.5px solid rgba(11, 62, 19, 0.22);
	border-radius: 12px;
	box-shadow: none;
}
.contact-form-section #sousa-contact-form .form__field input:focus,
.contact-form-section #sousa-contact-form .form__field textarea:focus {
	border-color: var(--color-green);
	box-shadow: 0 0 0 3px rgba(11, 62, 19, 0.14);
}
.contact-form-section #sousa-contact-form .form__actions,
.contact-form-section #sousa-contact-form .form__actions .btn {
	width: 100%;
}
.contact-form-section #sousa-contact-form .form__actions .btn {
	justify-content: center;
}

/* 16b. Global form CTA (site-wide closing card)
   ------------------------------------------------------------------------ */
.form-cta {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4rem, 8vw, 7rem);
	background:
		radial-gradient(rgba(206, 184, 135, 0.09) 1px, transparent 1.6px),
		linear-gradient(180deg, rgba(8, 37, 12, 0.82), rgba(8, 37, 12, 0.94)),
		url("../img/service-career.jpg") center 42% / cover no-repeat;
	background-size: 24px 24px, auto, cover;
}
.form-cta__card {
	display: grid;
	justify-items: center;
	gap: clamp(2.25rem, 5vw, 3.5rem);
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}
.form-cta__eyebrow {
	display: block;
	margin-bottom: 1rem;
	color: var(--color-gold-soft);
}
.form-cta__title {
	margin: 0;
	color: var(--color-cream);
	font-size: clamp(2.1rem, 4.6vw, 3.8rem);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}
.form-cta__form { width: 100%; }
.form-cta__form #sousa-contact-form { color: var(--color-cream); }
.form-cta__form .form__field label {
	color: rgba(246, 241, 231, 0.88);
	text-transform: none;
	letter-spacing: 0.01em;
	font-size: 0.95rem;
	font-weight: 700;
}
.form-cta__form .form__field input,
.form-cta__form .form__field textarea {
	color: var(--color-cream);
	background: rgba(246, 241, 231, 0.10);
	border: 1.5px solid rgba(246, 241, 231, 0.28);
	border-radius: 12px;
	box-shadow: none;
}
.form-cta__form .form__field input::placeholder,
.form-cta__form .form__field textarea::placeholder {
	color: rgba(246, 241, 231, 0.5);
}
.form-cta__form .form__field input:focus,
.form-cta__form .form__field textarea:focus {
	border-color: var(--color-gold-soft);
	background: rgba(246, 241, 231, 0.14);
	box-shadow: 0 0 0 3px rgba(201, 186, 139, 0.22);
}
.form-cta__form .form__field textarea { min-height: 120px; }
.form-cta__form .form__actions,
.form-cta__form .form__actions .btn { width: 100%; }
.form-cta__form .form__actions .btn--primary {
	justify-content: center;
	background: var(--color-gold-soft);
	color: var(--color-dark);
}
.form-cta__form .form__actions .btn--primary:hover { background: #C9BA8B; }

/* 17. Final CTA
   ------------------------------------------------------------------------ */
.section--green.site-footer-prelude {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 9vw, 8rem);
	background:
		linear-gradient(180deg, rgba(8, 37, 12, 0.78), rgba(8, 37, 12, 0.9)),
		url("../img/service-career.jpg") center 42% / cover no-repeat;
}
.final-cta {
	text-align: center;
	max-width: 840px;
	margin-inline: auto;
}
.final-cta__title {
	font-size: var(--fs-h1);
	margin-bottom: 1rem;
}
.site-footer-prelude .final-cta__title {
	color: var(--color-cream);
	font-size: clamp(2.2rem, 5.8vw, 5.2rem);
	line-height: 0.98;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.final-cta__text { font-size: var(--fs-lead); opacity: 0.9; margin-bottom: 2rem; }

/* 18. Interior pages / accordion
   ------------------------------------------------------------------------ */
.page-hero {
	position: relative;
	padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
	padding-bottom: clamp(2.5rem, 6vw, 5rem);
	background: var(--color-green);
	color: var(--color-cream);
	overflow: hidden;
}
.page-hero__title { font-size: var(--fs-h1); color: var(--color-cream); max-width: 18ch; }
.page-hero__lead { font-size: var(--fs-lead); max-width: 60ch; opacity: 0.9; }
.page-hero__content {
	position: relative;
	z-index: 2;
}

/* Doubled class so this wins over the later generic `.page-hero` reskin rule. */
.page-hero.page-hero--alliances {
	min-height: min(820px, 92svh);
	display: flex;
	align-items: center;
	color: var(--color-green-deep);
	background: #F4EEDF;
	/* Let the globe spill past the section edge instead of being clipped;
	   z-index keeps the overflowing part painted above the next section. */
	overflow: visible;
	z-index: 2;
}
.page-hero--alliances .eyebrow {
	display: block;
	margin-bottom: 1.05rem;
	font-weight: 800;
	color: #8C7136;
}
.page-hero--alliances .page-hero__title {
	max-width: 14ch;
	font-family: var(--font-sans);
	font-size: clamp(2.7rem, 7vw, 6.2rem);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--color-green);
}
.page-hero--alliances .page-hero__lead {
	max-width: 30ch;
	margin-top: 1.6rem;
	font-size: clamp(1.15rem, 2vw, 1.8rem);
	line-height: 1.25;
	color: rgba(8, 37, 12, 0.78);
}
.page-hero--alliances .title-fill-loop {
	color: var(--color-gold-soft);
}
.page-hero--alliances .title-fill-loop::before,
.page-hero--alliances .title-fill-loop::after {
	inset: 0;
}
.page-hero--alliances .title-fill-loop::before {
	background: linear-gradient(90deg, #063F18 0%, #1B6B35 48%, #063F18 100%);
}
.page-hero--alliances .alliance-globe {
	top: 53%;
	left: 75%;
	width: min(70vw, 88svh, 1040px);
}
.page-hero--alliances .alliance-globe__stage {
	filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.08));
}
.alliances-hero__scroll { display: none; }

body.is-alliance-leaving::before,
body.is-alliance-arriving::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 100000;
	pointer-events: none;
	background:
		radial-gradient(circle at 74% 52%, rgba(246, 241, 231, 0.08), transparent 34rem),
		linear-gradient(135deg, rgba(27, 63, 24, 0.18), rgba(8, 37, 12, 0.9));
	opacity: 0;
	transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-alliance-leaving::before { opacity: 0.92; }
body.is-alliance-arriving::before { opacity: 1; }
body.is-alliance-arriving.is-alliance-arrived::before { opacity: 0; }
.alliance-transition-globe {
	position: fixed;
	z-index: 100001;
	display: block;
	border-radius: 50%;
	pointer-events: none;
	filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.08));
}
body.is-alliance-arriving .page-hero--alliances .page-hero__content {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-alliance-arriving.is-alliance-arrived .page-hero--alliances .page-hero__content {
	opacity: 1;
	transform: translateY(0);
}
body.is-alliance-arriving .page-hero--alliances .alliance-globe__stage {
	opacity: 0;
	transform: translateX(-8vw) scale(1.05);
	transition: opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1), transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-alliance-arriving.is-alliance-arrived .page-hero--alliances .alliance-globe__stage {
	opacity: 1;
	transform: translateX(0) scale(1);
}

/* Who We Are landing */
.page-hero--who {
	min-height: min(620px, 74svh);
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(8, 37, 12, 0.94) 0%, rgba(8, 37, 12, 0.78) 48%, rgba(8, 37, 12, 0.42) 100%),
		linear-gradient(180deg, rgba(8, 37, 12, 0.48) 0%, rgba(8, 37, 12, 0.94) 100%),
		url("../img/who.jpg");
	background-position: center 34%;
	background-size: cover;
}
.page-hero--who .eyebrow {
	display: block;
	margin-bottom: 1.05rem;
	color: var(--color-gold-soft);
	font-weight: 800;
}
.page-hero--who .page-hero__title {
	max-width: 15ch;
	font-family: var(--font-sans);
	font-size: clamp(2.55rem, 6.7vw, 5.9rem);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: 0;
	text-transform: uppercase;
}
.page-hero--who .page-hero__lead {
	max-width: 43ch;
	margin-top: 1.6rem;
	font-size: clamp(1.1rem, 1.8vw, 1.55rem);
	line-height: 1.3;
	color: rgba(246, 241, 231, 0.88);
}
.page-hero--who .title-fill-loop { color: var(--color-gold-soft); }
.page-hero--who .title-fill-loop::before,
.page-hero--who .title-fill-loop::after { inset: 0; }
.page-hero--who .title-fill-loop::before {
	background: linear-gradient(90deg, #063F18 0%, #1B6B35 48%, #063F18 100%);
}
.who-page-section-head {
	max-width: 760px;
	margin-bottom: clamp(2rem, 4vw, 3.4rem);
}
.who-page-section-head h2 {
	max-width: 14ch;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(2rem, 4.5vw, 3.7rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
	text-transform: uppercase;
}
.who-page-storyline {
	position: relative;
	overflow: hidden;
	padding-block: var(--space-section);
	background:
		radial-gradient(circle at 88% 18%, rgba(11, 62, 19, 0.08), transparent 26rem),
		linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
}
.who-page-storyline__icon {
	position: absolute;
	left: -8rem;
	top: 12%;
	width: clamp(16rem, 32vw, 32rem);
	aspect-ratio: 1;
	background: url("../../../../uploads/2026/06/Georama_Expanded/iconos/Group-8.svg") center / contain no-repeat;
	opacity: 0.12;
	filter: invert(12%) sepia(51%) saturate(1050%) hue-rotate(82deg) brightness(70%) contrast(98%);
	animation: serviceBgIconDrift 8s var(--ease) infinite alternate;
	pointer-events: none;
}
.who-page-storyline__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}
.who-page-storyline__media,
.who-page-team__media {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 32px 70px rgba(8, 37, 12, 0.18);
}
.who-page-storyline__media { aspect-ratio: 4 / 5; }
.who-page-storyline__media img,
.who-page-team__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.who-page-storyline__copy h2 {
	max-width: 14ch;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(2rem, 4.4vw, 3.8rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
	text-transform: uppercase;
}
.who-page-storyline__copy .title-fill-loop { color: var(--color-gold-soft); }
.who-page-storyline__copy .title-fill-loop::before {
	background: linear-gradient(90deg, #063F18 0%, #1B6B35 48%, #063F18 100%);
}
.who-page-storyline__copy p {
	max-width: 54ch;
	margin-top: 1.35rem;
	font-size: var(--fs-lead);
	line-height: 1.55;
	color: rgba(23, 27, 23, 0.76);
}
.who-page-storyline__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.6rem;
}
.who-page-storyline__tags span {
	padding: 0.56rem 0.85rem;
	border: 1px solid rgba(11, 62, 19, 0.15);
	border-radius: 999px;
	color: var(--color-green);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}
.who-page-values,
.who-page-story-more,
.who-page-team {
	padding-block: var(--space-section);
	background:
		radial-gradient(circle at 12% 22%, rgba(206, 184, 135, 0.14), transparent 30rem),
		radial-gradient(circle at 88% 72%, rgba(246, 241, 231, 0.065), transparent 28rem),
		var(--gradient-green);
	color: var(--color-cream);
}
.who-page-values .eyebrow,
.who-page-story-more .eyebrow,
.who-page-team .eyebrow { color: var(--color-gold-soft); }
.who-page-values .who-page-section-head h2,
.who-page-story-more .who-page-section-head h2 { color: var(--color-cream); }
.who-page-value-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.4rem);
}
.who-page-value-card {
	min-height: 300px;
	padding: clamp(1.3rem, 2.4vw, 2rem);
	border: 1px solid rgba(246, 241, 231, 0.15);
	border-radius: 8px;
	background: rgba(246, 241, 231, 0.06);
}
.who-page-value-card__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 1.3rem;
	border-radius: 50%;
	background: var(--gradient-gold);
}
.who-page-value-card__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}
.who-page-value-card h3 {
	margin-bottom: 0.8rem;
	color: var(--color-cream);
	font-size: clamp(1.25rem, 1.8vw, 1.75rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.who-page-value-card p {
	margin: 0;
	color: rgba(246, 241, 231, 0.78);
	line-height: 1.55;
}
.who-page-journey {
	padding-block: var(--space-section);
	background:
		radial-gradient(circle at 16% 18%, rgba(206, 184, 135, 0.28), transparent 26rem),
		radial-gradient(circle at 86% 78%, rgba(11, 62, 19, 0.09), transparent 30rem),
		linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
	color: var(--color-ink);
}
.who-page-journey .eyebrow { color: var(--color-green); }
.who-page-journey__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}
.who-page-journey__intro {
	position: sticky;
	top: calc(var(--header-h) + 2rem);
}
.who-page-journey__intro h2 {
	max-width: 12ch;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(2rem, 4.2vw, 3.5rem);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}
.who-page-journey__steps {
	display: grid;
	border-top: 1px solid rgba(11, 62, 19, 0.16);
}
.who-page-journey__step {
	display: grid;
	grid-template-columns: 88px minmax(180px, 0.42fr) minmax(0, 1fr);
	gap: clamp(1rem, 2.5vw, 2rem);
	padding: clamp(1.35rem, 2.6vw, 2rem) 0;
	border-bottom: 1px solid rgba(11, 62, 19, 0.16);
	align-items: start;
}
.who-page-journey__step > span {
	color: var(--color-gold-deep);
	font-weight: 900;
}
.who-page-journey__step h3 {
	margin: 0;
	color: var(--color-green);
	font-size: var(--fs-h4);
	font-weight: 900;
	text-transform: uppercase;
}
.who-page-journey__step p {
	margin: 0;
	color: rgba(23, 27, 23, 0.72);
	line-height: 1.55;
}
.who-page-story-more .accordion__trigger { color: var(--color-cream); }
.who-page-story-more .accordion__trigger::after { color: var(--color-gold-soft); }
.who-page-story-accordion h3 { margin: 0; }
.who-page-story-accordion,
.who-page-story-accordion .accordion__item {
	border-color: rgba(246, 241, 231, 0.18);
}
.who-page-story-accordion .accordion__panel-inner {
	max-width: 72ch;
	color: rgba(246, 241, 231, 0.78);
}
.who-page-story-accordion .accordion__panel-inner p {
	margin: 0 0 1rem;
	line-height: 1.65;
}
.who-page-team {
	position: relative;
	overflow: hidden;
}
.who-page-team::after {
	content: "";
	position: absolute;
	right: -7rem;
	top: 10%;
	width: clamp(18rem, 36vw, 34rem);
	aspect-ratio: 1;
	background: url("../../../../uploads/2026/06/Georama_Expanded/iconos/Group-5.svg") center / contain no-repeat;
	opacity: 0.06;
	animation: serviceBgIconDrift 8s var(--ease) infinite alternate;
}
.who-page-team__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}
.who-page-team__content h2 {
	max-width: 12ch;
	color: var(--color-cream);
	font-family: var(--font-sans);
	font-size: clamp(2rem, 4.8vw, 4rem);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}
.who-page-team__content .title-fill-loop { color: var(--color-green-deep); }
.who-page-team__content .title-fill-loop::before { background: var(--gradient-gold); }
.who-page-team__content > p {
	max-width: 58ch;
	margin-top: 1.4rem;
	color: rgba(246, 241, 231, 0.8);
	font-size: var(--fs-lead);
	line-height: 1.55;
}
.who-page-team__credentials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 1.6rem 0 2rem;
	padding: 0;
	list-style: none;
}
.who-page-team__credentials li {
	padding: 0.55rem 0.8rem;
	border: 1px solid rgba(246, 241, 231, 0.16);
	border-radius: 999px;
	color: rgba(246, 241, 231, 0.86);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}
.who-page-team__media {
	aspect-ratio: 3 / 4;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

/* Who We Are: simplified editorial story */
.page-hero--who-simple {
	position: relative;
	min-height: min(820px, 92svh);
	display: grid;
	place-items: center;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(6, 27, 9, 0.38) 0%, rgba(6, 27, 9, 0.78) 58%, rgba(6, 27, 9, 0.96) 100%),
		linear-gradient(90deg, rgba(6, 27, 9, 0.9) 0%, rgba(6, 27, 9, 0.2) 54%, rgba(6, 27, 9, 0.82) 100%),
		url("../../../../uploads/hero-poster.webp");
	background-position: center;
	background-size: cover;
	overflow: hidden;
	--who-hero-scale: 1;
}
.page-hero--who-simple::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: inherit;
	background-position: inherit;
	background-size: inherit;
	transform: scale(var(--who-hero-scale));
	transform-origin: center;
	will-change: transform;
}
.page-hero--who-simple::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(84vw, 1040px);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(215, 197, 143, 0.82), transparent);
	transform: translateX(-50%);
}
.page-hero--who-simple__content {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
}
.page-hero--who-simple .eyebrow {
	margin-bottom: 1rem;
	color: var(--color-gold-soft);
}
.page-hero--who-simple .page-hero__title {
	max-width: 14ch;
	margin-inline: auto;
	font-family: var(--font-sans);
	font-size: clamp(2.55rem, 7.4vw, 7rem);
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
}
.page-hero--who-simple .title-fill-loop {
	color: var(--color-gold-soft);
}
.page-hero--who-simple .title-fill-loop::before {
	background: linear-gradient(90deg, #063F18 0%, #1B6B35 48%, #063F18 100%);
}
.who-hero__beats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.7rem 1rem;
	list-style: none;
	margin: clamp(1.3rem, 2.4vw, 2rem) 0 0;
	padding: 0;
}
.who-hero__beats li {
	padding: 0.55rem 0.78rem;
	border: 1px solid rgba(215, 197, 143, 0.38);
	border-radius: 8px;
	background: rgba(6, 27, 9, 0.34);
	color: rgba(246, 241, 231, 0.86);
	backdrop-filter: blur(10px);
	font-size: clamp(0.72rem, 0.85vw, 0.85rem);
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.who-scroll-cue {
	display: inline-grid;
	justify-items: center;
	gap: 0.8rem;
	margin-top: clamp(2rem, 5vw, 4rem);
	color: var(--color-cream);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}
.who-scroll-cue i {
	display: block;
	width: 34px;
	height: 52px;
	border: 1px solid rgba(246, 241, 231, 0.58);
	border-radius: 999px;
	position: relative;
}
.who-scroll-cue i::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 11px;
	width: 7px;
	height: 7px;
	border-right: 1px solid var(--color-gold-soft);
	border-bottom: 1px solid var(--color-gold-soft);
	transform: translateX(-50%) rotate(45deg);
	animation: whoScrollArrow 1.55s var(--ease) infinite;
}
@keyframes whoScrollArrow {
	0% { opacity: 0; translate: 0 -4px; }
	35% { opacity: 1; }
	100% { opacity: 0; translate: 0 16px; }
}
.who-kickoff {
	position: relative;
	min-height: 180svh;
	background: #061B09;
	color: var(--color-cream);
	overflow: clip;
	--kickoff-img-scale: 1;
	--kickoff-img-y: 0px;
}
.who-kickoff__media {
	position: sticky;
	top: 0;
	height: 100svh;
	overflow: hidden;
}
.who-kickoff__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 27, 9, 0.94) 0%, rgba(6, 27, 9, 0.68) 46%, rgba(6, 27, 9, 0.22) 100%),
		linear-gradient(180deg, rgba(6, 27, 9, 0.58), rgba(6, 27, 9, 0.95));
}
.who-kickoff__media img {
	width: 100%;
	height: 118%;
	display: block;
	object-fit: cover;
	object-position: 62% center;
	filter: saturate(0.92) contrast(1.05);
	transform: translate3d(0, var(--kickoff-img-y), 0) scale(var(--kickoff-img-scale));
	transform-origin: center;
	will-change: transform;
}
.who-kickoff__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
	margin-top: -100svh;
	padding-block: clamp(7rem, 12vh, 10rem);
}
.who-kickoff__sticky {
	position: sticky;
	top: calc(var(--header-h) + 6rem);
	max-width: 760px;
}
.who-kickoff__sticky h2 {
	margin: 0;
	max-width: 11ch;
	color: var(--color-cream);
	font-size: clamp(2.6rem, 6.8vw, 6.6rem);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}
.who-kickoff__sticky .title-fill-loop {
	color: var(--color-gold-soft);
}
.who-kickoff__chapters {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	padding-top: clamp(20rem, 42vh, 28rem);
}
.who-kickoff__chapter {
	min-height: 230px;
	display: grid;
	align-content: end;
	padding: clamp(1.2rem, 2.2vw, 1.7rem);
	border: 1px solid rgba(215, 197, 143, 0.28);
	border-radius: 8px;
	background: rgba(246, 241, 231, 0.07);
	backdrop-filter: blur(14px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
	will-change: transform, opacity;
}
.who-kickoff__chapter span {
	margin-bottom: 2rem;
	color: var(--color-gold-soft);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.who-kickoff__chapter h3 {
	margin: 0 0 0.55rem;
	color: var(--color-cream);
	font-size: clamp(1.5rem, 2.2vw, 2.25rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.who-kickoff__chapter p {
	margin: 0;
	color: rgba(246, 241, 231, 0.78);
	font-size: clamp(1rem, 1.2vw, 1.15rem);
	line-height: 1.45;
}
.who-image-marquee {
	overflow: hidden;
	padding-block: clamp(1rem, 2vw, 1.5rem);
	background:
		radial-gradient(circle at 16% 18%, rgba(206, 184, 135, 0.24), transparent 22rem),
		linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
}
.who-image-marquee__track {
	display: flex;
	gap: clamp(0.8rem, 1.6vw, 1.25rem);
	width: max-content;
	animation: whoMarquee 42s linear infinite;
}
.who-image-marquee__item {
	width: clamp(210px, 22vw, 420px);
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: var(--color-green);
}
.who-image-marquee__item {
	position: relative;
}
.who-image-marquee__item img,
.who-image-marquee__item video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
}
/* Instagram caption: subtle gradient plate pinned to the tile bottom.
   The inner span carries the 2-line clamp so the text ends cleanly with an
   ellipsis instead of being sliced mid-line by the tile edge. */
.who-image-marquee__caption {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	margin: 0;
	padding: 2.2rem 0.85rem 0.75rem;
	background: linear-gradient(180deg, transparent 0%, rgba(4, 20, 7, 0.82) 88%);
	color: var(--color-cream);
	font-size: 0.76rem;
	line-height: 1.4;
}
.who-image-marquee__caption span {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/* Each tile links to its Instagram post. */
.who-image-marquee__link {
	flex: none;
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s var(--ease);
}
.who-image-marquee__link:hover {
	transform: translateY(-4px);
}
/* Small Instagram glyph on each tile so the source is obvious. */
.who-image-marquee__badge {
	position: absolute;
	top: 0.6rem;
	right: 0.6rem;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(4, 20, 7, 0.45);
	color: var(--color-cream);
	backdrop-filter: blur(2px);
}
.who-image-marquee__badge svg {
	width: 15px;
	height: 15px;
}
/* Strip header: links the marquee to the Instagram profile. */
.footer-marquee__head {
	display: flex;
	justify-content: center;
	padding: 1.4rem 1rem 0.2rem;
	background: linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
}
.footer-marquee__head a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-green);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.3s var(--ease);
}
.footer-marquee__head a:hover {
	color: var(--color-gold-deep);
}
.footer-marquee__head svg {
	width: 17px;
	height: 17px;
}
.footer-marquee__head strong {
	font-weight: 800;
}
@keyframes whoMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.footer-marquee {
	padding-block: clamp(1.2rem, 2.5vw, 2rem);
	background:
		radial-gradient(circle at 84% 20%, rgba(206, 184, 135, 0.24), transparent 22rem),
		radial-gradient(rgba(11, 62, 19, 0.07) 1px, transparent 1.6px),
		linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
	background-size: auto, 26px 26px, auto;
}
.footer-marquee .who-image-marquee__track:hover {
	animation-play-state: paused;
}
/* Footer tiles: portrait 4:5 like Instagram posts, so their artwork/text
   shows uncropped. Narrower width keeps the strip height similar to the
   4:3 base marquee. */
.footer-marquee .who-image-marquee__item {
	width: clamp(190px, 17vw, 300px);
	aspect-ratio: 4 / 5;
}
.who-story-editorial {
	position: relative;
	overflow: hidden;
	padding-block: var(--space-section);
	background:
		radial-gradient(circle at 86% 20%, rgba(11, 62, 19, 0.08), transparent 28rem),
		linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
}
.who-story-editorial__icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(82vw, 58rem);
	aspect-ratio: 6341 / 2062;
	background: url("../../../../uploads/logososusapng.png") center / contain no-repeat;
	opacity: 0.045;
	filter: invert(16%) sepia(44%) saturate(1070%) hue-rotate(83deg) brightness(75%) contrast(96%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 0;
}
.who-story-editorial__inner {
	position: relative;
	display: block;
	width: min(100%, 960px);
	max-width: 960px;
	margin-inline: auto;
	z-index: 1;
}
.who-story-editorial__text {
	width: 100%;
}
.who-story-editorial__text .eyebrow {
	color: var(--color-green);
}
.who-story-editorial__lead {
	position: relative;
	max-width: 100%;
	margin: 0;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(1.05rem, 1.7vw, 1.35rem);
	font-weight: 500;
	line-height: 1.58;
	text-transform: none;
	letter-spacing: 0;
	white-space: pre-line;
}
.who-story-editorial__lead::after {
	content: "";
	display: inline-block;
	width: 0.09em;
	height: 1em;
	margin-left: 0.12em;
	vertical-align: -0.12em;
	background: var(--color-gold-deep);
	animation: whoStoryCaret 0.95s steps(1, end) infinite;
}
@keyframes whoStoryCaret {
	0%, 48% { opacity: 1; }
	49%, 100% { opacity: 0; }
}
/* Who We Are — scrollytelling scenes (pinned 100svh chapters)
   ------------------------------------------------------------------------ */
.who-scene {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	padding-block: clamp(3.5rem, 7vh, 6rem);
}
.who-scene::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0;
}
.who-scene__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.who-scene__inner--narrow { max-width: 980px; }
.who-scene__inner--center {
	display: grid;
	justify-items: center;
	text-align: center;
}

.who-scene--belief {
	/* Solid colour so who-story.js can morph it cream → deep green on scroll. */
	background-color: #F7F0E2;
}
.who-belief__eyebrow {
	display: block;
	margin-bottom: 1.4rem;
	color: var(--color-green);
}
.who-belief__statement {
	margin: 0;
	font-size: clamp(1.75rem, 4.2vw, 3.4rem);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.01em;
	text-transform: none;
}

.who-scene--dark {
	background: linear-gradient(165deg, #08250C 0%, #0B3E13 60%, #08250C 100%);
	color: var(--color-cream);
}
.who-scene--mission::before,
.who-scene--vision::before {
	opacity: 0.22;
	background:
		linear-gradient(90deg, rgba(8, 37, 12, 0.96), rgba(8, 37, 12, 0.36)),
		url("../../../../uploads/hero-poster.webp") center / cover no-repeat;
	filter: saturate(0.85) contrast(1.04);
}
.who-scene--vision::before {
	background:
		linear-gradient(90deg, rgba(8, 37, 12, 0.42), rgba(8, 37, 12, 0.96)),
		url("../../../../uploads/FA01968C-0EA0-47A3-BF23-59D433EE05E1.jpg") center / cover no-repeat;
}
.who-scene--cream {
	background: linear-gradient(180deg, #F7F0E2 0%, #F1E8D4 100%);
}
.who-scene--roots {
	background:
		linear-gradient(110deg, #F7F0E2 0%, #EFE4CE 54%, #D9C692 100%);
}
.who-scene--lesson {
	background:
		linear-gradient(180deg, rgba(247, 240, 226, 0.94), rgba(239, 228, 206, 0.98)),
		url("../../../../uploads/c1cf59e7-689e-470e-baeb-97c4bce24a90.jpg") center / cover no-repeat;
}
.who-scene--founder {
	background:
		linear-gradient(115deg, #EFE4CE 0%, #F7F0E2 52%, #D8C58E 100%);
}

.who-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.1rem;
	color: var(--color-gold-soft);
	font-size: var(--fs-eyebrow);
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.who-kicker::before {
	content: "";
	width: 2.4rem;
	height: 2px;
	background: currentColor;
	opacity: 0.7;
}
.who-kicker--green { color: var(--color-gold-deep); }

.who-scene__split {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}
.who-scene__split--flip {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.who-scene__title {
	margin: 0 0 1.2rem;
	color: var(--color-cream);
	font-size: clamp(1.9rem, 3.8vw, 3.4rem);
	font-weight: 900;
	line-height: 1.02;
	text-transform: uppercase;
}
.who-scene__title--green { color: var(--color-green); }
.who-scene__title--big { font-size: clamp(2.3rem, 5.6vw, 4.8rem); }
.who-scene__title .title-fill-loop { display: inline-block; }
.who-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.08em;
}
.who-line > span {
	display: block;
	will-change: transform;
}

.who-scene__copy {
	margin: 0;
	max-width: 34rem;
	color: rgba(246, 241, 231, 0.88);
	font-size: var(--fs-lead);
	line-height: 1.65;
}
.who-scene__copy--ink { color: rgba(23, 27, 23, 0.78); }
.who-scene__copy--center {
	margin-inline: auto;
	max-width: 46rem;
}

.who-scene__photo {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: calc(var(--radius) * 1.2);
	box-shadow: 0 30px 70px rgba(8, 37, 12, 0.35);
	will-change: transform, opacity, clip-path;
}
.who-scene__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.who-scene__photo--mission {
	aspect-ratio: 4 / 5;
	width: min(100%, 420px);
	justify-self: end;
}
.who-scene__photo--vision {
	aspect-ratio: 5 / 4;
	width: min(100%, 480px);
	justify-self: start;
}
.who-scene__photo--roots {
	aspect-ratio: 4 / 3;
	width: min(100%, 560px);
}
.who-scene__photo--founder {
	aspect-ratio: 4 / 5;
	width: min(100%, 400px);
	justify-self: center;
}
.who-scene__photo--lesson {
	position: absolute;
	right: clamp(1rem, 6vw, 5rem);
	bottom: clamp(1rem, 5vh, 3.5rem);
	z-index: 0;
	width: clamp(150px, 19vw, 270px);
	aspect-ratio: 3 / 4;
	transform: rotate(2deg);
}

/* Full-bleed photo scenes (quote & closing) */
.who-scene__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.who-scene__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}
.who-scene__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 37, 12, 0.72) 0%, rgba(8, 37, 12, 0.58) 50%, rgba(8, 37, 12, 0.85) 100%);
}
.who-scene--quote,
.who-scene--closing {
	color: var(--color-cream);
}
.who-quote {
	margin: 0 auto 1.4rem;
	max-width: 21ch;
	font-family: var(--font-serif);
	font-size: clamp(1.9rem, 4.6vw, 4rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.01em;
}
.who-quote-word {
	display: inline-block;
	will-change: transform, opacity;
}
.who-quote__by {
	margin-inline: auto;
	max-width: 50ch;
	color: rgba(246, 241, 231, 0.85);
	font-size: var(--fs-lead);
	line-height: 1.5;
}

.who-regions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem 2.2rem;
	list-style: none;
	margin: clamp(1.8rem, 4vh, 2.8rem) 0 0;
	padding: 0;
}
.who-regions li {
	position: relative;
	color: var(--color-gold-soft);
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.who-regions li + li::before {
	content: "·";
	position: absolute;
	left: -1.35rem;
	color: rgba(246, 241, 231, 0.55);
}

/* Moments — a pinned board where the polaroids land one by one */
.who-moments-board {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	width: 100%;
}
.who-moments__head {
	position: absolute;
	top: clamp(4rem, 10vh, 7rem);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: min(92vw, 42rem);
	text-align: center;
}
.who-polaroid {
	position: absolute;
	margin: 0;
	padding: 0.55rem 0.55rem 1.1rem;
	background: var(--color-cream);
	border-radius: 6px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}
.who-polaroid img {
	display: block;
	width: 100%;
	object-fit: cover;
	border-radius: 3px;
}
.who-polaroid--youth {
	left: 5%;
	bottom: 30%;
	width: clamp(200px, 24vw, 350px);
	transform: rotate(-3deg);
}
.who-polaroid--youth img { aspect-ratio: 3 / 2; }
.who-polaroid--meeting {
	left: 30%;
	bottom: 5%;
	width: clamp(130px, 15vw, 210px);
	transform: rotate(2.5deg);
}
.who-polaroid--meeting img { aspect-ratio: 3 / 4; }
.who-polaroid--action {
	right: 7%;
	bottom: 30%;
	width: clamp(140px, 16vw, 230px);
	transform: rotate(-1.5deg);
}
.who-polaroid--action img { aspect-ratio: 3 / 4; }
.who-polaroid--conference {
	right: 27%;
	bottom: 4%;
	width: clamp(190px, 22vw, 320px);
	transform: rotate(1.8deg);
}
.who-polaroid--conference img { aspect-ratio: 3 / 2; }
.who-polaroid--travel {
	left: 8%;
	bottom: 4%;
	width: clamp(180px, 21vw, 300px);
	transform: rotate(-2deg);
}
.who-polaroid--travel img { aspect-ratio: 16 / 9; }

/* Scene responsive: single column splits, smaller photos, denser board */
@media (max-width: 860px) {
	.who-scene {
		padding-block: clamp(3rem, 6vh, 4.5rem);
	}
	.who-scene__split,
	.who-scene__split--flip {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.who-scene__split--flip .who-scene__photo { order: 0; }
	.who-scene__split--flip .who-scene__text { order: 1; }
	.who-scene__photo--mission,
	.who-scene__photo--vision,
	.who-scene__photo--roots,
	.who-scene__photo--founder {
		width: min(58vw, 300px);
		justify-self: start;
	}
	.who-scene__copy { font-size: 1rem; }
	.who-scene__photo--lesson {
		right: 4%;
		bottom: 2%;
		width: clamp(110px, 26vw, 170px);
	}
	.who-moments__head { top: clamp(3rem, 8vh, 5rem); }
	.who-polaroid--youth { left: 4%; bottom: 36%; width: clamp(150px, 44vw, 240px); }
	.who-polaroid--meeting { left: 6%; bottom: 6%; width: clamp(110px, 32vw, 170px); }
	.who-polaroid--action { right: 5%; bottom: 34%; width: clamp(110px, 32vw, 170px); }
	.who-polaroid--conference { right: 6%; bottom: 5%; width: clamp(150px, 44vw, 240px); }
	.who-polaroid--travel { left: 50%; bottom: 20%; width: clamp(150px, 46vw, 250px); transform: translateX(-50%) rotate(-2deg); }
}
.who-story-read-more {
	max-width: 100%;
	max-height: 0;
	margin-top: 0;
	border-color: rgba(11, 62, 19, 0.18);
	opacity: 0;
	overflow: hidden;
	transform: translateY(0.75rem);
	visibility: hidden;
	pointer-events: none;
	transition:
		max-height 0.55s var(--ease),
		margin-top 0.55s var(--ease),
		opacity 0.45s var(--ease),
		transform 0.45s var(--ease),
		visibility 0s linear 0.45s;
}
.who-story-read-more.is-visible {
	max-height: 900px;
	margin-top: clamp(2rem, 5vw, 4rem);
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}
.who-story-read-more h2 { margin: 0; }
.who-story-read-more .accordion__item {
	border-color: rgba(11, 62, 19, 0.18);
}
.who-story-read-more .accordion__trigger {
	color: var(--color-green);
	font-size: clamp(1.1rem, 2vw, 1.65rem);
	text-transform: none;
}
.who-story-read-more .accordion__panel-inner {
	max-width: 68ch;
	color: rgba(23, 27, 23, 0.74);
	font-size: var(--fs-lead);
	line-height: 1.65;
}
.who-story-read-more .accordion__panel-inner p {
	margin: 0 0 1rem;
}

/* Our Team page */
.page-hero--team {
	min-height: min(640px, 78svh);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background:
		linear-gradient(90deg, rgba(8, 37, 12, 0.92) 0%, rgba(8, 37, 12, 0.75) 50%, rgba(8, 37, 12, 0.38) 100%),
		url("../img/team-ruben.jpg");
	background-position: center 30%;
	background-size: cover;
}
.page-hero--team .eyebrow {
	display: block;
	margin-bottom: 1rem;
	color: var(--color-gold-soft);
}
.page-hero--team .page-hero__title {
	max-width: 15ch;
	margin-inline: auto;
	font-family: var(--font-sans);
	font-size: clamp(2.55rem, 6.8vw, 5.9rem);
	font-weight: 900;
	line-height: 0.96;
	text-transform: uppercase;
}
.page-hero--team .page-hero__lead {
	max-width: 42ch;
	margin-inline: auto;
	margin-top: 1.45rem;
	color: rgba(246, 241, 231, 0.86);
}
.page-hero--team .title-fill-loop {
	color: var(--color-gold-soft);
}
.our-team-profile {
	position: relative;
	overflow: hidden;
	padding-block: var(--space-section);
	background:
		radial-gradient(circle at 10% 6%, rgba(206, 184, 135, 0.32), transparent 24rem),
		radial-gradient(circle at 90% 94%, rgba(11, 62, 19, 0.07), transparent 28rem),
		radial-gradient(rgba(11, 62, 19, 0.16) 1.2px, transparent 1.9px),
		var(--color-cream);
	background-size: auto, auto, 24px 24px, auto;
}
.team-card {
	filter: drop-shadow(0 32px 55px rgba(122, 108, 77, 0.4));
}
.team-card + .team-card {
	margin-top: clamp(2.5rem, 6vw, 5rem);
}
.team-card__shape {
	clip-path: url(#teamCardClip);
	border-radius: clamp(1.6rem, 4vw, 3rem);
	background:
		radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.5), transparent 24rem),
		radial-gradient(circle at 84% 86%, rgba(122, 108, 77, 0.32), transparent 28rem),
		linear-gradient(115deg, #EBDDBE 0%, #CEB887 48%, #AE9460 100%);
}
.team-card__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: clamp(360px, 40vw, 560px);
}
.team-card__media {
	position: absolute;
	left: clamp(2rem, 9vw, 8rem);
	top: 2%;
	bottom: 0;
	width: min(44%, 500px);
}
.team-card__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(-16px 20px 26px rgba(23, 27, 23, 0.28));
}
.team-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	width: min(52%, 580px);
	padding: clamp(1.8rem, 4vw, 3.5rem) clamp(2.4rem, 8vw, 7rem) clamp(1.8rem, 4vw, 3.5rem) 0;
}
.team-card__name {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: var(--font-sans);
	font-size: clamp(1.9rem, 4.6vw, 4.2rem);
	font-weight: 900;
	line-height: 0.94;
	text-transform: uppercase;
	color: var(--color-green);
}
.team-card__name-outline {
	color: transparent;
	-webkit-text-stroke: 2px rgba(11, 62, 19, 0.75);
	margin-right: 1.1em;
}
@supports not (-webkit-text-stroke: 2px #000) {
	.team-card__name-outline { color: rgba(11, 62, 19, 0.45); }
	.team-card--green .team-card__name-outline { color: rgba(206, 184, 135, 0.5); }
}
.team-card__name-solid {
	margin-top: -0.06em;
	white-space: nowrap;
}
.team-card__role {
	max-width: 26ch;
	margin-top: 1.4rem;
	color: rgba(11, 62, 19, 0.82);
	font-size: clamp(0.78rem, 1vw, 0.95rem);
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1.5;
	text-transform: uppercase;
}
/* Primary role ("Founder", "Attorney") — its own highlighted line under the name. */
.team-card__role--primary {
	margin-top: 1.1rem;
	font-size: clamp(1.05rem, 1.5vw, 1.4rem);
	letter-spacing: 0.1em;
	line-height: 1.2;
}
.team-card__role--rest {
	margin-top: 0.4rem;
	font-weight: 700;
	color: rgba(11, 62, 19, 0.6);
}
.team-card--green .team-card__role--rest {
	color: rgba(206, 184, 135, 0.7);
}
.team-card__link {
	position: relative;
	margin-top: 2rem;
	background: none;
	border: 0;
	padding: 0;
	font-family: inherit;
	cursor: pointer;
	color: var(--color-green);
	font-size: var(--fs-eyebrow);
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 0.35rem;
}
.team-card__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--color-green);
	transform-origin: right;
	transition: transform 0.35s var(--ease);
}
.team-card__link:hover::after {
	transform: scaleX(0.35);
}

/* Flipped card: mirrored shape, photo right / text left */
.team-card--flip .team-card__shape {
	clip-path: url(#teamCardClipFlip);
}
.team-card--flip .team-card__inner {
	justify-content: flex-start;
}
.team-card--flip .team-card__media {
	left: auto;
	right: clamp(2rem, 9vw, 8rem);
}
.team-card--flip .team-card__media img {
	filter: drop-shadow(16px 20px 26px rgba(23, 27, 23, 0.28));
}
.team-card--flip .team-card__content {
	align-items: flex-start;
	text-align: left;
	padding: clamp(1.8rem, 4vw, 3.5rem) 0 clamp(1.8rem, 4vw, 3.5rem) clamp(2.4rem, 8vw, 7rem);
}
.team-card--flip .team-card__name {
	align-items: flex-start;
}
.team-card--flip .team-card__name-outline {
	margin-right: 0;
	margin-left: 1.1em;
}
.team-card--flip .team-card__link::after {
	transform-origin: left;
}

/* Green card: deep green gradient, gold lettering */
.team-card--green {
	filter: drop-shadow(0 32px 55px rgba(8, 37, 12, 0.4));
}
.team-card--green .team-card__shape {
	background:
		radial-gradient(circle at 72% 20%, rgba(206, 184, 135, 0.28), transparent 24rem),
		radial-gradient(circle at 16% 86%, rgba(0, 0, 0, 0.3), transparent 28rem),
		linear-gradient(245deg, #1D5A28 0%, #0B3E13 48%, #072A0D 100%);
}
.team-card--green .team-card__name {
	color: var(--color-gold-soft);
}
.team-card--green .team-card__name-outline {
	-webkit-text-stroke: 2px rgba(206, 184, 135, 0.8);
}
.team-card--green .team-card__role {
	color: rgba(206, 184, 135, 0.9);
}
.team-card--green .team-card__link {
	color: var(--color-gold-soft);
}
.team-card--green .team-card__link::after {
	background: var(--color-gold-soft);
}

/* Side-by-side card row (half-width cards) */
.team-card-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	margin-top: clamp(2.5rem, 6vw, 5rem);
}
.team-card-row .team-card,
.team-card-row .team-card + .team-card {
	margin-top: 0;
}
.team-card-row .team-card__inner {
	min-height: clamp(280px, 26vw, 400px);
}
.team-card-row .team-card__media {
	left: clamp(1rem, 2.5vw, 2.2rem);
	top: 2%;
	width: min(50%, 330px);
}
.team-card-row .team-card--flip .team-card__media {
	left: auto;
	right: clamp(1rem, 2.5vw, 2.2rem);
}
.team-card-row .team-card__content {
	width: 54%;
	padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.6rem, 3.5vw, 3rem) clamp(1.4rem, 3vw, 2.4rem) 0;
}
.team-card-row .team-card--flip .team-card__content {
	padding: clamp(1.4rem, 3vw, 2.4rem) 0 clamp(1.4rem, 3vw, 2.4rem) clamp(1.6rem, 3.5vw, 3rem);
}
.team-card-row .team-card__name {
	font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}
.team-card-row .team-card__name-outline {
	margin-right: 0.8em;
}
.team-card-row .team-card--flip .team-card__name-outline {
	margin-right: 0;
	margin-left: 0.8em;
}
.team-card-row .team-card__role {
	margin-top: 1rem;
	font-size: clamp(0.7rem, 0.85vw, 0.85rem);
}
.team-card-row .team-card__link {
	margin-top: 1.4rem;
}

/* Team profile modal */
body.modal-open {
	overflow: hidden;
}
.team-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 4vw, 3rem);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
.team-modal.is-open {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.35s var(--ease);
}
.team-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 37, 12, 0.78);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.team-modal__panel {
	position: relative;
	width: min(760px, 100%);
	max-height: min(86svh, 900px);
	overflow-y: auto;
	border-radius: clamp(1.2rem, 2.5vw, 2rem);
	background:
		radial-gradient(circle at 20% 0%, rgba(206, 184, 135, 0.25), transparent 20rem),
		linear-gradient(160deg, #F7F0E2 0%, #EFE6D2 100%);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
	padding: clamp(1.8rem, 5vw, 3.5rem);
	transform: translateY(24px) scale(0.98);
	transition: transform 0.4s var(--ease);
}
.team-modal.is-open .team-modal__panel {
	transform: translateY(0) scale(1);
}
.team-modal__close {
	position: absolute;
	top: clamp(0.9rem, 2vw, 1.4rem);
	right: clamp(0.9rem, 2vw, 1.4rem);
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(11, 62, 19, 0.25);
	border-radius: 50%;
	background: none;
	color: var(--color-green);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.team-modal__close:hover {
	background: var(--color-green);
	color: var(--color-cream);
}
.team-modal__head h3 {
	margin-top: 0.6rem;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.team-modal__body {
	margin-top: 1.4rem;
}
.team-modal__body p {
	margin-top: 1rem;
	color: rgba(23, 27, 23, 0.78);
	font-size: var(--fs-body);
	line-height: 1.65;
}
.team-modal__quote {
	margin: 1.6rem 0;
	padding-left: 1.4rem;
	border-left: 3px solid var(--color-gold-soft);
	color: var(--color-green);
	font-size: var(--fs-lead);
	font-style: italic;
	line-height: 1.5;
}
.team-modal__subtitle {
	margin-top: 2rem;
	color: var(--color-green);
	font-size: var(--fs-eyebrow-lg);
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.team-modal__credentials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}
.team-modal__credentials li {
	padding: 0.55rem 0.8rem;
	border: 1px solid rgba(11, 62, 19, 0.16);
	border-radius: 999px;
	color: var(--color-green);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.entry-content { max-width: var(--container-narrow); }
.entry-content h2 { font-size: var(--fs-h2); margin-top: 2em; }
.entry-content h3 { font-size: var(--fs-h3); margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius-lg); margin-block: 1.5rem; }
.entry-content blockquote {
	border-left: 3px solid var(--color-gold-soft);
	padding-left: 1.5rem;
	font-family: var(--font-serif);
	font-size: var(--fs-lead);
	font-style: italic;
	color: var(--color-ink);
	margin: 2rem 0;
}

/* Accordion (Our Story etc.) */
.accordion { border-top: 1px solid var(--color-line); }
.accordion__item { border-bottom: 1px solid var(--color-line); }
.accordion__trigger {
	width: 100%;
	background: none;
	border: 0;
	text-align: left;
	font-family: var(--font-serif);
	font-size: var(--fs-h3);
	color: var(--color-ink);
	padding: 1.4rem 3rem 1.4rem 0;
	position: relative;
	cursor: pointer;
}
.accordion__trigger::after {
	content: "";
	position: absolute;
	right: 0.4rem;
	top: 50%;
	width: 14px;
	height: 14px;
	background:
		linear-gradient(currentColor, currentColor) center/100% 1.5px no-repeat,
		linear-gradient(currentColor, currentColor) center/1.5px 100% no-repeat;
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.45s var(--ease);
}
.accordion__trigger[aria-expanded="true"]::after { transform: translateY(-50%) rotate(135deg); }
.accordion__panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.5s var(--ease);
}
.accordion__panel-inner { padding-bottom: 1.6rem; color: var(--color-muted); }

/* 19. Ruben landing
   ------------------------------------------------------------------------ */
.ruben-profile {
	position: relative;
	overflow: clip;
	padding: clamp(8.5rem, 14vw, 12rem) 0 clamp(5rem, 10vw, 9rem);
	background: var(--color-cream);
}
.ruben-profile::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 42rem;
	background: radial-gradient(circle at 74% 20%, rgba(194, 173, 127, 0.2), transparent 34rem);
	pointer-events: none;
}
.ruben-profile__intro { position: relative; margin-bottom: clamp(4rem, 9vw, 8rem); }
.ruben-profile__title {
	max-width: 10ch;
	margin: 0.25rem 0 1.25rem;
	font-size: clamp(4.5rem, 12vw, 11rem);
	line-height: 0.76;
	letter-spacing: -0.065em;
	color: var(--color-green);
}
.ruben-profile__deck {
	max-width: 56rem;
	margin: 0;
	color: var(--color-muted);
	font-size: clamp(0.9rem, 1.5vw, 1.12rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.ruben-profile__layout { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.ruben-profile__sticky { position: sticky; top: clamp(5.5rem, 10vh, 8rem); }
.ruben-profile__card {
	position: relative;
	min-height: min(72vh, 720px);
	overflow: hidden;
	background: linear-gradient(145deg, #d5c69e 0%, #b8a36c 100%);
	clip-path: polygon(7% 0, 88% 0, 100% 27%, 94% 100%, 11% 100%, 0 13%);
}
.ruben-profile__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(8,37,12,.78) 100%); }
.ruben-profile__card img { position: absolute; z-index: 2; inset: 3% 0 0; width: 100%; height: 97%; object-fit: contain; object-position: center bottom; }
.ruben-profile__card-name { position: absolute; top: 8%; left: -2%; color: rgba(11,62,19,.22); font-family: var(--font-serif); font-size: clamp(4rem, 8vw, 8rem); font-weight: 900; line-height: 1; }
.ruben-profile__card-caption { position: absolute; z-index: 3; right: 9%; bottom: 7%; left: 10%; display: flex; justify-content: space-between; align-items: end; gap: 1rem; color: var(--color-cream); }
.ruben-profile__card-caption strong { font-family: var(--font-serif); font-size: clamp(1.25rem, 2.4vw, 2rem); text-transform: uppercase; }
.ruben-profile__card-caption span { color: var(--color-gold-soft); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ruben-profile__story { padding-top: clamp(1rem, 9vh, 6rem); }
.ruben-profile__chapter { position: relative; padding: 0 0 clamp(5rem, 13vh, 9rem); }
.ruben-profile__chapter h2 { margin: 0 0 1.5rem; color: var(--color-green); font-size: clamp(2.25rem, 5vw, 5.5rem); line-height: .94; }
.ruben-profile__chapter p { max-width: 39rem; color: var(--color-muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.7; }
.ruben-profile__chapter .lead { color: var(--color-ink); font-size: clamp(1.3rem, 2.1vw, 1.8rem); line-height: 1.5; }
.ruben-profile__number { display: block; margin-bottom: 1.2rem; color: var(--color-gold); font-size: .75rem; font-weight: 900; letter-spacing: .18em; }
.ruben-profile__statement { margin: 0 0 clamp(6rem, 15vh, 10rem); padding: 2rem 0 2rem clamp(1.5rem, 4vw, 3rem); border-left: 2px solid var(--color-gold); color: var(--color-green); font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 900; line-height: 1.08; }
.ruben-profile__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.ruben-profile__actions .btn--outline { color: var(--color-green); border-color: var(--color-green); }

/* Ruben statement hero: the Who We Are founder card, staged like a cover. */
.ruben-profile { padding: 0; overflow: clip; background: var(--color-cream); }
.ruben-profile::before { display: none; }
.ruben-profile__hero {
	position: relative;
	display: grid;
	place-items: end center;
	overflow: hidden;
	min-height: clamp(500px, 62svh, 680px);
	padding: clamp(5.5rem, 9vh, 7rem) clamp(1.25rem, 5vw, 5rem) 0;
	border-bottom: 1px solid rgba(206,184,135,.72);
	background:
		radial-gradient(rgba(206,184,135,.16) 1.2px, transparent 1.8px) 0 0 / 24px 24px,
		radial-gradient(circle at 78% 28%, rgba(42, 104, 51, .42), transparent 34rem),
		linear-gradient(135deg, #0b3e13 0%, #082f0e 44%, #041b08 100%);
}
.ruben-profile__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4,27,8,.12) 0%, rgba(4,27,8,.03) 42%, rgba(4,27,8,.7) 100%);
	pointer-events: none;
}
.ruben-profile__hero-stage {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
	align-items: center;
	width: min(94vw, 1500px);
	height: clamp(410px, 53svh, 590px);
}
.ruben-profile__hero-photo {
	position: relative;
	z-index: 3;
	grid-column: 1;
	grid-row: 1;
	align-self: end;
	justify-self: center;
	width: min(38vw, 530px);
	height: 96%;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 28px 30px rgba(0,0,0,.34));
	transform: translateX(5%);
}
.ruben-profile__hero-name {
	position: relative;
	z-index: 2;
	grid-column: 2;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-self: start;
	width: min-content;
	margin: 0;
	color: rgba(246,241,231,.92);
	font-family: var(--font-sans);
	font-size: clamp(4.8rem, 7.4vw, 8.6rem);
	font-weight: 900;
	letter-spacing: -.075em;
	line-height: .78;
	text-align: left;
	text-transform: uppercase;
	transform: translateX(-9%);
}
.ruben-profile__hero-name span,
.ruben-profile__hero-name strong { font: inherit; white-space: nowrap; }
.ruben-profile__hero-name span { color: rgba(246,241,231,.06); -webkit-text-stroke: 3px rgba(246,241,231,.96); }
.ruben-profile__hero-name strong { color: var(--color-gold-soft); -webkit-text-stroke: 0; }
.ruben-profile__hero-credentials { max-width: 29ch; margin: clamp(1.5rem, 3vh, 2.3rem) 0 0 auto; color: rgba(11,62,19,.72); font-size: clamp(.72rem, 1.15vw, 1.05rem); font-weight: 900; letter-spacing: .06em; line-height: 1.45; text-transform: uppercase; }
.ruben-profile__hero-copy {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: clamp(3.6rem, 7vh, 6rem);
	width: min(82vw, 1250px);
	transform: translateX(-50%);
	color: #fff;
	text-align: center;
}
.ruben-profile__hero-outline {
	display: block;
	margin: 0 auto -.08em;
	font-size: clamp(1.5rem, 4.4vw, 5.2rem);
	font-weight: 900;
	line-height: .95;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 2px rgba(255,255,255,.92);
}
.ruben-profile__hero-copy h1 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(3rem, 7.2vw, 8.5rem);
	font-weight: 900;
	line-height: .78;
	letter-spacing: -.045em;
	text-transform: uppercase;
	color: #fff;
}
.ruben-profile__hero-copy p { max-width: 56rem; margin: 1.25rem auto 0; color: rgba(255,255,255,.76); font-size: clamp(.68rem, 1vw, .9rem); font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.ruben-profile__scroll {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: clamp(1.2rem, 3vh, 2rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 70px;
	height: 58px;
	transform: translateX(-50%);
}
.ruben-profile__scroll small {
	color: rgba(246,241,231,.78);
	font-size: .62rem;
	font-weight: 900;
	letter-spacing: .18em;
	line-height: 1;
	text-transform: uppercase;
}
.ruben-profile__scroll span {
	position: absolute;
	left: 50%;
	top: 19px;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--color-cream);
	border-bottom: 2px solid var(--color-cream);
	transform: translateX(-50%) rotate(45deg);
	animation: rubenScrollArrow 1.6s ease-in-out infinite;
}
@keyframes rubenScrollArrow {
	0%, 100% { transform: translate(-50%, -2px) rotate(45deg); opacity: .45; }
	50% { transform: translate(-50%, 8px) rotate(45deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.ruben-profile__scroll span { animation: none; }
}
.ruben-profile__facts {
	position: relative;
	z-index: 2;
	padding: clamp(5rem, 10vw, 9rem) 0;
	background: radial-gradient(circle at 10% 18%, rgba(206,184,135,.16), transparent 24rem), var(--color-cream);
	border-bottom: 1px solid rgba(11,62,19,.16);
}
.ruben-profile__facts-inner { display: block; }
.ruben-profile__facts-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: 1.5rem; border-bottom: 1px solid rgba(11,62,19,.28); }
.ruben-profile__facts-kicker { display: block; margin: 0 0 .4rem; color: var(--color-gold); font-size: .7rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.ruben-profile__facts-heading h2 { margin: 0; }
.ruben-profile__facts-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; overflow: hidden; border: 0; background: rgba(11,62,19,.22); }
.ruben-profile__fact { display: block; min-height: 165px; padding: clamp(1.3rem, 2vw, 1.8rem); background: #f4eedf; }
.ruben-profile__fact dt { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.4rem; color: var(--color-gold); font-size: .7rem; font-weight: 900; letter-spacing: .17em; line-height: 1.35; text-transform: uppercase; }
.ruben-profile__fact dt svg { flex: 0 0 auto; width: 2rem; height: 2rem; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ruben-profile__fact dd { max-width: 48ch; margin: 0; color: var(--color-green); font-family: var(--font-sans); font-size: clamp(.88rem, .95vw, 1rem); font-weight: 750; line-height: 1.4; }
.ruben-profile__fact dd span { color: var(--color-gold); }
.ruben-profile__fact .ruben-profile__languages { display: flex; flex-wrap: wrap; max-width: none; gap: 1rem 1.5rem; }
.ruben-profile__fact .ruben-profile__language { display: inline-flex; align-items: center; gap: .65rem; color: var(--color-green); white-space: nowrap; }
.ruben-profile__language img { width: 2.5rem; height: 2.5rem; object-fit: cover; border: 1px solid rgba(11,62,19,.12); border-radius: 50%; box-shadow: 0 3px 9px rgba(11,62,19,.12); }
.ruben-profile__professional-heading { margin: clamp(3.5rem, 7vw, 6rem) 0 1.5rem; }
.ruben-profile__professional-heading h3 { margin: 0; color: var(--color-green); font-family: var(--font-sans); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 900; letter-spacing: -.025em; text-transform: uppercase; }
.ruben-profile__facts-list--professional { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ruben-profile__fact--detail { min-height: 0; }
.ruben-profile__fact--detail dd { max-width: none; }
.ruben-profile__fact--detail ul { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.ruben-profile__fact--detail li { position: relative; padding-left: 1.15rem; font: inherit; line-height: inherit; }
.ruben-profile__fact--detail li::before { content: ""; position: absolute; top: .62em; left: 0; width: .38rem; height: .38rem; border-radius: 50%; background: var(--color-gold); }
.ruben-profile__fact--specialization,
.ruben-profile__fact--languages { min-height: 0; }
.ruben-profile__fact .ruben-profile__specialties { display: flex; flex-wrap: wrap; max-width: none; gap: .7rem; }
.ruben-profile__fact .ruben-profile__specialties span { display: inline-flex; align-items: center; min-height: 2.2rem; padding: .4rem .8rem; border: 1px solid rgba(11,62,19,.2); border-radius: 999px; color: var(--color-green); font: inherit; line-height: 1.2; }
.ruben-profile__history { position: relative; z-index: 2; overflow: hidden; padding: clamp(6rem, 12vw, 11rem) 0; background: #082f0e; }
.ruben-profile__history-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.ruben-profile__history-child-photo {
	order: 2;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border: 2px solid rgba(206,184,135,.9);
	background: var(--color-green);
	box-shadow: 0 18px 32px rgba(0,0,0,.34);
}
.ruben-profile__history-child-photo img {
	display: block;
	width: 100%;
	height: auto;
}
.ruben-profile__history-copy { order: 1; }
.ruben-profile__history-kicker { display: block; margin-bottom: 1.5rem; color: var(--color-gold-soft); font-size: .7rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.ruben-profile__history-copy h2 { margin: 0 0 clamp(2rem, 4vw, 3.5rem); }
.ruben-profile__facts-heading h2.title-fill-loop,
.ruben-profile__history-copy h2.title-fill-loop { padding: .04em .13em .08em; color: var(--color-gold-soft); font-family: var(--font-sans); font-size: clamp(2.55rem, 6.8vw, 5.9rem); font-weight: 900; line-height: .96; text-transform: uppercase; }
.ruben-profile__facts-heading h2.title-fill-loop { padding: .02em .12em .06em; color: #f4eedf; border-radius: 3px; }
.ruben-profile__facts-heading h2.title-fill-loop::before { background: var(--color-green); }
.ruben-profile__facts-heading h2.title-fill-loop::after { display: none; }
.ruben-profile__history-copy p { max-width: 42rem; margin: 0 0 1.4rem; color: rgba(246,241,231,.72); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.75; }
.ruben-profile__history-copy .lead { color: var(--color-cream); font-family: var(--font-serif); font-size: clamp(1.35rem, 2vw, 1.9rem); font-weight: 700; line-height: 1.4; }
.ruben-profile__history-more { grid-column: 1 / -1; order: 3; width: 100%; max-width: none; margin-top: .75rem; }
.ruben-profile__history-more summary {
	display: flex;
	align-items: center;
	gap: .65rem;
	width: max-content;
	padding: .7rem 1rem;
	border: 1px solid rgba(206,184,135,.6);
	border-radius: 999px;
	color: var(--color-gold-soft);
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
	cursor: pointer;
	list-style: none;
	transition: color .25s ease, background .25s ease;
	margin-inline: auto;
}
.ruben-profile__history-more summary::-webkit-details-marker { display: none; }
.ruben-profile__history-more summary:hover { color: var(--color-green); background: var(--color-gold-soft); }
.ruben-profile__history-more summary:focus-visible { outline: 2px solid var(--color-cream); outline-offset: 4px; }
.ruben-profile__history-more summary svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .3s ease; }
.ruben-profile__history-more-label--open { display: none; }
.ruben-profile__history-more[open] .ruben-profile__history-more-label--closed { display: none; }
.ruben-profile__history-more[open] .ruben-profile__history-more-label--open { display: inline; }
.ruben-profile__history-more[open] summary svg { transform: rotate(180deg); }
.ruben-profile__history-more-content {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
	margin-top: 1.5rem;
}
.ruben-profile__history-training {
	margin: 0;
	overflow: hidden;
	border: 2px solid rgba(206,184,135,.9);
	background: var(--color-green);
	box-shadow: 0 16px 32px rgba(0,0,0,.28);
}
.ruben-profile__history-training img { display: block; width: 100%; height: auto; }
.ruben-profile__history-more-copy p { margin: 0 0 1.25rem; color: rgba(246,241,231,.76); font-size: clamp(.95rem, 1.2vw, 1.1rem); line-height: 1.72; }
.ruben-profile__history-more-copy p:last-child { margin-bottom: 0; }
.ruben-profile__quote-section { position: relative; z-index: 2; overflow: hidden; padding: clamp(5rem, 9vw, 8rem) 0; background-color: #f4eedf; background-image: radial-gradient(rgba(11,62,19,.14) 1.2px, transparent 1.8px), radial-gradient(circle at 12% 20%, rgba(206,184,135,.24), transparent 28rem); background-size: 24px 24px, auto; }
.ruben-profile__quote { position: relative; display: flex; align-items: flex-start; gap: clamp(2rem, 6vw, 6rem); max-width: 74rem; margin: 0 auto; padding-top: clamp(2.5rem, 4vw, 3.5rem); color: var(--color-green); text-align: left; }
.ruben-profile__quote::before { content: ""; position: absolute; top: 0; left: clamp(7rem, 15vw, 12rem); width: 3.5rem; height: 2px; background: var(--color-gold); }
.ruben-profile__quote-mark { flex: 0 0 clamp(7rem, 15vw, 12rem); margin-top: -.08em; color: var(--color-gold); font-family: Georgia, var(--font-serif); font-size: clamp(10rem, 16vw, 15rem); font-weight: 700; line-height: .68; text-align: center; text-shadow: 0 8px 24px rgba(11,62,19,.12); pointer-events: none; }
.ruben-profile__quote-content { flex: 1 1 auto; min-width: 0; }
.ruben-profile__quote p { max-width: 38ch; margin: 0; font-family: var(--font-serif); font-size: clamp(1.65rem, 2.65vw, 2.8rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.2; }
.ruben-profile__quote footer { margin-top: clamp(2rem, 4vw, 3rem); font-size: .68rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.ruben-contact-dock { --ruben-scroll-progress: 0%; position: fixed; z-index: 90; right: 1.5rem; bottom: 1.5rem; left: 1.5rem; max-width: 940px; margin-inline: auto; overflow: hidden; padding: 4px; border: 1px solid rgba(206,184,135,.5); border-radius: 999px; background: rgba(5,38,12,.94); box-shadow: 0 18px 55px rgba(0,0,0,.34); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; transform: translateY(calc(100% + 3rem)); transition: opacity .35s ease, visibility .35s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.ruben-contact-dock.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ruben-contact-dock__progress { position: absolute; z-index: 2; top: 0; left: 0; width: var(--ruben-scroll-progress); height: 3px; background: var(--color-gold-soft); transition: width .08s linear; }
.ruben-contact-dock__inner { display: grid; grid-template-columns: auto repeat(3, minmax(0, 1fr)); gap: 4px; align-items: center; }
.ruben-contact-dock__label { padding-inline: 1.25rem; color: var(--color-gold-soft); font-size: .64rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
.ruben-contact-dock__action { display: flex; justify-content: center; align-items: center; gap: .7rem; min-height: 52px; padding: .7rem 1.1rem; border-radius: 999px; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-align: center; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .25s ease; }
.ruben-contact-dock__action svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ruben-contact-dock__action--whatsapp { color: var(--color-cream); border: 1px solid rgba(246,241,231,.24); }
.ruben-contact-dock__action--instagram { color: var(--color-green); background: var(--color-gold-soft); }
.ruben-contact-dock__action--linkedin { color: var(--color-cream); border: 1px solid rgba(246,241,231,.24); }
.ruben-contact-dock__action:hover { transform: translateY(-1px); }
.page-template-page-ruben .wa-float { display: none; }
.ruben-profile__editorial {
	position: relative;
	background: #061b0a;
}
.ruben-profile__video-stage {
	position: sticky;
	z-index: 0;
	top: 0;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
}
.ruben-profile__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .82;
	filter: grayscale(.72) contrast(1.08) brightness(.72) sepia(.18) hue-rotate(72deg) saturate(1.35);
}
.ruben-profile__video-shade {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 72% 24%, rgba(44,112,54,.32), transparent 35rem),
		linear-gradient(90deg, rgba(4,43,11,.82), rgba(8,62,18,.38) 55%, rgba(3,31,8,.68)),
		linear-gradient(180deg, rgba(5,48,12,.34), rgba(5,40,10,.2) 48%, rgba(3,27,7,.78));
	box-shadow: inset 0 0 12rem rgba(2,24,6,.58);
}
.ruben-profile__story {
	position: relative;
	z-index: 2;
	margin-top: -100vh;
	margin-top: -100svh;
	padding-top: clamp(6rem, 14vh, 10rem);
	padding-bottom: clamp(7rem, 16vh, 12rem);
}
.ruben-profile__chapter { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
.ruben-profile__story .ruben-profile__chapter h2 { color: var(--color-cream); text-shadow: 0 4px 30px rgba(0,0,0,.3); }
.ruben-profile__story .ruben-profile__chapter p,
.ruben-profile__story .ruben-profile__chapter .lead { color: rgba(246,241,231,.86); }
.ruben-profile__story .ruben-profile__number { color: var(--color-gold-soft); }
.ruben-profile__statement { margin-block: clamp(3rem, 10vh, 8rem) clamp(7rem, 16vh, 12rem); }
.ruben-profile__story .ruben-profile__statement { color: var(--color-cream); }
.ruben-profile__story .ruben-profile__actions .btn--outline { color: var(--color-cream); border-color: rgba(246,241,231,.65); }
.ruben-hero {
	min-height: 92vh;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: stretch;
}
.ruben-hero__media { position: relative; overflow: hidden; }
.ruben-hero__media img,
.ruben-hero__media .media__placeholder { width: 100%; height: 100%; object-fit: cover; }
.ruben-hero__body {
	background: var(--color-dark);
	color: var(--color-cream);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2.5rem, 6vw, 6rem);
}
.ruben-hero__name { font-size: var(--fs-display); color: var(--color-cream); margin-bottom: 0.4rem; }
.ruben-hero__role { color: var(--color-gold-soft); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.ruben-hero__quote { font-family: var(--font-serif); font-size: var(--fs-lead); font-style: italic; margin-bottom: 2rem; }

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.value-card {
	padding: clamp(1.5rem, 3vw, 2.2rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-white);
	transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--color-gold-soft); }
.value-card__title { font-size: var(--fs-h3); margin-bottom: 0.6rem; }

.credentials { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.credential {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1.1rem 1.3rem;
	border: 1px solid var(--color-line-light);
	border-radius: var(--radius-lg);
}
.credential__mark {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--color-gold-soft); flex: none;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.testimonial {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}
.testimonial__quote { font-family: var(--font-serif); font-size: var(--fs-lead); line-height: 1.3; font-style: italic; }
.testimonial__author { margin-top: 1.5rem; color: var(--color-muted); letter-spacing: 0.05em; }

/* Pagination */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: var(--space-lg); flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.5rem;
	border: 1px solid var(--color-line);
	border-radius: 100px;
	font-size: 0.9rem;
}
.pagination .page-numbers.current { background: var(--color-green); color: var(--color-cream); border-color: var(--color-green); }

/* 20. Animation utilities (reveal)
   ------------------------------------------------------------------------ */
[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
	will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal-img] {
	clip-path: inset(0 0 100% 0);
	transition: clip-path 1s var(--ease);
}
[data-reveal-img].is-in { clip-path: inset(0 0 0 0); }

/* Stagger children */
[data-stagger] > * {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-stagger].is-in > * { opacity: 1; transform: none; }

/* Counter */
.counter { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--color-gold-soft); line-height: 1; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	[data-reveal], [data-stagger] > * { opacity: 1; transform: none; }
	[data-reveal-img] { clip-path: none; }
	.custom-cursor { display: none !important; }
}

/* Experimental CTA design: uppercase link with a fine underline.
   Previous pill styles: assets/css/button-styles-backup.css */
.btn,
.hero__cta,
.service-card__cta,
.site-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.55rem;
	width: max-content;
	min-height: 0;
	padding: 0 0 0.55rem;
	border: 0;
	border-bottom: 1px solid currentColor;
	border-radius: 0;
	background: transparent !important;
	font-family: var(--font-sans);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
	transform: none;
}
.btn--primary { color: var(--color-green); }
.btn--gold,
.hero__cta,
.service-card__cta,
.site-footer__cta { color: #C9BA8B !important; }
.btn:hover,
.hero__cta:hover,
.service-card__cta:hover,
.site-footer__cta:hover {
	background: transparent !important;
	border-color: currentColor;
	opacity: 0.68;
	transform: none;
}
.hero__cta-arrow { width: 17px; height: 17px; }

/* 21. Social identity refresh
   ------------------------------------------------------------------------ */
body,
button,
input,
select,
textarea {
	font-family: var(--font-sans);
	letter-spacing: 0;
}

h1, h2, h3, h4,
.hero__headline,
.who-story__statement,
.who-cta h2,
.services-intro__lead h2,
.service-card__title,
.team-showcase__header h2,
.site-footer__statement > p,
.page-hero__title,
.ruben-hero__name,
.counter {
	font-family: var(--font-serif);
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

p,
.lead,
.service-card__desc,
.team-feature__intro,
.page-hero__lead,
.entry-content {
	font-weight: 400;
}

.site-header.is-scrolled,
.menu-overlay,
.section--green,
.section--dark,
.who-cta,
#services.section--green,
.team-showcase,
.site-footer {
	background-color: var(--color-green);
	background-image:
		radial-gradient(circle at 78% 12%, rgba(194, 173, 127, 0.16), transparent 28rem),
		radial-gradient(rgba(206, 184, 135, 0.09) 1px, transparent 1.6px),
		linear-gradient(135deg, #0B3E13 0%, #08250C 100%);
	background-size: auto, 24px 24px, auto;
}

.who-story {
	background-color: #F0E6D1;
	background-image: none;
	color: var(--color-gold-deep);
}

/* Services — gold (#CCBD89) gradient treatment instead of the green slab. */
#services.section--green {
	background-color: #CCBD89;
	background-image:
		radial-gradient(circle at 82% 10%, rgba(246, 241, 231, 0.30), transparent 26rem),
		linear-gradient(135deg, #DACC9A 0%, #CCBD89 48%, #A89B6C 100%);
	background-size: auto, auto;
	color: var(--color-green-deep);
}
/* Only the section-level intro sits on the gold field — darken it.
   The cards keep their dark-green slab, so their text stays cream and the
   "game." title keeps its original gold-letters / green-box treatment. */
#services .services-intro__eyebrow { color: #1B3F18; }
#services .services-intro__lead h2 { color: var(--color-green-deep); }
#services .services-carousel__arrow {
	background: #1B3F18;
	color: #F6F1E7;
}
#services .services-carousel__arrow:hover { background: #08250C; }

.section--cream,
.section--white,
.entry-content,
.post-card,
.value-card {
 background-image: linear-gradient(180deg, rgba(215, 197, 143, 0.12), rgba(255, 255, 255, 0));
}

.single-post .section--cream,
.single-post .entry-content {
 background-image: none;
}

.single-post__body {
 padding-block: calc(var(--space-section) / 2);
}

.single-post .entry-content h2 {
 color: #0b3e13;
}

.single-post .entry-content .wp-block-image {
 margin-block: clamp(2rem, 4vw, 3rem);
}

.single-post .entry-content .wp-block-image figcaption {
 margin: 0.18rem 0 0;
 color: var(--color-muted);
 font-size: 0.62rem;
 font-style: italic;
 line-height: 1.3;
 letter-spacing: 0.01em;
}

/* Selective editorial cards for the article duplicate; all other copy stays plain. */
.postid-49 .entry-content .article-highlight-card {
 margin-block: clamp(1.75rem, 3vw, 2.5rem);
 padding: clamp(1.25rem, 2.5vw, 1.8rem);
 border: 1px solid rgba(11, 62, 19, 0.16);
 border-left: 4px solid var(--color-gold-deep);
 border-radius: 0 0.75rem 0.75rem 0;
 background: rgba(255, 255, 255, 0.72);
 box-shadow: 0 12px 28px rgba(8, 37, 12, 0.07);
}
.postid-49 .entry-content .article-highlight-card p {
 margin: 0;
}
.postid-49 .entry-content .article-highlight-card--data {
 border-left-color: #0b3e13;
 background: rgba(11, 62, 19, 0.055);
}
.postid-49 .entry-content .article-data-stats {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 0.8rem;
 margin-bottom: 1.25rem;
}
.postid-49 .entry-content .article-data-stat {
 padding: 1rem 1.1rem;
 border: 1px solid rgba(11, 62, 19, 0.12);
 border-radius: 0.65rem;
 background: rgba(255, 255, 255, 0.82);
}
.postid-49 .entry-content .article-data-stat strong {
 display: block;
 color: #0b3e13;
 font-size: clamp(1.85rem, 4.5vw, 3rem);
 font-weight: 900;
 letter-spacing: -0.045em;
 line-height: 0.95;
}
.postid-49 .entry-content .article-data-stat small {
 display: block;
 margin-top: 0.5rem;
 color: var(--color-muted);
 font-size: 0.66rem;
 font-weight: 800;
 letter-spacing: 0.07em;
 line-height: 1.35;
 text-transform: uppercase;
}
.postid-49 .entry-content .article-highlight-card--brazil {
 border-left-color: #0b3e13;
}
.postid-49 .entry-content .article-brazil-stats {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 1rem;
 margin-bottom: 1.35rem;
}
.postid-49 .entry-content .article-brazil-stat {
 position: relative;
 overflow: hidden;
 padding: 1rem 1.15rem;
 border-radius: 0.7rem;
 background: #0b3e13;
 color: var(--color-cream);
}
.postid-49 .entry-content .article-brazil-stat::after {
 content: "";
 position: absolute;
 right: -1.5rem;
 bottom: -2.5rem;
 width: 7rem;
 height: 7rem;
 border: 1px solid rgba(201, 186, 139, 0.24);
 border-radius: 50%;
}
.postid-49 .entry-content .article-brazil-stat strong {
 position: relative;
 z-index: 1;
 display: block;
 color: var(--color-gold-soft);
 font-size: clamp(2.1rem, 5vw, 3.5rem);
 font-weight: 900;
 letter-spacing: -0.05em;
 line-height: 0.95;
}
.postid-49 .entry-content .article-brazil-stat small {
 position: relative;
 z-index: 1;
 display: block;
 margin-top: 0.5rem;
 color: rgba(246, 241, 231, 0.72);
 font-size: 0.68rem;
 font-weight: 700;
 letter-spacing: 0.08em;
 line-height: 1.35;
 text-transform: uppercase;
}
@media (max-width: 520px) {
 .postid-49 .entry-content .article-data-stats,
 .postid-49 .entry-content .article-brazil-stats {
  grid-template-columns: 1fr;
 }
}
.postid-49 .entry-content .article-stat {
 color: #0b3e13;
 font-weight: 900;
}
.postid-49 .entry-content .article-country {
 font-weight: 900;
}
.postid-49 .entry-content .article-opportunity-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 0.75rem;
 margin: clamp(1.75rem, 3vw, 2.5rem) 0 1.35rem;
}
.postid-49 .entry-content .article-opportunity-card {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 min-height: 5rem;
 padding: 0.85rem 0.95rem;
 border: 1px solid rgba(11, 62, 19, 0.14);
 border-radius: 0.7rem;
 background: rgba(255, 255, 255, 0.78);
 box-shadow: 0 9px 22px rgba(8, 37, 12, 0.055);
}
.postid-49 .entry-content .article-opportunity-icon {
 display: grid;
 place-items: center;
 flex: 0 0 2.5rem;
 width: 2.5rem;
 height: 2.5rem;
 border-radius: 50%;
 background: rgba(11, 62, 19, 0.08);
 color: #0b3e13;
}
.postid-49 .entry-content .article-opportunity-icon svg {
 width: 1.25rem;
 height: 1.25rem;
 fill: none;
 stroke: currentColor;
 stroke-width: 1.7;
 stroke-linecap: round;
 stroke-linejoin: round;
}
.postid-49 .entry-content .article-opportunity-card span:last-child {
 color: #0b3e13;
 font-size: 0.73rem;
 font-weight: 850;
 letter-spacing: 0.04em;
 line-height: 1.25;
 text-transform: uppercase;
}
@media (max-width: 680px) {
 .postid-49 .entry-content .article-opportunity-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}
@media (max-width: 420px) {
 .postid-49 .entry-content .article-opportunity-grid {
  grid-template-columns: 1fr;
 }
}

.hero__overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.hero__headline {
	font-size: var(--fs-hero);
	line-height: 0.96;
	font-weight: 900;
	text-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.hero__headline-line {
	width: max-content;
	max-width: 100%;
	margin-inline: auto;
}

.hero__headline .word--fill-loop,
.title-fill-loop {
	position: relative;
	z-index: 0;
	display: inline-block;
	/* `clip` keeps the natural baseline; `hidden` would shift the word
	   vertically against plain text (visible at the preloader hand-off). */
	overflow: hidden;
	overflow: clip;
	color: var(--color-gold-soft);
	text-shadow: none;
}

.hero__headline .word--fill-loop::before,
.hero__headline .word--fill-loop::after,
.title-fill-loop::before,
.title-fill-loop::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 3px;
	pointer-events: none;
}

.hero__headline .word--fill-loop::before,
.title-fill-loop::before {
	background: linear-gradient(90deg, #062c16 0%, #0f5629 50%, #062c16 100%);
	transform-origin: left center;
	transform: none;
}

.hero__headline .word--fill-loop::after,
.title-fill-loop::after {
	background: linear-gradient(105deg, transparent 0%, rgba(215, 197, 143, 0.08) 28%, rgba(215, 197, 143, 0.36) 48%, rgba(244, 238, 223, 0.18) 56%, transparent 76%);
	transform: translateX(-120%);
	animation: heroWordSheen 3.8s var(--ease) infinite;
	mix-blend-mode: screen;
}

@keyframes heroWordFill {
	0%, 100% {
		transform: scaleX(0.96);
		opacity: 0.82;
	}
	45%, 62% {
		transform: scaleX(1.04);
		opacity: 1;
	}
}

@keyframes heroWordSheen {
	0%, 30% { transform: translateX(-120%); opacity: 0; }
	46% { opacity: 1; }
	68%, 100% { transform: translateX(120%); opacity: 0; }
}

.hero__flourish {
	width: clamp(210px, 26vw, 340px);
	height: 34px;
	margin-bottom: 2rem;
}

.hero__line {
	height: 3px;
	border-radius: 99px;
}

.hero__ball {
	width: 32px;
	height: 32px;
	margin-top: -16px;
}

.eyebrow,
.who-story__eyebrow,
.who-cta__eyebrow,
.services-intro__eyebrow,
.team-showcase__eyebrow,
.menu-overlay__eyebrow,
.post-card__cat,
.form__field label {
	font-family: var(--font-sans);
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-gold-soft);
}

.btn,
.hero__cta,
.service-card__cta,
.site-footer__cta {
	min-height: 56px;
	padding: 1rem 2rem;
	border: 1px solid currentColor;
	border-radius: 10px;
	background: rgba(215, 197, 143, 0.95) !important;
	color: var(--color-green-deep) !important;
	box-shadow: 0 12px 30px rgba(3, 40, 20, 0.16);
	font-size: clamp(0.95rem, 1vw, 1.1rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), opacity 0.35s var(--ease);
}

.btn--outline,
.hero__cta--outline {
	background: rgba(244, 238, 223, 0.08) !important;
	color: var(--color-cream) !important;
	border-color: rgba(244, 238, 223, 0.62);
}

.btn:hover,
.hero__cta:hover,
.service-card__cta:hover,
.site-footer__cta:hover {
	transform: translateY(-2px);
	opacity: 1;
	background: var(--color-cream) !important;
	color: var(--color-green-deep) !important;
	border-color: var(--color-cream);
}

.site-nav__list a,
.site-footer__nav a,
.menu-overlay__list a,
.site-footer__column > a,
.site-footer__column > p,
.site-footer__social a {
	font-family: var(--font-sans);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-nav__list a {
	font-weight: 500;
	letter-spacing: 0.05em;
}

.menu-overlay__list a {
	font-size: var(--fs-h2);
	line-height: 1;
}

.menu-overlay__about > p:first-of-type,
.site-footer__column h2,
.entry-content blockquote {
	font-family: var(--font-sans);
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	font-size: var(--fs-lead);
	line-height: 1.28;
}

.who-story__sticky,
#services.section--green,
.team-showcase,
.site-footer {
	position: relative;
}

.who-story__sticky::before,
#services.section--green::before,
.team-showcase::before,
.site-footer::before {
	content: none;
}

.who-story__sticky::before {
	content: none;
}

.who-story__layout,
#services > .container,
.team-showcase__container,
.site-footer__container {
	position: relative;
	z-index: 1;
}

.who-story__statement {
	font-size: var(--fs-h2);
	line-height: 1.12;
	color: var(--color-green-deep);
}

.services-intro__grid > p,
.team-feature__intro,
.site-footer__column > a,
.site-footer__column > p {
	color: rgba(244, 238, 223, 0.82);
}

.who-story__eyebrow,
.who-story__detail > p {
	color: rgba(8, 37, 12, 0.78);
}

.who-story .scroll-word {
	color: rgba(8, 37, 12, 0.18);
}

.who-cta__overlay {
	background:
		linear-gradient(180deg, #0B3E13 0%, rgba(11, 62, 19, 0.15) 28%, rgba(8, 37, 12, 0.45) 66%, #08250C 100%),
		linear-gradient(90deg, rgba(8, 37, 12, 0.12), rgba(8, 37, 12, 0.78));
}

.who-cta__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.who-cta__content > * {
	margin-left: 0;
	margin-right: 0;
}

/* Who We Are rebuild: continuous scrollytelling page */
.sfa-story {
	position: relative;
	overflow: clip;
	background: #061B09;
	color: var(--color-cream);
}

.sfa-story__eyebrow {
	margin: 0 0 clamp(0.9rem, 1.6vw, 1.35rem);
	color: var(--color-gold-soft);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sfa-story-hero,
.sfa-story-panel {
	position: relative;
	min-height: 175svh;
	--story-media-y: 0px;
	--story-media-scale: 1.04;
	--story-fade: 0;
}

.sfa-story-hero {
	min-height: 190svh;
	background: #061B09;
}

.sfa-story-hero__media,
.sfa-story-panel__backdrop {
	position: sticky;
	top: 0;
	min-height: 100svh;
	background-image:
		linear-gradient(180deg, rgba(6, 27, 9, 0.38) 0%, rgba(6, 27, 9, 0.72) 58%, rgba(6, 27, 9, 0.96) 100%),
		var(--story-bg);
	background-position: center;
	background-size: cover;
	transform: translate3d(0, var(--story-media-y), 0) scale(var(--story-media-scale));
	transform-origin: center;
	will-change: transform;
}

.sfa-story-hero__content,
.sfa-story-panel__pin {
	position: sticky;
	top: 0;
	z-index: 2;
	min-height: 100svh;
	display: grid;
	align-items: center;
}

.sfa-story-hero__content {
	justify-items: center;
	margin-top: -100svh;
	text-align: center;
}

.sfa-story-hero h1,
.sfa-story-panel h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sfa-story-hero h1 {
	max-width: 13ch;
	color: var(--color-cream);
	font-size: clamp(2.6rem, 7vw, 7rem);
	line-height: 0.92;
	text-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.sfa-story-hero__lead {
	max-width: 55ch;
	margin: clamp(1.4rem, 2.5vw, 2rem) auto 0;
	color: rgba(246, 241, 231, 0.86);
	font-size: clamp(1.05rem, 1.55vw, 1.4rem);
	line-height: 1.5;
}

.sfa-story-hero__markers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.7rem;
	margin: clamp(1.5rem, 2.7vw, 2.4rem) 0 0;
	padding: 0;
	list-style: none;
}

.sfa-story-hero__markers li {
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(215, 197, 143, 0.4);
	border-radius: 8px;
	background: rgba(6, 27, 9, 0.42);
	backdrop-filter: blur(12px);
	color: rgba(246, 241, 231, 0.9);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sfa-story-panel__pin {
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
	gap: clamp(2rem, 6vw, 6rem);
}

.sfa-story-panel__pin--flip {
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.9fr);
}

.sfa-story-panel__pin--center {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
}

.sfa-story-panel--cream {
	background:
		linear-gradient(120deg, #F7F0E2 0%, #EFE4CE 58%, #D5C18A 100%);
	color: var(--color-green-deep);
}

.sfa-story-panel--green {
	background:
		linear-gradient(135deg, #061B09 0%, #0B3E13 54%, #061B09 100%);
	color: var(--color-cream);
}

.sfa-story-panel--image,
.sfa-story-panel--closing {
	background: #061B09;
	color: var(--color-cream);
}

.sfa-story-panel__backdrop {
	background-image:
		linear-gradient(90deg, rgba(6, 27, 9, 0.94) 0%, rgba(6, 27, 9, 0.54) 48%, rgba(6, 27, 9, 0.86) 100%),
		linear-gradient(180deg, rgba(6, 27, 9, 0.18), rgba(6, 27, 9, 0.78)),
		var(--story-bg);
}

.sfa-story-panel--closing .sfa-story-panel__backdrop {
	background-image:
		linear-gradient(180deg, rgba(6, 27, 9, 0.52) 0%, rgba(6, 27, 9, 0.9) 100%),
		var(--story-bg);
}

.sfa-story-panel__copy {
	max-width: 42rem;
}

.sfa-story-panel__copy h2,
.sfa-story-panel__statement h2 {
	max-width: 12ch;
	font-size: clamp(2.25rem, 5.4vw, 5.8rem);
	line-height: 0.94;
}

.sfa-story-panel__copy p,
.sfa-story-panel__statement p:not(.sfa-story__eyebrow) {
	max-width: 58ch;
	margin: clamp(1.2rem, 2vw, 1.7rem) 0 0;
	color: currentColor;
	opacity: 0.78;
	font-size: clamp(1.05rem, 1.35vw, 1.25rem);
	line-height: 1.58;
}

.sfa-story-panel--green .sfa-story-panel__copy p,
.sfa-story-panel--image .sfa-story-panel__statement p,
.sfa-story-panel--closing .sfa-story-panel__statement p {
	color: rgba(246, 241, 231, 0.82);
}

.sfa-story-panel__statement {
	max-width: min(980px, 92vw);
}

.sfa-story-panel__statement h2 {
	max-width: 15ch;
	margin-inline: auto;
}

.sfa-story-panel__image {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(215, 197, 143, 0.34);
	border-radius: 8px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
	transform: translate3d(0, var(--story-media-y), 0) scale(var(--story-media-scale));
	transform-origin: center;
	will-change: transform;
}

.sfa-story-panel__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sfa-story-panel__image--pinned {
	aspect-ratio: 4 / 5;
	align-self: center;
}

.sfa-story-panel__image--wide {
	aspect-ratio: 5 / 4;
}

.sfa-story-panel__image--stack {
	aspect-ratio: 4 / 5;
	transform: translate3d(0, var(--story-media-y), 0) scale(var(--story-media-scale)) rotate(2deg);
}

[data-sfa-reveal] {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.85s var(--ease),
		transform 0.85s var(--ease);
	will-change: opacity, transform;
}

[data-sfa-reveal].is-in {
	opacity: 1;
	transform: none;
}

.sfa-story-panel--closing .btn {
	margin-top: clamp(1.8rem, 3vw, 2.5rem);
}

/* Who We Are v2: centered scroll screens */
.sfa-scroll {
	background: #061B09;
	color: var(--color-cream);
	overflow: clip;
}

.sfa-scroll-hero,
.sfa-scroll-panel {
	position: relative;
	min-height: 180svh;
	--story-media-y: 0px;
	--story-media-scale: 1.04;
}

.sfa-scroll-hero {
	min-height: 190svh;
	background:
		linear-gradient(180deg, rgba(6, 27, 9, 0.35), rgba(6, 27, 9, 0.92)),
		url("../../../../uploads/hero-poster.webp") center / cover no-repeat,
		#061B09;
}

.sfa-scroll-hero__video,
.sfa-scroll-hero__overlay,
.sfa-scroll-panel__image-bg {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100svh;
	display: block;
}

.sfa-scroll-hero__video {
	position: sticky;
	z-index: 0;
	object-fit: cover;
	transform: translate3d(0, var(--story-media-y), 0) scale(var(--story-media-scale));
	filter: saturate(0.9) contrast(1.06);
}

.sfa-scroll-hero__overlay {
	position: absolute;
	inset: 0;
	height: auto;
	min-height: auto;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(6, 27, 9, 0.28), rgba(6, 27, 9, 0.86)),
		linear-gradient(90deg, rgba(6, 27, 9, 0.86), rgba(6, 27, 9, 0.24), rgba(6, 27, 9, 0.86));
	pointer-events: none;
}

.sfa-scroll-hero__content,
.sfa-scroll-panel__center {
	position: sticky;
	top: 0;
	z-index: 2;
	min-height: 100svh;
	display: grid;
	align-content: center;
	justify-items: center;
	text-align: center;
}

.sfa-scroll-hero__content {
	margin-top: -100svh;
}

.sfa-scroll-cue {
	display: inline-grid;
	justify-items: center;
	gap: 0.75rem;
	margin-top: clamp(2rem, 4vw, 3.5rem);
	color: var(--color-gold-soft);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
}

.sfa-scroll-cue i {
	position: relative;
	display: block;
	width: 34px;
	height: 54px;
	border: 1px solid rgba(215, 197, 143, 0.62);
	border-radius: 999px;
}

.sfa-scroll-cue i::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 11px;
	width: 7px;
	height: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateX(-50%) rotate(45deg);
	animation: sfaScrollCue 1.55s var(--ease) infinite;
}

@keyframes sfaScrollCue {
	0% { opacity: 0; translate: 0 -5px; }
	35% { opacity: 1; }
	100% { opacity: 0; translate: 0 17px; }
}

.sfa-scroll h1,
.sfa-scroll h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.sfa-scroll h1 {
	max-width: 13ch;
	color: var(--color-cream);
	font-size: clamp(2.2rem, 5.4vw, 5.6rem);
	line-height: 0.94;
	text-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.sfa-scroll h2 {
	max-width: 13ch;
	font-size: clamp(2.25rem, 5.6vw, 6rem);
	line-height: 0.94;
}

.sfa-scroll__balanced-text {
	max-width: 26ch !important;
	font-family: var(--font-sans) !important;
	font-size: clamp(1.45rem, 2.7vw, 2.75rem) !important;
	font-weight: 700 !important;
	line-height: 1.12 !important;
	text-transform: none !important;
}

.sfa-scroll__balanced-text span {
	display: block;
	margin-top: 0.22em;
	font: inherit;
	color: inherit;
	line-height: inherit;
	text-transform: inherit;
}

.sfa-scroll-panel__center--sequence {
	overflow: hidden;
	padding-inline: clamp(1.25rem, 5vw, 4rem);
	position: sticky;
}

.sfa-scroll-sequence {
	position: relative;
	display: block;
	justify-items: center;
	width: min(100%, 1080px);
	min-height: clamp(300px, 32vw, 420px);
}

.sfa-scroll-sequence__line {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: min(26ch, 92vw) !important;
	width: max-content;
	text-align: center;
	transition:
		opacity 0.55s var(--ease),
		transform 0.55s var(--ease),
		filter 0.55s var(--ease);
}

.sfa-scroll-sequence__line--one {
	opacity: calc(1 - var(--story-second, 0));
	transform: translate(-50%, calc(-50% + (var(--story-second, 0) * -54px)));
	filter: blur(calc(var(--story-second, 0) * 3px));
}

.sfa-scroll-sequence__line--two {
	opacity: var(--story-second, 0);
	transform: translate(-50%, calc(-50% + ((1 - var(--story-second, 0)) * 54px)));
}

.sfa-scroll-sequence__progress {
	position: absolute;
	left: 50%;
	bottom: clamp(2.2rem, 6vh, 4.2rem);
	z-index: 3;
	display: flex;
	gap: 0.65rem;
	transform: translateX(-50%);
}

.sfa-scroll-sequence__progress::before,
.sfa-scroll-sequence__progress::after {
	content: none;
}

.sfa-scroll-sequence__progress span {
	display: block;
	width: clamp(42px, 6vw, 72px);
	height: 2px;
	border-radius: 999px;
	background: rgba(8, 37, 12, 0.24);
	overflow: hidden;
}

.sfa-scroll-sequence__progress span::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: var(--color-green-deep);
	transform-origin: left center;
	transform: scaleX(0);
}

.sfa-scroll-sequence__progress span:first-child::after {
	transform: scaleX(calc(1 - var(--story-second, 0)));
}

.sfa-scroll-sequence__progress span:last-child::after {
	transform: scaleX(var(--story-second, 0));
}

.sfa-scroll p {
	max-width: 62ch;
	margin: clamp(1.2rem, 2vw, 1.7rem) auto 0;
	font-size: clamp(1.04rem, 1.35vw, 1.28rem);
	line-height: 1.58;
}

.sfa-scroll__kicker {
	margin: 0 0 clamp(1rem, 1.8vw, 1.4rem) !important;
	font-size: 0.78rem !important;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sfa-scroll-panel--gold {
	background:
		radial-gradient(circle at 20% 18%, rgba(246, 241, 231, 0.24), transparent 22rem),
		linear-gradient(135deg, #DACC9A 0%, #CCBD89 52%, #A89B6C 100%);
	color: var(--color-green-deep);
}

#story-start {
	min-height: 230svh;
}

.sfa-scroll-panel--gold .sfa-scroll__kicker,
.sfa-scroll-panel--gold h2,
.sfa-scroll-panel--gold p {
	color: var(--color-green-deep);
}

.sfa-scroll-panel--green,
.sfa-scroll-panel--photos,
.sfa-scroll-panel--principles {
	background:
		radial-gradient(circle at 72% 18%, rgba(215, 197, 143, 0.16), transparent 24rem),
		linear-gradient(135deg, #061B09 0%, #0B3E13 54%, #061B09 100%);
	color: var(--color-cream);
}

.sfa-scroll-panel--green .sfa-scroll__kicker,
.sfa-scroll-panel--photos .sfa-scroll__kicker,
.sfa-scroll-panel--principles .sfa-scroll__kicker,
.sfa-scroll-panel--image .sfa-scroll__kicker {
	color: var(--color-gold-soft);
}

.sfa-scroll-panel--green h2,
.sfa-scroll-panel--photos h2,
.sfa-scroll-panel--principles h2,
.sfa-scroll-panel--image h2 {
	color: var(--color-cream);
}

.sfa-scroll-panel--green p,
.sfa-scroll-panel--principles p,
.sfa-scroll-panel--image p {
	color: rgba(246, 241, 231, 0.84);
}

.sfa-scroll-panel--green .title-fill-loop,
.sfa-scroll-hero .title-fill-loop,
.sfa-scroll-panel--photos .title-fill-loop,
.sfa-scroll-panel--principles .title-fill-loop,
.sfa-scroll-panel--image .title-fill-loop {
	color: var(--color-gold-soft);
}

.sfa-scroll-panel--principles {
	min-height: 240svh;
	background:
		radial-gradient(circle at 18% 22%, rgba(215, 197, 143, 0.2), transparent 22rem),
		radial-gradient(circle at 82% 78%, rgba(246, 241, 231, 0.1), transparent 24rem),
		linear-gradient(135deg, #061B09 0%, #0B3E13 52%, #061B09 100%);
}

.sfa-principles {
	position: sticky;
	top: 0;
	min-height: 100svh;
	display: grid;
	place-items: center;
	overflow: hidden;
	isolation: isolate;
}

.sfa-principles__background {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: grid;
	place-items: center;
	pointer-events: none;
}

.sfa-principles__word {
	position: absolute;
	color: rgba(215, 197, 143, 0.12);
	font-family: var(--font-serif);
	font-size: clamp(5.8rem, 19vw, 21rem);
	font-weight: 900;
	line-height: 0.78;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translate3d(0, calc((var(--story-second, 0) - 0.5) * -70px), 0) scale(1.04);
	transition: opacity 0.35s var(--ease), filter 0.35s var(--ease);
}

.sfa-principles__word--mission {
	opacity: calc(0.8 - (var(--story-second, 0) * 0.8));
	filter: blur(calc(var(--story-second, 0) * 5px));
}

.sfa-principles__word--vision {
	color: rgba(215, 197, 143, 0.14);
	opacity: calc(var(--story-second, 0) * 0.84);
	filter: blur(calc((1 - var(--story-second, 0)) * 5px));
}

.sfa-principles__content {
	position: relative;
	min-height: min(620px, 72svh);
	display: grid;
	place-items: center;
	text-align: center;
}

.sfa-principles__statement {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(880px, 88vw);
	transform: translate(-50%, -50%);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), filter 0.55s var(--ease);
}

.sfa-principles__lead {
	max-width: min(980px, 90vw) !important;
	margin: 0 auto !important;
	color: var(--color-cream) !important;
	font-family: var(--font-sans);
	font-size: clamp(1.5rem, 2.6vw, 2.7rem) !important;
	font-weight: 800;
	line-height: 1.25 !important;
	letter-spacing: 0;
	text-transform: none;
}

.sfa-principles__lead .title-fill-loop {
	display: inline-block;
	padding-inline: 0.08em;
	color: var(--color-gold-soft);
	line-height: 1;
	vertical-align: baseline;
}

.sfa-principles__lead .title-fill-loop::before {
	background: linear-gradient(90deg, #062C16 0%, #0B3E13 52%, #062C16 100%);
}

.sfa-principles__statement--mission {
	opacity: calc(1 - var(--story-second, 0));
	transform: translate(-50%, calc(-50% - (var(--story-second, 0) * 42px)));
	filter: blur(calc(var(--story-second, 0) * 3px));
}

.sfa-principles__statement--vision {
	opacity: var(--story-second, 0);
	transform: translate(-50%, calc(-50% + ((1 - var(--story-second, 0)) * 42px)));
	filter: blur(calc((1 - var(--story-second, 0)) * 3px));
}

.sfa-principles__progress {
	bottom: clamp(2rem, 6vh, 4rem);
}

.sfa-scroll-panel--image {
	background: #061B09;
	color: var(--color-cream);
}

.sfa-scroll-panel__image-bg {
	background-image:
		linear-gradient(180deg, rgba(6, 27, 9, 0.62), rgba(6, 27, 9, 0.9)),
		linear-gradient(90deg, rgba(6, 27, 9, 0.86), rgba(6, 27, 9, 0.22), rgba(6, 27, 9, 0.88)),
		var(--panel-image);
	background-size: cover;
	background-position: center;
	transform: translate3d(0, var(--story-media-y), 0) scale(var(--story-media-scale));
}

.sfa-scroll-panel--photos {
	min-height: 250svh;
	background:
		radial-gradient(circle at 50% 48%, rgba(215, 197, 143, 0.18), transparent 18rem),
		radial-gradient(circle at 16% 86%, rgba(246, 241, 231, 0.08), transparent 20rem),
		linear-gradient(135deg, #061B09 0%, #0B3E13 52%, #061B09 100%);
}

.sfa-photo-board {
	position: sticky;
	top: 0;
	z-index: 1;
	height: 100svh;
	pointer-events: none;
	overflow: hidden;
	isolation: isolate;
}

.sfa-photo-board__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.sfa-photo-board__bg-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	animation: sfa-photo-bg 21s linear infinite;
	will-change: opacity, transform;
}

.sfa-photo-board__bg-slide:nth-child(2) { animation-delay: 7s; }
.sfa-photo-board__bg-slide:nth-child(3) { animation-delay: 14s; }

.sfa-photo-board__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 27, 9, 0.86) 0%, rgba(11, 62, 19, 0.66) 50%, rgba(6, 27, 9, 0.88) 100%);
}

@keyframes sfa-photo-bg {
	0% { opacity: 0; transform: scale(1.02); }
	7% { opacity: 1; }
	33.33% { opacity: 1; }
	41% { opacity: 0; transform: scale(1.1); }
	100% { opacity: 0; transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
	.sfa-photo-board__bg-slide {
		animation: none;
	}
	.sfa-photo-board__bg-slide:first-child {
		opacity: 1;
	}
}

.sfa-photo-board::before,
.sfa-photo-board::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	width: min(62vw, 840px);
	height: min(62vw, 840px);
	border: 1px solid rgba(215, 197, 143, 0.16);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(var(--photo-orbit-scale, 0.92));
	opacity: calc(0.26 + (var(--photo-scene, 0) * 0.28));
}

.sfa-photo-board::after {
	width: min(42vw, 560px);
	height: min(42vw, 560px);
	border-color: rgba(246, 241, 231, 0.1);
	transform: translate(-50%, -50%) scale(calc(1.08 - (var(--photo-scene, 0) * 0.1)));
}

.sfa-photo-card {
	position: absolute;
	margin: 0;
	width: clamp(170px, 17vw, 300px);
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	box-shadow: 0 38px 85px rgba(0, 0, 0, 0.34);
	opacity: 0;
	transform:
		translate3d(var(--photo-x, 0px), calc(120px + var(--photo-y, 0px)), 0)
		rotate(var(--rot, 0deg))
		scale(0.88);
	transition:
		opacity 0.9s var(--ease),
		transform 0.9s var(--ease);
	will-change: opacity, transform;
}

.sfa-photo-card.is-in {
	opacity: 1;
	transform:
		translate3d(var(--photo-x, 0px), var(--photo-y, 0px), 0)
		rotate(var(--rot, 0deg))
		scale(1);
}

.sfa-photo-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
	filter: saturate(0.94) contrast(1.04);
}

.sfa-photo-card--1 { left: 8vw; top: 13vh; z-index: 3; width: clamp(215px, 21.5vw, 375px); --rot: -4deg; --depth: -42; transition-delay: 0.05s; }
.sfa-photo-card--2 { right: 9vw; top: 12vh; z-index: 2; width: clamp(195px, 19.5vw, 340px); --rot: 3deg; --depth: -28; transition-delay: 0.16s; }
.sfa-photo-card--3 { left: 39vw; top: 39vh; z-index: 4; width: clamp(225px, 23.5vw, 405px); --rot: 1deg; --depth: 22; transition-delay: 0.28s; }
.sfa-photo-card--4 { left: 13vw; bottom: 10vh; z-index: 5; width: clamp(195px, 19.5vw, 340px); --rot: 3deg; --depth: 44; transition-delay: 0.4s; }
.sfa-photo-card--5 { right: 13vw; bottom: 10vh; z-index: 1; width: clamp(215px, 21.5vw, 375px); --rot: -3deg; --depth: 52; transition-delay: 0.52s; }
.sfa-photo-card--6 { display: none; }

.sfa-scroll [data-sfa-reveal] {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.85s var(--ease),
		transform 0.85s var(--ease);
	will-change: opacity, transform;
}

.sfa-scroll [data-sfa-reveal].is-in {
	opacity: 1;
	transform: none;
}

/* Sequence override: keep the two story lines from overlapping visually. */
.sfa-scroll .sfa-scroll-sequence {
	width: min(100%, 960px);
	min-height: clamp(310px, 30vw, 420px);
	margin-inline: auto;
}

.sfa-scroll .sfa-scroll-sequence__line {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(980px, 88vw) !important;
	max-width: min(980px, 88vw) !important;
	margin: 0;
	color: var(--color-green-deep);
	font-family: var(--font-sans) !important;
	font-size: clamp(2rem, 4.1vw, 4.5rem) !important;
	font-weight: 700 !important;
	line-height: 1.18 !important;
	text-align: center;
	text-transform: none !important;
	white-space: normal;
	overflow-wrap: normal;
	word-break: normal;
}

.sfa-scroll .sfa-scroll-sequence__line .title-fill-loop {
	display: inline-block;
	padding-inline: 0.08em;
	color: var(--color-gold-soft);
	line-height: 1;
	vertical-align: baseline;
}

.sfa-scroll .sfa-scroll-sequence__line .title-fill-loop::before {
	background: linear-gradient(90deg, #062C16 0%, #0B3E13 52%, #062C16 100%);
}

.sfa-scroll .sfa-scroll-sequence__line--one {
	opacity: calc(1 - var(--story-second, 0)) !important;
	transform: translate(-50%, calc(-50% - (var(--story-second, 0) * 48px))) !important;
	filter: blur(calc(var(--story-second, 0) * 2px));
}

.sfa-scroll .sfa-scroll-sequence__line--two {
	opacity: var(--story-second, 0) !important;
	transform: translate(-50%, calc(-50% + ((1 - var(--story-second, 0)) * 48px))) !important;
	filter: blur(calc((1 - var(--story-second, 0)) * 2px));
}

.who-cta h2,
.services-intro__lead h2,
.team-showcase__header h2 {
	max-width: 12ch;
	font-size: var(--fs-h1);
	line-height: 1;
}

.services-intro {
	text-align: center;
}

.services-intro__eyebrow {
	margin-inline: auto;
}

.services-intro__grid {
	display: flex;
	justify-content: center;
	gap: 0;
}

.services-intro__lead h2 {
	margin-inline: auto;
}

.services-grid {
	gap: clamp(1.2rem, 2vw, 2rem);
}

.service-card {
	overflow: hidden;
	border: 1px solid rgba(215, 197, 143, 0.22);
	border-radius: 8px;
	background: rgba(244, 238, 223, 0.04);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.service-card:nth-child(1),
.service-card:nth-child(3) {
	margin-top: clamp(1.2rem, 2.4vw, 2.6rem);
}

.service-card__media {
	position: relative;
	border-radius: 0;
	background: var(--color-green-deep);
}

.service-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(3, 40, 20, 0.08), rgba(3, 40, 20, 0.7)),
		radial-gradient(circle at 24% 18%, rgba(215, 197, 143, 0.28), transparent 16rem);
	pointer-events: none;
}

.service-card--no-overlay .service-card__media::after {
	display: none;
}

.service-card__body {
	padding: clamp(1rem, 1.6vw, 1.35rem);
	background: rgba(3, 40, 20, 0.94);
}

.service-card__title {
	font-size: clamp(1.05rem, 1.5vw, 1.6rem);
	line-height: 1.08;
	color: var(--color-cream);
}

.service-card__desc {
	font-size: var(--fs-body);
	line-height: 1.45;
}

.services-carousel__arrow {
	background: var(--color-gold-soft);
	color: var(--color-green-deep);
	border: 2px solid rgba(244, 238, 223, 0.65);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.services-carousel__arrow:hover {
	background: var(--color-cream);
	color: var(--color-green-deep);
}

.post-card,
.value-card {
	border-radius: 8px;
	border-color: rgba(23, 27, 23, 0.12);
	box-shadow: 0 22px 60px rgba(23, 27, 23, 0.08);
}

.page-hero {
	background:
		radial-gradient(circle at 82% 20%, rgba(194, 173, 127, 0.16), transparent 28rem),
		linear-gradient(135deg, #0B3E13 0%, #08250C 100%);
}

.form__field input,
.form__field textarea {
	border-radius: 12px;
	background: #fff;
	font-weight: 500;
}

.who-cta .who-cta__content {
	width: 100%;
	max-width: min(1180px, calc(100vw - 2.5rem));
	margin-inline: auto;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.who-cta .who-cta__content > * {
	margin-left: auto;
	margin-right: auto;
}

.who-cta h2#who-cta-title {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	font-size: var(--fs-display);
	line-height: 0.94;
	text-align: center;
}

.who-cta h2#who-cta-title .title-fill-loop {
	display: inline-block;
}

.who-cta .btn {
	align-self: center;
}

.who-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.who-cta__btn-secondary {
	background: transparent;
	border-color: var(--color-gold-soft);
	color: var(--color-gold-soft);
}
.who-cta__btn-secondary:hover {
	background: var(--color-gold-soft);
	border-color: var(--color-gold-soft);
	color: var(--color-dark);
}

/* Larger primary CTAs: hero "Start the conversation" + who-cta "Discover who we are" */
.hero__cta,
.who-cta .btn {
	min-height: 58px;
	padding: 1rem 2.25rem;
	font-size: clamp(1rem, 1.12vw, 1.18rem);
}

/* Arrow on every .btn, matching the hero "Start the conversation" CTA.
   (.hero__cta already ships its own inline SVG arrow.) */
.btn::after {
	content: "";
	width: 1.05em;
	height: 1.05em;
	flex: none;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h15M13 6l6 6-6 6' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12h15M13 6l6 6-6 6' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform 0.35s var(--ease);
}
.btn:hover::after { transform: translateX(5px); }

.alliance__links .btn--external {
	background: var(--color-green) !important;
	color: var(--color-cream) !important;
	border-color: var(--color-green) !important;
	box-shadow: none;
}

.alliance__links .btn--external:hover {
	background: var(--color-gold-soft) !important;
	color: var(--color-green-deep) !important;
	border-color: var(--color-gold-soft) !important;
	opacity: 1;
}

.alliance__links .btn--external::after {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M10 7h7v7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M10 7h7v7' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.alliance__links .btn--external:hover::after {
	transform: translate(3px, -3px);
}

/* =========================================================================
   Services landing (banner hero + one editorial block per service)
   ========================================================================= */
.page-hero--services {
	min-height: min(620px, 74svh);
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(8, 37, 12, 0.94) 0%, rgba(8, 37, 12, 0.76) 45%, rgba(8, 37, 12, 0.38) 100%),
		linear-gradient(180deg, rgba(8, 37, 12, 0.5) 0%, rgba(8, 37, 12, 0.92) 100%),
		url("../../../../uploads/services-hero-bg.webp");
	background-position: center center;
	background-size: cover;
}
.page-hero--services .page-hero__content {
	text-align: center;
}
.page-hero--services .eyebrow {
	display: block;
	margin-bottom: 1.05rem;
	font-weight: 800;
	color: var(--color-gold-soft);
}
.page-hero--services .page-hero__title {
	max-width: 16ch;
	margin-inline: auto;
	font-family: var(--font-sans);
	font-size: clamp(2.7rem, 7vw, 6rem);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: 0;
	text-transform: uppercase;
}
.page-hero--services .page-hero__lead {
	max-width: 44ch;
	margin-top: 1.6rem;
	margin-inline: auto;
	font-size: clamp(1.1rem, 1.8vw, 1.55rem);
	line-height: 1.3;
	color: rgba(246, 241, 231, 0.86);
}
.page-hero--services .title-fill-loop { color: var(--color-gold-soft); }
.page-hero--services .title-fill-loop::before,
.page-hero--services .title-fill-loop::after { inset: 0; }
.page-hero--services .title-fill-loop::before {
	background: linear-gradient(90deg, #063F18 0%, #1B6B35 48%, #063F18 100%);
}

/* Contact reuses the services artwork, but needs a shorter introductory hero. */
.page-template-page-contact .page-hero--services,
.page-template-page-contact-php .page-hero--services {
	min-height: min(480px, 58svh);
	padding-top: calc(var(--header-h) + 2.5rem);
	padding-bottom: 2.5rem;
}

/* In-flow by default (inside the services hero); docks to the bottom of the
   viewport once the visitor scrolls past its home slot (see main.js). */
.services-anchor-nav {
	margin-top: clamp(1.75rem, 3.2vw, 2.75rem);
	pointer-events: none;
}
.services-anchor-nav.is-docked {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 15;
	margin-top: 0;
	padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
	animation: anchorNavDockIn 0.45s var(--ease) both;
}
@keyframes anchorNavDockIn {
	from { transform: translateY(110%); }
	to { transform: translateY(0); }
}
.services-anchor-nav__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.45rem;
	max-width: min(980px, calc(100vw - 2rem));
	padding: 0.45rem;
	background-color: #122F16;
	border: 1px solid rgba(23, 27, 23, 0.12);
	border-radius: 999px;
	box-shadow: 0 18px 50px rgba(8, 37, 12, 0.18);
	pointer-events: auto;
}
.services-anchor-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 46px;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(23, 27, 23, 0.11);
	border-radius: 999px;
	background: #FBF7EC;
	color: var(--color-green);
	font-size: clamp(0.62rem, 0.72vw, 0.74rem);
	font-weight: 500;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.services-anchor-nav a:hover {
	background: var(--gradient-green);
	border-color: transparent;
	color: var(--color-cream);
	transform: translateY(-1px);
}

.service-block {
	position: relative;
	padding-block: var(--space-section);
	overflow: hidden;
	scroll-margin-top: calc(var(--header-h) + 24px);
	isolation: isolate;
}
.page-template-page-services #get-started {
	padding-bottom: calc(var(--space-section) + 5.5rem);
}
.service-block--green {
	background:
		radial-gradient(circle at 12% 22%, rgba(206, 184, 135, 0.14), transparent 30rem),
		radial-gradient(circle at 88% 72%, rgba(246, 241, 231, 0.065), transparent 28rem),
		var(--gradient-green);
	color: var(--color-cream);
}
.service-block--cream {
	background:
		radial-gradient(circle at 16% 18%, rgba(206, 184, 135, 0.28), transparent 26rem),
		radial-gradient(circle at 86% 78%, rgba(11, 62, 19, 0.09), transparent 30rem),
		linear-gradient(135deg, #F7F0E2 0%, #ECE2CF 100%);
	color: var(--color-ink);
}
.service-block--green .eyebrow { color: var(--color-gold-soft); }
.service-block--cream .eyebrow { color: var(--color-green); }

.service-block__bg-icon {
	position: absolute;
	top: 50%;
	z-index: 0;
	width: clamp(18rem, 34vw, 34rem);
	aspect-ratio: 1;
	background-image: var(--service-bg-icon);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.03;
	pointer-events: none;
	filter: drop-shadow(0 22px 40px rgba(8, 37, 12, 0.12));
	animation: serviceBgIconDrift 8s var(--ease) infinite alternate;
}
.service-block--cream .service-block__bg-icon {
	opacity: 0.05;
	filter: invert(12%) sepia(51%) saturate(1050%) hue-rotate(82deg) brightness(70%) contrast(98%);
}
.service-block--green .service-block__bg-icon {
	opacity: 0.03;
}
/* Small service icon above each block title. */
.service-block__icon {
	display: block;
	width: clamp(48px, 5.5vw, 76px);
	margin-bottom: clamp(0.9rem, 1.6vw, 1.4rem);
}
.service-block__icon img {
	display: block;
	width: 100%;
	height: auto;
}
/* On cream blocks the icon is painted in the exact brand green via a mask
   (the img only reserves the box; the silhouette is filled with #0B3E13). */
.service-block--cream .service-block__icon {
	background-color: #0B3E13;
	-webkit-mask: var(--service-icon) center / contain no-repeat;
	mask: var(--service-icon) center / contain no-repeat;
}
.service-block--cream .service-block__icon img {
	visibility: hidden;
}
.service-block--icon-left .service-block__bg-icon {
	left: max(-9rem, -8vw);
	transform: translateY(-50%) rotate(-12deg);
}
.service-block--icon-right .service-block__bg-icon {
	right: max(-9rem, -8vw);
	transform: translateY(-50%) scaleX(-1) rotate(12deg);
}
@keyframes serviceBgIconDrift {
	from { translate: 0 -10px; }
	to { translate: 0 14px; }
}

.service-block__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
.service-block--reverse .service-block__media { order: 2; }

.service-block__media {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.22);
}
.service-block--image-landscape .service-block__media {
	aspect-ratio: 3 / 2;
}
.service-block__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 37, 12, 0) 32%, rgba(8, 37, 12, 0.62) 100%),
		linear-gradient(135deg, rgba(206, 184, 135, 0.16), transparent 45%);
	pointer-events: none;
}
.service-block--no-overlay .service-block__media::after {
	display: none;
}
.service-block__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.94) contrast(1.05);
	transition: transform 0.7s var(--ease), filter 0.4s ease;
}
.service-block:hover .service-block__media img {
	transform: scale(1.045);
	filter: saturate(1.02) contrast(1.08);
}
.service-block--image-landscape:hover .service-block__media img {
	transform: none;
}

.service-block__content { max-width: 56ch; }
.service-block__top {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}
.service-block__title {
	font-family: var(--font-sans);
	font-size: clamp(2rem, 4.5vw, 2.4rem);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: 0;
	text-transform: uppercase;
	margin: 0.4rem 0 1rem;
}
.service-block--green .service-block__title { color: var(--color-cream); }
.service-block--cream .service-block__title { color: var(--color-green); }
.service-block__title > span:not(.title-fill-loop) { display: inline; }
.service-block__title .title-fill-loop {
	display: inline-block;
	color: var(--color-green-deep);
}
.service-block--cream .service-block__title .title-fill-loop { color: var(--color-gold-soft); }
.service-block__title .title-fill-loop::before,
.service-block__title .title-fill-loop::after { inset: 0; }
.service-block__title .title-fill-loop::before {
	background: linear-gradient(90deg, #063F18 0%, #1B6B35 48%, #063F18 100%);
}
.service-block--green .service-block__title .title-fill-loop::before {
	background: var(--gradient-gold);
}
.service-block__lead {
	font-size: var(--fs-lead);
	opacity: 0.92;
	margin-bottom: 1.5rem;
	line-height: 1.55;
}
.service-block__list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}
.service-block__list li {
	position: relative;
	padding: 0.8rem 0 0.8rem 2rem;
	border-top: 1px solid currentColor;
	font-weight: 600;
	line-height: 1.35;
	opacity: 0.88;
}
.service-block--green .service-block__list li { border-color: rgba(246, 241, 231, 0.16); }
.service-block--cream .service-block__list li { border-color: rgba(23, 27, 23, 0.13); }
.service-block__list li:last-child {
	border-bottom: 1px solid currentColor;
}
.service-block--green .service-block__list li:last-child { border-color: rgba(246, 241, 231, 0.16); }
.service-block--cream .service-block__list li:last-child { border-color: rgba(23, 27, 23, 0.13); }
.service-block__list li::before {
	content: "";
	position: absolute;
	left: 0.1rem;
	top: 1.15rem;
	width: 0.76rem;
	height: 0.76rem;
	border-radius: 50%;
	background: var(--gradient-gold);
}
.service-block--cream .service-block__list li::before { background: var(--gradient-green); }
.service-block__outcome {
	position: relative;
	margin: 0 0 1.75rem;
	padding: 1rem 1.1rem 1rem 1.25rem;
	border-left: 3px solid var(--color-gold-soft);
	background: rgba(246, 241, 231, 0.08);
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.45;
}
.service-block--cream .service-block__outcome {
	border-left-color: var(--color-green);
	background: rgba(11, 62, 19, 0.06);
}

@media (max-width: 760px) {
	.service-block__inner { grid-template-columns: 1fr; }
	.service-block--reverse .service-block__media { order: 0; }
}

/* ================================================================
   RUBEN PROFILE — COMPLETE PERSONAL LANDING
   ================================================================ */
.ruben-profile { --ruben-anchor-h: 42px; }
.ruben-profile__anchor-nav {
	position: fixed;
	z-index: 990;
	top: 0;
	right: 0;
	left: 0;
	height: var(--ruben-anchor-h);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(calc(-100% - 2px));
	border-top: 1px solid rgba(246,241,231,.08);
	border-bottom: 1px solid rgba(206,184,135,.25);
	background: rgba(4,27,8,.9);
	box-shadow: 0 8px 24px rgba(4,27,8,.14);
	backdrop-filter: blur(14px) saturate(1.35);
	-webkit-backdrop-filter: blur(14px) saturate(1.35);
	transition: transform .45s var(--ease), opacity .3s ease, visibility 0s linear .45s;
}
body.admin-bar .ruben-profile__anchor-nav { top: 32px; }
.ruben-profile__anchor-nav.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition-delay: 0s;
}
.ruben-profile__anchor-nav-inner { display: grid; grid-template-columns: repeat(4, minmax(110px, 1fr)); width: min(100%, 720px); height: 100%; padding: 0; }
.ruben-profile__anchor-nav a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	padding: 0 1rem;
	border-left: 1px solid rgba(246,241,231,.08);
	color: rgba(246,241,231,.66);
	font-size: .59rem;
	font-weight: 850;
	letter-spacing: .1em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition: color .25s ease, background .25s ease;
}
.ruben-profile__anchor-nav a:last-child { border-right: 1px solid rgba(246,241,231,.08); }
.ruben-profile__anchor-nav a::after { content: ""; position: absolute; right: 22%; bottom: -1px; left: 22%; height: 2px; background: var(--color-gold-soft); transform: scaleX(0); transition: transform .35s var(--ease); }
.ruben-profile__anchor-nav a:hover,
.ruben-profile__anchor-nav a[aria-current="true"] { color: var(--color-cream); background: rgba(246,241,231,.055); }
.ruben-profile__anchor-nav a[aria-current="true"]::after { transform: scaleX(1); }
body.nav-open .ruben-profile__anchor-nav { opacity: 0; pointer-events: none; }
.ruben-profile__history,
.ruben-profile__value,
.ruben-profile__credentials,
.ruben-profile__support { scroll-margin-top: calc(var(--ruben-anchor-h) + 18px); }
.ruben-profile__hero {
	min-height: clamp(600px, 72svh, 760px);
	padding: clamp(6rem, 10vh, 7.5rem) 0 2.5rem;
}
.ruben-profile__hero-stage {
	display: grid;
	grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
	gap: clamp(2rem, 5vw, 5.5rem);
	align-items: center;
	width: 100%;
	max-width: var(--container);
	height: clamp(480px, 58svh, 620px);
}
.ruben-profile__hero-media {
	position: relative;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(206,184,135,.58);
	border-radius: 0;
	clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
	box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.ruben-profile__hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(4,27,8,.38));
	pointer-events: none;
}
.ruben-profile__hero-media picture { display: block; width: 100%; height: 100%; }
.ruben-profile__hero-photo {
	position: static;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 48%;
	filter: saturate(.9) contrast(1.03);
	transform: none;
}
.ruben-profile__hero-content { position: relative; z-index: 3; color: var(--color-cream); }
.ruben-profile__hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	margin-bottom: 1.1rem;
	color: var(--color-gold-soft);
	font-size: .67rem;
	font-weight: 900;
	letter-spacing: .19em;
	text-transform: uppercase;
}
.ruben-profile__hero-kicker::before { content: ""; width: 2.8rem; height: 1px; background: currentColor; }
.ruben-profile__hero-name {
	position: static;
	display: block;
	width: auto;
	margin: 0;
	color: var(--color-cream);
	font-family: var(--font-sans);
	font-size: clamp(3.6rem, 6.4vw, 7.2rem);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: .8;
	text-align: left;
	text-transform: uppercase;
	transform: none;
}
.ruben-profile__hero-name strong { display: block; margin-top: .08em; color: var(--color-cream); }
.ruben-profile__title-fill {
	width: max-content;
	padding: .025em .1em .085em;
	color: var(--color-green) !important;
	white-space: nowrap;
}
.ruben-profile__hero-name > .ruben-profile__title-fill {
	color: var(--color-green) !important;
	-webkit-text-stroke: 0 transparent;
	text-shadow: none;
}
.ruben-profile__title-fill.title-fill-loop::before { background: linear-gradient(90deg, #c8b27f 0%, #ead9a9 50%, #c8b27f 100%); }
.ruben-profile__hero-role {
	display: flex;
	align-items: center;
	gap: clamp(.45rem, 1vw, .8rem);
	max-width: 46rem;
	margin: 1.6rem 0 0;
	color: rgba(246,241,231,.8);
	font-size: clamp(.72rem, 1vw, .9rem);
	font-weight: 850;
	letter-spacing: .08em;
	line-height: 1.5;
	text-transform: uppercase;
}
.ruben-profile__hero-role span { flex: 0 0 auto; margin-inline: .15em; color: var(--color-gold-soft); font-size: 1.35rem; font-weight: 400; }
.ruben-profile__hero-credential { display: block; width: auto; min-width: 0; max-width: 100%; height: auto; object-fit: contain; }
.ruben-profile__hero-credential--fifa { width: clamp(10rem, 19vw, 14rem); }
.ruben-profile__hero-credential--ipso { width: clamp(3.15rem, 5.25vw, 3.9rem); }
.ruben-profile__hero-statement {
	max-width: 41rem;
	margin: clamp(1.2rem, 2.4vh, 1.8rem) 0 0;
	padding-left: 1.2rem;
	border-left: 2px solid var(--color-gold-soft);
	color: var(--color-cream);
	font-family: var(--font-serif);
	font-size: clamp(.95rem, 1.25vw, 1.25rem);
	font-style: italic;
	font-weight: 600;
	line-height: 1.45;
}
.ruben-profile__hero-statement[data-typewrite-cursor]::after {
	display: inline-block;
	width: 2px;
	height: .9em;
	margin-left: .15em;
	background: var(--color-gold-soft);
	content: "";
	vertical-align: -.06em;
	animation: ruben-type-caret .75s steps(1, end) infinite;
}
.ruben-profile__hero-scroll { display: none; }
@keyframes ruben-type-caret {
	50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.ruben-profile__hero-statement[data-typewrite-cursor]::after { display: none; }
}
.ruben-profile__hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 1.2rem;
	margin-top: clamp(1.5rem, 3vh, 2.2rem);
	padding: .8rem .9rem .8rem 1.25rem;
	border-radius: 999px;
	color: var(--color-green);
	background: var(--color-gold-soft);
	box-shadow: 0 14px 36px rgba(0,0,0,.2);
	transition: transform .25s ease, background .25s ease;
}
.ruben-profile__hero-cta:hover { background: var(--color-cream); transform: translateY(-2px); }
.ruben-profile__hero-cta > span { display: grid; gap: .12rem; }
.ruben-profile__hero-cta strong { font-size: .7rem; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; }
.ruben-profile__hero-cta small { font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.ruben-profile__hero-cta svg { width: 2.2rem; height: 2.2rem; padding: .45rem; border-radius: 50%; fill: none; stroke: currentColor; stroke-width: 1.55; }

.ruben-profile__history { padding: clamp(6rem, 10vw, 9rem) 0; background: var(--color-green); }
.ruben-profile__history-inner { grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); column-gap: clamp(3rem, 7vw, 7rem); row-gap: 0; }
.ruben-profile__history-copy h2 {
	max-width: 34ch;
	margin: 0 0 clamp(1.8rem, 3vw, 2.8rem);
	color: var(--color-cream);
	font-family: var(--font-sans);
	font-size: clamp(1.45rem, 2.2vw, 2.15rem);
	font-weight: 750;
	letter-spacing: -.025em;
	line-height: 1.25;
	text-transform: none;
}
.ruben-profile__history-kicker { margin-bottom: .8rem; color: var(--color-gold-soft); font-size: clamp(1.15rem, 1.7vw, 1.55rem); font-weight: 900; letter-spacing: .07em; line-height: 1.1; }
.ruben-profile__history-copy .lead { max-width: 34rem; }

.ruben-profile__section-heading { max-width: 74rem; margin-bottom: clamp(2.8rem, 6vw, 5rem); }
.ruben-profile__section-heading > span,
.ruben-profile__philosophy header > span {
	display: block;
	margin-bottom: .8rem;
	color: var(--color-gold);
	font-size: clamp(1.15rem, 1.7vw, 1.55rem);
	font-weight: 900;
	letter-spacing: .07em;
	line-height: 1.1;
	text-transform: uppercase;
}
.ruben-profile__section-heading h2,
.ruben-profile__philosophy h2 {
	max-width: 46ch;
	margin: 0;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(1.35rem, 2vw, 1.9rem);
	font-weight: 750;
	letter-spacing: -.025em;
	line-height: 1.3;
	text-transform: none;
}
.ruben-profile__section-heading--light h2 { color: var(--color-cream); }

.ruben-profile__value {
	position: relative;
	padding: clamp(6rem, 11vw, 10rem) 0;
	background-color: #f4eedf;
	background-image: radial-gradient(rgba(11,62,19,.14) 1.2px, transparent 1.7px);
	background-position: center top;
	background-size: 24px 24px;
}
.ruben-profile__value-photos { position: relative; display: grid; grid-template-columns: 1.14fr .86fr; gap: 1rem; height: clamp(280px, 29vw, 370px); margin-bottom: -4.5rem; }
.ruben-profile__value-photo { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(11,62,19,.22); background: var(--color-green); }
.ruben-profile__value-photo::before { content: ""; position: absolute; z-index: 2; inset: .8rem; border: 1px solid rgba(246,241,231,.22); pointer-events: none; }
.ruben-profile__value-photo::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(4,27,8,.04), rgba(4,27,8,.18) 50%, rgba(4,27,8,.82)); pointer-events: none; }
.ruben-profile__value-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: filter .6s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.ruben-profile__value-photo--stadium img { object-position: 50% 30%; }
.ruben-profile__value-photo--business img { object-position: 50% 25%; }
.ruben-profile__value-photo:hover img { filter: saturate(1.06) contrast(1.03); transform: scale(1.045); }
.ruben-profile__value-photo figcaption { position: absolute; z-index: 3; bottom: clamp(5.4rem, 7vw, 6.5rem); left: clamp(1.5rem, 3vw, 2.5rem); color: var(--color-cream); font-size: .6rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.ruben-profile__value-photo figcaption::before { content: ""; display: inline-block; width: 1.8rem; height: 1px; margin: 0 .65rem .2rem 0; background: var(--color-gold-soft); }
.ruben-profile__value-grid { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.ruben-profile__value-card { position: relative; min-height: 420px; padding: 0; background: transparent; perspective: 1400px; }
.ruben-profile__value-card::after { display: none; }
.ruben-profile__value-card-inner { position: relative; width: 100%; height: 100%; min-height: inherit; transform-style: preserve-3d; transition: transform .75s cubic-bezier(.22,1,.36,1); }
.ruben-profile__value-card.is-flipped .ruben-profile__value-card-inner { transform: rotateY(180deg); }
.ruben-profile__value-face { position: absolute; inset: 0; display: flex; flex-direction: column; padding: clamp(1.6rem, 2.8vw, 2.5rem); overflow: auto; border: 1px solid rgba(11,62,19,.2); background: var(--color-cream); backface-visibility: hidden; -webkit-backface-visibility: hidden; transition: border-color .3s ease, background .3s ease, box-shadow .35s ease; }
.ruben-profile__value-face--front { overflow: hidden; }
.ruben-profile__value-face--front::after { content: ""; position: absolute; right: 0; bottom: 0; width: 5rem; height: 5rem; border-right: 2px solid var(--color-gold); border-bottom: 2px solid var(--color-gold); opacity: .65; }
.ruben-profile__value-card:not(.is-flipped):hover .ruben-profile__value-face--front { border-color: rgba(206,184,135,.9); background: #fbf7ed; box-shadow: 0 26px 60px rgba(11,62,19,.12); }
.ruben-profile__value-face--back { color: var(--color-cream); background: var(--color-green); transform: rotateY(180deg); }
.ruben-profile__value-icon { align-self: flex-end; width: clamp(3.7rem, 5vw, 4.8rem); height: clamp(3.7rem, 5vw, 4.8rem); margin-bottom: clamp(2.6rem, 5vw, 4rem); fill: none; stroke: var(--color-gold); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; animation: rubenValueIconFloat 4.2s ease-in-out infinite alternate; }
.ruben-profile__value-card:nth-child(2) .ruben-profile__value-icon { animation-delay: -.9s; }
.ruben-profile__value-card:nth-child(3) .ruben-profile__value-icon { animation-delay: -1.8s; }
.ruben-profile__value-flow { position: absolute; top: clamp(1.2rem, 2.2vw, 1.8rem); left: clamp(1.2rem, 2.2vw, 1.8rem); display: grid; place-items: center; width: clamp(3.3rem, 4.5vw, 4rem); height: clamp(3.3rem, 4.5vw, 4rem); border: 1px solid rgba(11,62,19,.18); border-radius: 50%; color: var(--color-green); background: var(--color-gold-soft); box-shadow: 0 10px 24px rgba(11,62,19,.12); pointer-events: none; }
.ruben-profile__value-flow svg { width: 1.2rem; height: 1.2rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; animation: rubenValueArrowDiagonal 1.8s ease-in-out infinite; }
.ruben-profile__value-card:hover .ruben-profile__value-flow svg { animation-duration: .75s; }
@keyframes rubenValueIconFloat { from { transform: translateY(0) rotate(0); } to { transform: translateY(-7px) rotate(-2deg); } }
@keyframes rubenValueArrowDiagonal { 0%, 100% { opacity: .65; transform: translate(-2px, -2px); } 50% { opacity: 1; transform: translate(2px, 2px); } }
.ruben-profile__value-card h3 { margin: 0 0 .65rem; color: var(--color-green); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1; text-transform: uppercase; }
.ruben-profile__value-card h3,
.ruben-profile__credential-skill h3,
.ruben-profile__support-grid h3 {
	max-width: 100%;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}
.ruben-profile__value-card p { margin: 0 0 1.15rem; color: rgba(11,62,19,.76); font-size: .92rem; line-height: 1.65; }
.ruben-profile__value-card p:last-child { margin-bottom: 0; }
.ruben-profile__value-face--front > p { max-width: 28ch; }
.ruben-profile__value-face--back h3 { margin-top: 2.5rem; color: var(--color-gold-soft); }
.ruben-profile__value-face--back p { color: rgba(246,241,231,.78); }
.ruben-profile__value-toggle { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: auto; padding: 1.2rem 0 0; border: 0; border-top: 1px solid rgba(11,62,19,.2); color: var(--color-green); background: transparent; font-size: .64rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; }
.ruben-profile__value-toggle svg { width: 1.2rem; height: 1.2rem; fill: none; stroke: currentColor; stroke-width: 1.6; animation: rubenValueExploreArrow 1.8s ease-in-out infinite; transition: transform .25s ease; }
.ruben-profile__value-toggle:hover svg { animation-duration: .7s; transform: translateX(4px); }
@keyframes rubenValueExploreArrow { 0%, 100% { opacity: .58; transform: translateX(0); } 50% { opacity: 1; transform: translateX(5px); } }
.ruben-profile__value-back { position: absolute; top: 1.25rem; right: 1.25rem; display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border: 1px solid rgba(246,241,231,.28); border-radius: 50%; color: var(--color-cream); background: transparent; cursor: pointer; }
.ruben-profile__value-back svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.8; }
.ruben-profile__value-toggle:focus-visible,
.ruben-profile__value-back:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 4px; }

.ruben-profile__credentials { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4.5rem, 8vw, 6.5rem) 0; background: var(--color-green); }
.ruben-profile__credentials::before {
	content: "";
	position: absolute;
	z-index: -2;
	inset: -3%;
	background: url('/wp-content/uploads/ruben-credentials-stadium.webp') center 54% / cover no-repeat;
	filter: saturate(.78) contrast(1.08);
	transform: scale(1.03);
	animation: rubenCredentialsStadium 18s ease-in-out infinite alternate;
	pointer-events: none;
}
.ruben-profile__credentials::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(4,27,8,.82), rgba(4,27,8,.66) 46%, rgba(4,27,8,.9)),
		radial-gradient(circle at 50% 28%, rgba(206,184,135,.2), transparent 34rem),
		repeating-linear-gradient(90deg, rgba(246,241,231,.025) 0 1px, transparent 1px 64px);
	pointer-events: none;
}
@keyframes rubenCredentialsStadium { from { transform: scale(1.03) translate3d(-.5%, 0, 0); } to { transform: scale(1.09) translate3d(.5%, -1%, 0); } }
.ruben-profile__credentials .container { position: relative; z-index: 1; }
.ruben-profile__credentials .ruben-profile__section-heading { margin-bottom: clamp(2.4rem, 4vw, 3.5rem); }
.ruben-profile__credentials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ruben-profile__credential-skill {
	position: relative;
	padding: .25rem clamp(1.5rem, 3vw, 3rem);
	color: var(--color-cream);
}
.ruben-profile__credential-skill > summary { display: block; list-style: none; cursor: default; }
.ruben-profile__credential-skill > summary::-webkit-details-marker { display: none; }
.ruben-profile__credential-skill + .ruben-profile__credential-skill { border-left: 1px solid rgba(206,184,135,.38); }
.ruben-profile__credential-skill > summary > svg { width: 2.8rem; height: 2.8rem; margin-bottom: 1.25rem; fill: none; stroke: var(--color-gold-soft); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.ruben-profile__credential-skill:hover > summary > svg { transform: translateY(-3px) rotate(-4deg); }
.ruben-profile__credential-skill h3 { max-width: 15ch; margin: 0 0 1.35rem; color: var(--color-cream); font-size: clamp(1.05rem, 1.45vw, 1.45rem); line-height: 1.08; text-transform: uppercase; }
.ruben-profile__credential-chevron { display: none; }
.ruben-profile__credential-skill ul { display: grid; margin: 0; padding: 0; list-style: none; }
.ruben-profile__credential-skill li { position: relative; padding: .7rem 0 .7rem 1.2rem; border-top: 1px solid rgba(246,241,231,.16); color: rgba(246,241,231,.82); font-size: .8rem; font-weight: 700; line-height: 1.25; transition: color .25s ease, padding-left .3s var(--ease); }
.ruben-profile__credential-skill li::before { content: ""; position: absolute; top: 50%; left: 0; width: .38rem; height: .38rem; border-radius: 50%; background: var(--color-gold-soft); transform: translateY(-50%); }
.ruben-profile__credential-skill li:hover { padding-left: 1.45rem; color: var(--color-cream); }
.ruben-profile__credential-skill .ruben-profile__flag-list li { display: flex; align-items: center; gap: .65rem; padding-left: 0; }
.ruben-profile__credential-skill .ruben-profile__flag-list li::before { display: none; }
.ruben-profile__flag-list span { font-size: 1.15rem; line-height: 1; }
.ruben-profile__flag-list img { flex: 0 0 auto; width: 1.35rem; height: 1.35rem; border: 1px solid rgba(246,241,231,.28); border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,.18); }

.ruben-profile__support { position: relative; overflow: hidden; padding: clamp(6rem, 11vw, 9rem) 0; background: var(--color-cream); }
.ruben-profile__support::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 62%, rgba(206,184,135,.18), transparent 24rem),
		radial-gradient(rgba(11,62,19,.08) 1px, transparent 1.5px) 0 0 / 28px 28px;
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 90%, transparent);
	mask-image: linear-gradient(180deg, transparent, #000 16%, #000 90%, transparent);
	pointer-events: none;
}
.ruben-profile__support > .container { position: relative; }
.ruben-profile__support--players { background: var(--color-cream); }
.ruben-profile__support--coaches { color: var(--color-cream); background: var(--color-green); }
.ruben-profile__support-showcase { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 1rem; min-height: 620px; }
.ruben-profile__support-showcase--coach { grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr); }
.ruben-profile__support-showcase--coach .ruben-profile__support-visual { grid-column: 2; grid-row: 1; }
.ruben-profile__support-showcase--coach .ruben-profile__support-grid { grid-column: 1; grid-row: 1; }
.ruben-profile__support-visual { position: relative; min-height: 620px; margin: 0; overflow: hidden; border: 1px solid rgba(206,184,135,.56); background: var(--color-green); box-shadow: 0 24px 60px rgba(11,62,19,.16); }
.ruben-profile__support-visual::before { content: ""; position: absolute; z-index: 2; inset: 1rem; border: 1px solid rgba(246,241,231,.18); pointer-events: none; }
.ruben-profile__support-visual::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(4,27,8,.12) 58%, rgba(4,27,8,.94) 100%); pointer-events: none; }
.ruben-profile__support-visual img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; transition: transform .9s cubic-bezier(.22,1,.36,1), filter .6s ease; }
.ruben-profile__support-showcase--coach .ruben-profile__support-visual img { object-position: 52% center; }
.ruben-profile__support-visual:hover img { filter: saturate(1.06) contrast(1.03); transform: scale(1.035); }
.ruben-profile__support-visual figcaption { position: absolute; z-index: 3; right: clamp(1.6rem, 3vw, 2.7rem); bottom: clamp(1.6rem, 3vw, 2.7rem); left: clamp(1.6rem, 3vw, 2.7rem); color: var(--color-cream); }
.ruben-profile__support-visual figcaption span { display: flex; align-items: center; gap: .7rem; margin-bottom: .75rem; color: var(--color-gold-soft); font-size: .62rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.ruben-profile__support-visual figcaption span::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; }
.ruben-profile__support-visual figcaption strong { display: block; font-family: var(--font-serif); font-size: clamp(1.65rem, 2.6vw, 2.75rem); font-weight: 750; letter-spacing: -.035em; line-height: 1.02; }
.ruben-profile__support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(0, 1fr); gap: 1rem; }
.ruben-profile__support-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ruben-profile__support-panel[data-ruben-support-panel="coaches"] .ruben-profile__support-grid article:last-child { grid-column: 1 / -1; }
.ruben-profile__support-tabs { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 4px; width: min(100%, 440px); margin: 0 auto 2rem; padding: 4px; border: 1px solid rgba(11,62,19,.18); border-radius: 999px; background: #f4eedf; }
.ruben-profile__support-tabs button { display: flex; justify-content: center; align-items: center; gap: .7rem; min-height: 54px; padding: .7rem 1.25rem; border: 0; border-radius: 999px; color: rgba(11,62,19,.65); background: transparent; cursor: pointer; transition: color .3s ease, background .35s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, transform .3s ease; }
.ruben-profile__support-tabs button > svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s cubic-bezier(.22,1,.36,1); }
.ruben-profile__support-tabs button > span { font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ruben-profile__support-tabs button small { font-size: .58rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; opacity: .72; }
.ruben-profile__support-tabs button[aria-selected="true"] { color: var(--color-cream); background: var(--color-green); box-shadow: 0 8px 20px rgba(11,62,19,.16); transform: scale(1.01); }
.ruben-profile__support-tabs button[aria-selected="true"] > svg { transform: scale(1.14) rotate(-5deg); }
.ruben-profile__support-tabs button:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }
.ruben-profile__support-panel[hidden] { display: none; }
.ruben-profile__support-panel.is-entering { animation: rubenSupportPanelIn .55s cubic-bezier(.22,1,.36,1) both; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-visual { animation: rubenSupportVisualIn .8s cubic-bezier(.22,1,.36,1) backwards; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-visual img { animation: rubenSupportImageIn 1.1s cubic-bezier(.22,1,.36,1) backwards; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-visual figcaption { animation: rubenSupportCaptionIn .75s .3s cubic-bezier(.22,1,.36,1) backwards; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-grid article { animation: rubenSupportCardIn .65s cubic-bezier(.22,1,.36,1) backwards; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-grid article:nth-child(1) { animation-delay: .08s; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-grid article:nth-child(2) { animation-delay: .16s; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-grid article:nth-child(3) { animation-delay: .24s; }
.ruben-profile__support-panel.is-entering .ruben-profile__support-grid article:nth-child(4) { animation-delay: .32s; }
@keyframes rubenSupportPanelIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rubenSupportVisualIn { from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-24px); } to { opacity: 1; clip-path: inset(0); transform: none; } }
@keyframes rubenSupportImageIn { from { transform: scale(1.14); filter: saturate(.65); } to { transform: scale(1); filter: none; } }
@keyframes rubenSupportCaptionIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes rubenSupportCardIn { from { opacity: 0; transform: translateY(30px) scale(.97); } to { opacity: 1; transform: none; } }
.ruben-profile__support-grid article { position: relative; display: flex; flex-direction: column; min-height: 0; overflow: hidden; padding: clamp(1.5rem, 2.5vw, 2.2rem); border: 1px solid rgba(11,62,19,.18); background: rgba(244,238,223,.94); transition: border-color .25s ease, transform .3s ease, box-shadow .3s ease, background .3s ease; }
.ruben-profile__support-grid article:hover { z-index: 1; border-color: var(--color-gold); box-shadow: 0 18px 40px rgba(11,62,19,.09); transform: translateY(-5px); }
.ruben-profile__support-grid article::after { content: ""; position: absolute; right: -2.5rem; bottom: -2.5rem; width: 6rem; height: 6rem; border: 1px solid rgba(206,184,135,.34); border-radius: 50%; transition: transform .45s cubic-bezier(.22,1,.36,1); }
.ruben-profile__support-grid article:hover::after { transform: scale(1.35); }
.ruben-profile__support-grid article > svg { width: 3.5rem; height: 3.5rem; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); padding: .72rem; overflow: visible; border: 1px solid rgba(206,184,135,.62); border-radius: 50%; fill: none; stroke: var(--color-gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transition: color .3s ease, background .3s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.ruben-profile__support-grid article:hover > svg { color: var(--color-cream); background: var(--color-green); transform: scale(1.08) rotate(-5deg); }
.ruben-profile__support--coaches .ruben-profile__support-grid article { border-color: rgba(206,184,135,.28); background: rgba(246,241,231,.045); }
.ruben-profile__support-grid article > span { display: block; margin-bottom: clamp(3rem, 6vw, 5.2rem); color: var(--color-gold); font-size: .65rem; font-weight: 900; letter-spacing: .18em; }
.ruben-profile__support-grid h3 {
	margin: 0 0 1rem;
	color: var(--color-green);
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	line-height: 1.12;
	text-wrap: balance;
	text-transform: uppercase;
}
.ruben-profile__support--coaches .ruben-profile__support-grid h3 { color: var(--color-cream); }
.ruben-profile__support-grid p { margin: 0; color: rgba(11,62,19,.76); font-size: .91rem; line-height: 1.6; }
.ruben-profile__support--coaches .ruben-profile__support-grid article { border-color: rgba(206,184,135,.45); background: var(--color-cream); }
.ruben-profile__support--coaches .ruben-profile__support-grid h3 { color: var(--color-green); }
.ruben-profile__support--coaches .ruben-profile__support-grid p { color: rgba(11,62,19,.76); }

.ruben-profile__network { padding: clamp(6rem, 11vw, 10rem) 0; background: #f4eedf; }
.ruben-profile__network .ruben-profile__section-heading h2 { max-width: 19ch; }
.ruben-profile__network-map { position: relative; min-height: 590px; overflow: hidden; border: 1px solid rgba(206,184,135,.45); background: radial-gradient(circle at 70% 35%, rgba(42,104,51,.55), transparent 30rem), var(--color-green); }
.ruben-profile__network-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(246,241,231,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(246,241,231,.06) 1px, transparent 1px); background-size: 48px 48px; }
.ruben-profile__network-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ruben-profile__route { fill: none; stroke: rgba(206,184,135,.42); stroke-width: 2; stroke-dasharray: 7 9; }
.ruben-profile__route--primary { stroke: var(--color-gold-soft); stroke-width: 3; stroke-dasharray: none; }
.ruben-profile__network-node circle { fill: #082f0e; stroke: var(--color-gold-soft); stroke-width: 2; }
.ruben-profile__network-node text { fill: rgba(246,241,231,.78); font-family: var(--font-sans); font-size: 15px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ruben-profile__network-node--primary circle { fill: var(--color-gold-soft); }
.ruben-profile__network-node--primary text { fill: var(--color-cream); font-size: 18px; }
.ruben-profile__network-sequence { position: absolute; right: clamp(1.5rem, 4vw, 4rem); bottom: clamp(1.5rem, 4vw, 3rem); display: flex; align-items: center; gap: .65rem; padding: .8rem 1rem; border: 1px solid rgba(206,184,135,.45); border-radius: 999px; color: var(--color-cream); background: rgba(4,27,8,.78); backdrop-filter: blur(10px); }
.ruben-profile__network-sequence span { font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.ruben-profile__network-sequence i { width: 1.7rem; height: 1px; background: var(--color-gold-soft); }

.ruben-profile__philosophy { position: relative; padding: clamp(6rem, 12vw, 11rem) 0; overflow: hidden; background: var(--color-gold-soft); }
.ruben-profile__philosophy::after { content: "“"; position: absolute; right: -2vw; bottom: -20vw; color: rgba(11,62,19,.09); font-family: Georgia, serif; font-size: clamp(28rem, 60vw, 60rem); font-weight: 700; line-height: 1; pointer-events: none; }
.ruben-profile__philosophy-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.ruben-profile__philosophy header { position: sticky; top: 8rem; }
.ruben-profile__philosophy header > span { color: rgba(11,62,19,.7); }
.ruben-profile__philosophy h2 { max-width: 9ch; }
.ruben-profile__philosophy .ruben-profile__title-fill { color: var(--color-gold-soft) !important; }
.ruben-profile__philosophy .ruben-profile__title-fill.title-fill-loop::before { background: linear-gradient(90deg, #0b3e13 0%, #26713a 50%, #0b3e13 100%); }
.ruben-profile__philosophy-copy p { max-width: 44rem; margin: 0 0 1.5rem; color: rgba(11,62,19,.78); font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.72; }
.ruben-profile__philosophy-copy .lead { color: var(--color-green); font-family: var(--font-serif); font-size: clamp(1.55rem, 2.5vw, 2.45rem); font-weight: 700; line-height: 1.32; }
.ruben-profile__philosophy-copy .ruben-profile__philosophy-closing { margin-top: clamp(2.5rem, 5vw, 4.5rem); padding-top: 2rem; border-top: 2px solid rgba(11,62,19,.4); color: var(--color-green); font-family: var(--font-serif); font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 800; line-height: 1.4; }

.ruben-profile__testimonial { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4.5rem, 8vw, 6.5rem) 0; background: var(--color-green); }
.ruben-profile__testimonial::before { content: ""; position: absolute; z-index: -2; inset: -3%; background: url('/wp-content/uploads/ruben-credentials-stadium.webp') center 48% / cover no-repeat; filter: saturate(.72) contrast(1.08); transform: scale(1.04); }
.ruben-profile__testimonial::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(110deg, rgba(4,27,8,.94), rgba(11,62,19,.72) 52%, rgba(4,27,8,.9)), radial-gradient(circle at 78% 24%, rgba(206,184,135,.2), transparent 28rem); }
.ruben-profile__testimonial .ruben-profile__section-heading { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.ruben-profile__testimonial-card { position: relative; display: grid; grid-template-columns: minmax(170px, .28fr) minmax(0, 1.72fr); width: min(100%, 1020px); margin-inline: auto; overflow: hidden; border: 1px solid rgba(206,184,135,.4); color: var(--color-cream); background: rgba(4,27,8,.68); box-shadow: 0 24px 65px rgba(0,0,0,.28); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.ruben-profile__testimonial-card::before { content: ""; position: absolute; z-index: 3; top: 0; left: 0; width: 38%; height: 3px; background: linear-gradient(90deg, transparent, var(--color-gold-soft), transparent); animation: rubenTestimonialLine 4.5s ease-in-out infinite; }
@keyframes rubenTestimonialLine { 0%, 100% { transform: translateX(-110%); opacity: 0; } 25%, 70% { opacity: 1; } 60% { transform: translateX(260%); } }
.ruben-profile__testimonial-brand { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 1.5rem; min-height: 100%; padding: clamp(1.25rem, 2.4vw, 1.9rem); border-right: 1px solid rgba(206,184,135,.34); background: rgba(246,241,231,.045); }
.ruben-profile__testimonial-brand img { display: block; width: min(100%, 120px); height: auto; }
.ruben-profile__testimonial-brand span { color: var(--color-gold-soft); font-size: .62rem; font-weight: 900; letter-spacing: .17em; line-height: 1.5; text-transform: uppercase; }
.ruben-profile__testimonial-quote { position: relative; margin: 0; padding: clamp(1.6rem, 3.2vw, 2.7rem); }
.ruben-profile__testimonial-mark { position: absolute; top: 1rem; right: 1.5rem; color: rgba(206,184,135,.14); font-family: Georgia, serif; font-size: clamp(7rem, 11vw, 10rem); font-weight: 700; line-height: .75; pointer-events: none; }
.ruben-profile__testimonial-copy { position: relative; z-index: 1; max-width: 50rem; }
.ruben-profile__testimonial-copy p { max-width: 68ch; margin: 0 0 1rem; color: rgba(246,241,231,.74); font-size: clamp(.86rem, 1vw, .96rem); line-height: 1.65; }
.ruben-profile__testimonial-copy .lead { max-width: 46ch; margin-bottom: 1.2rem; color: var(--color-cream); font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.85rem); font-weight: 750; line-height: 1.25; }
.ruben-profile__testimonial-more { border-top: 1px solid rgba(206,184,135,.3); border-bottom: 1px solid rgba(206,184,135,.3); }
.ruben-profile__testimonial-more summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 48px; color: var(--color-gold-soft); font-size: .6rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; list-style: none; }
.ruben-profile__testimonial-more summary::-webkit-details-marker { display: none; }
.ruben-profile__testimonial-more summary svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform .3s var(--ease); }
.ruben-profile__testimonial-more-open { display: none; }
.ruben-profile__testimonial-more[open] .ruben-profile__testimonial-more-closed { display: none; }
.ruben-profile__testimonial-more[open] .ruben-profile__testimonial-more-open { display: inline; }
.ruben-profile__testimonial-more[open] summary svg { transform: rotate(180deg); }
.ruben-profile__testimonial-more-content { padding: .35rem 0 .45rem; animation: rubenTestimonialMoreIn .45s var(--ease) both; }
@keyframes rubenTestimonialMoreIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.ruben-profile__testimonial-copy .ruben-profile__testimonial-closing { margin-top: 1.2rem; color: var(--color-gold-soft); font-family: var(--font-serif); font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 800; }
.ruben-profile__testimonial-copy footer { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .8rem; margin-top: 1.15rem; }
.ruben-profile__testimonial-copy footer strong { color: var(--color-cream); font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.ruben-profile__testimonial-copy footer span { color: var(--color-gold-soft); font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

/* Closing contact: the fixed dock lands here and becomes the final banner. */
.ruben-profile__contact { position: relative; isolation: isolate; padding: clamp(6rem, 10vw, 9rem) 0; background: #f4eedf; }
.ruben-profile__contact::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 16% 20%, rgba(206,184,135,.28), transparent 28rem), linear-gradient(115deg, transparent 60%, rgba(11,62,19,.055)); pointer-events: none; }
.ruben-profile__contact-inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.25rem, 4vw, 3.5rem); width: min(calc(100% - 2rem), 1040px); align-items: center; }
.ruben-profile__contact-heading { text-align: center; }
.ruben-profile__contact-heading > span { display: block; margin-bottom: 1rem; color: rgba(11,62,19,.65); font-size: .62rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.ruben-profile__contact-heading h2 { max-width: none; margin: 0 auto; color: var(--color-green); font-family: var(--font-sans); font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 900; letter-spacing: -.07em; line-height: .84; text-transform: uppercase; }
.ruben-profile__contact-heading h2 strong { display: inline-block; margin-top: .1em; padding: .025em .1em .075em; color: var(--color-green); background: var(--color-gold-soft); font: inherit; }
.ruben-profile__contact-heading p { max-width: 38rem; margin: 1.35rem auto 0; color: rgba(11,62,19,.72); font-family: var(--font-serif); font-size: clamp(1rem, 1.35vw, 1.22rem); font-weight: 700; line-height: 1.55; }
.ruben-profile__contact-slot { display: flex; align-items: center; width: min(100%, 900px); min-width: 0; min-height: 92px; margin-inline: auto; }
.ruben-contact-dock.is-embedded { position: relative; z-index: 4; inset: auto; width: 100%; max-width: none; margin: 0; padding: 7px; border-radius: 26px; opacity: 1; visibility: visible; transform: none; }
.ruben-contact-dock.is-embedded .ruben-contact-dock__progress { display: none; }
.ruben-contact-dock.is-embedded .ruben-contact-dock__inner { grid-template-columns: minmax(150px, .55fr) repeat(3, minmax(150px, 1fr)); gap: 7px; }
.ruben-contact-dock.is-embedded .ruben-contact-dock__label { padding-inline: 1.35rem; font-size: .68rem; line-height: 1.35; white-space: normal; }
.ruben-contact-dock.is-embedded .ruben-contact-dock__action { min-height: 76px; border-radius: 20px; font-size: .76rem; }
.ruben-contact-dock.is-embedded .ruben-contact-dock__action svg { width: 1.4rem; height: 1.4rem; }

/* Section hierarchy: short section names lead; descriptive lines support. */
.ruben-profile__section-heading h2.ruben-profile__section-title,
.ruben-profile__history-copy h2.ruben-profile__section-title {
	max-width: 17ch;
	margin: 0 auto;
	color: var(--color-green);
	font-family: var(--font-sans);
	font-size: clamp(2.8rem, 5.4vw, 3.9rem);
	font-weight: 900;
	letter-spacing: -.06em;
	line-height: .88;
	text-align: center;
	text-transform: uppercase;
}
.ruben-profile__section-heading--light h2.ruben-profile__section-title,
.ruben-profile__history-copy h2.ruben-profile__section-title { color: var(--color-cream); }
.ruben-profile__history-copy h2.ruben-profile__section-title { max-width: none; white-space: nowrap; }
#ruben-history-title > span,
#ruben-support-title > span { display: inline-block; }
#ruben-history-title > span + span,
#ruben-support-title > span + span { margin-left: .16em; }
#ruben-value-title { max-width: none; white-space: nowrap; }
#ruben-value-title .ruben-profile__title-fill {
	border: 0;
	box-shadow: none;
	outline: 0;
}
#ruben-value-title .ruben-profile__title-fill.title-fill-loop::after { display: none; }
.ruben-profile__section-subtitle {
	max-width: 42ch;
	margin: 1.15rem 0 0;
	color: rgba(11,62,19,.68);
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.55vw, 1.45rem);
	font-weight: 700;
	letter-spacing: -.015em;
	line-height: 1.4;
}
.ruben-profile__section-heading--light .ruben-profile__section-subtitle,
.ruben-profile__history-copy .ruben-profile__section-subtitle { color: rgba(246,241,231,.76); }
.ruben-profile__history-copy .ruben-profile__section-subtitle { margin-bottom: clamp(2rem, 4vw, 3.2rem); }

.ruben-profile__value .ruben-profile__section-heading,
.ruben-profile__credentials .ruben-profile__section-heading,
.ruben-profile__support .ruben-profile__section-heading,
.ruben-profile__testimonial .ruben-profile__section-heading {
	margin-inline: auto;
	text-align: center;
}
.ruben-profile__value .ruben-profile__section-title,
.ruben-profile__credentials .ruben-profile__section-title,
.ruben-profile__support .ruben-profile__section-title,
.ruben-profile__testimonial .ruben-profile__section-title,
.ruben-profile__value .ruben-profile__section-subtitle,
.ruben-profile__credentials .ruben-profile__section-subtitle,
.ruben-profile__support .ruben-profile__section-subtitle,
.ruben-profile__testimonial .ruben-profile__section-subtitle {
	margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
	.ruben-profile__value-card-inner { transition: none; }
	.ruben-profile__credentials::before { animation: none; }
	.ruben-profile__credential-skill > svg,
	.ruben-profile__credential-skill li { transition: none; }
	.ruben-profile__support-panel.is-entering,
	.ruben-profile__support-panel.is-entering .ruben-profile__support-visual,
	.ruben-profile__support-panel.is-entering .ruben-profile__support-visual img,
	.ruben-profile__support-panel.is-entering .ruben-profile__support-visual figcaption,
	.ruben-profile__support-panel.is-entering .ruben-profile__support-grid article { animation: none; }
	.ruben-profile__support-visual img,
	.ruben-profile__support-grid article,
	.ruben-profile__support-grid article > svg { transition: none; }
	.ruben-profile__testimonial-card::before { animation: none; opacity: 1; transform: none; }
}
