* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-ui);
	font-size: 15px;
	line-height: 1.55;
	color: var(--color-jean);
	background: var(--color-surface);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
}

/* ============================================
   Unified layout grid (logo + nav + hero)
   ============================================ */

.layout {
	display: grid;
	grid-template-columns: minmax(0, 250fr) minmax(0, 250fr) minmax(0, 300fr);
	grid-template-rows: auto 1fr;
	column-gap: 48px;
	row-gap: 40px;
	padding: 36px var(--page-x) 36px;
	max-width: var(--container-max);
	margin: 0 auto;
}

.layout__logo {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: start;
	display: block;
	width: 100%;
	margin-top: -22px;
}

.layout__logo img {
	width: 100%;
	height: auto;
	display: block;
}

.layout__nav {
	grid-column: 2 / 4;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 32px;
	line-height: 1;
}

.layout__navlist {
	display: flex;
	gap: 32px;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
}

.layout__navlist a {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-jean);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.layout__navlist a:hover {
	color: var(--color-jean-hover);
}

.layout__cta {
	margin-left: 16px;
}

.layout__hero-text {
	grid-column: 2;
	grid-row: 2;
	align-self: center;
  text-align: center;
}

.layout__hero-image {
	grid-column: 3;
	grid-row: 2;
	align-self: center;
	width: 100%;
	aspect-ratio: 4 / 3;
	min-height: 400px;
	background: url("../assets/homepage-bicycle.png") center/cover no-repeat;
	clip-path: url(#tiltEllipse);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	border: none;
	border-radius: var(--radius-pill);
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 26px;
	cursor: pointer;
	transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
	line-height: 1;
}

.btn--primary {
	background: var(--color-mostaza);
	color: var(--color-jean);
}

.btn--primary:hover {
	background: var(--color-mostaza-hover);
}

.btn--secondary {
	background: var(--color-jean);
	color: var(--color-white);
}

.btn--secondary:hover {
	background: var(--color-jean-hover);
}

.btn--outline {
	background: transparent;
	color: var(--color-jean);
	border: 1px solid var(--color-jean);
	padding: 11px 25px;
}

.btn--outline:hover {
	background: var(--color-jean);
	color: var(--color-white);
}

.btn--lg {
	font-size: 12px;
	padding: 14px 32px;
}

.btn--outline.btn--lg {
	padding: 13px 31px;
}

/* ============================================
   Hero typography
   ============================================ */

.hero__title {
	font-family: var(--font-display);
	font-size: 45px;
	font-weight: 700;
	line-height: 1.08;
	color: var(--color-jean);
	margin: 0 0 20px;
	letter-spacing: -0.005em;
}

.hero__title em {
	font-family: var(--font-script);
	font-style: normal;
	font-size: 0.7em;
	line-height: 0.95;
	white-space: nowrap;
}

.hero__title-accent {
	color: var(--color-mostaza);
	font-style: normal;
}

.hero__copy {
	font-size: 15px;
	color: var(--color-jean);
	margin: 0 0 28px;
	max-width: 420px;
	opacity: 0.85;
}

/* ============================================
   Features
   ============================================ */

.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 32px 48px 64px;
	max-width: var(--container-max);
	margin: 0 auto;
}

.feature {
	background: transparent;
	padding: 12px 28px;
	text-align: center;
}

.feature + .feature {
	border-left: 1px solid var(--color-separator);
}

.feature__icon {
	width: 30px;
	height: 30px;
	margin: 0 auto 14px;
	color: var(--color-jean);
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	display: block;
}

.feature__icon--fill {
	stroke: none;
	fill: currentColor;
}

.feature__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 8px;
	color: var(--color-jean);
}

.feature__desc {
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
	color: var(--color-jean);
	opacity: 0.75;
}

/* ============================================
   Secondary page header (small logo in top bar)
   ============================================ */

.page-header {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 20px var(--page-x);
	max-width: var(--container-max);
	margin: 0 auto;
}

.page-header__logo {
	display: block;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
}

.page-header__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.page-header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 32px;
	margin-left: auto;
	line-height: 1;
}

.page-header__cta {
	margin-left: 16px;
}

/* ============================================
   Mobile nav toggle (hamburger)
   ============================================ */

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 8px;
	width: 44px;
	height: 44px;
}

.nav-toggle__bar {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--color-jean);
	border-radius: 1px;
	transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle__bar + .nav-toggle__bar {
	margin-top: 6px;
}

/* ============================================
   Article (text content page)
   ============================================ */

.article {
	max-width: 800px;
	margin: 0 auto;
	padding: 24px var(--page-x) 80px;
}

.article--wide {
	max-width: 1100px;
}

.article__head {
	text-align: center;
	margin-bottom: 48px;
}

.article__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: -0.005em;
	color: var(--color-jean);
	margin: 0 0 12px;
}

.article__subtitle {
	font-family: var(--font-script);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	color: var(--color-jean);
	margin: 0;
}

.article__hero {
	margin: 0 0 48px;
	padding: 0;
}

.article__hero img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: center top;
	border-radius: var(--radius-card);
	display: block;
}

.article__hero--fit img {
	height: auto;
	max-height: 480px;
	object-fit: contain;
	background: transparent;
}

.article__body {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-jean);
}

.article__body p {
	margin: 0 0 20px;
}

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

.article__body h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 26px;
	line-height: 1.25;
	color: var(--color-jean);
	margin: 40px 0 16px;
}

.article__body h2:first-child {
	margin-top: 0;
}

.article__body h3 {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 24px 0 12px;
}

.article__body ul {
	margin: 0 0 20px;
	padding-left: 24px;
}

.article__body li {
	margin: 0 0 8px;
}

.article__body li:last-child {
	margin-bottom: 0;
}

.article__body strong {
	font-weight: 700;
}

.article__body a {
	color: var(--color-jean);
	text-decoration: underline;
}

.article__body a:hover {
	color: var(--color-jean-hover);
}

.article__body table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 24px;
	font-size: 14px;
}

.article__body th,
.article__body td {
	text-align: left;
	padding: 12px 14px;
	border-bottom: 1px solid var(--color-separator);
	vertical-align: top;
}

.article__body th {
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-jean);
	background: rgba(220, 227, 234, 0.4);
}

.article__body td code {
	font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
	font-size: 13px;
	background: rgba(220, 227, 234, 0.5);
	padding: 1px 6px;
	border-radius: 4px;
}

.article__cta {
	margin-top: 48px;
	text-align: center;
}

/* ============================================
   Carousel gallery
   ============================================ */

.gallery {
	position: relative;
	margin: 0 0 48px;
	border-radius: var(--radius-card);
	overflow: hidden;
	aspect-ratio: 3 / 2;
	outline: none;
}

.gallery__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.gallery__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity var(--transition-fast) ease;
	pointer-events: none;
}

.gallery__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

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

.gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	color: var(--color-jean);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background var(--transition-fast);
}

.gallery__nav:hover,
.gallery__nav:focus-visible {
	background: var(--color-white);
	outline: none;
}

.gallery__nav svg {
	width: 24px;
	height: 24px;
}

.gallery__nav--prev {
	left: 16px;
}

.gallery__nav--next {
	right: 16px;
}

.gallery__dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}

.gallery__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: background var(--transition-fast), transform var(--transition-fast);
}

.gallery__dot.is-active {
	background: var(--color-white);
	transform: scale(1.25);
}

/* ============================================
   Team gallery
   ============================================ */

.team-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 48px 0 0;
}

.team-gallery__item {
	margin: 0;
	padding: 0;
	border-radius: var(--radius-card);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.team-gallery__item--tall {
	aspect-ratio: 3 / 4;
}

.team-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============================================
   Philosophy list (numbered editorial sections)
   ============================================ */

.philosophy {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 40px;
}

.article__body + .philosophy {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid var(--color-separator);
}

.philosophy__item {
	padding: 32px 0 0;
	border-top: 1px solid var(--color-separator);
}

.philosophy__item:first-child {
	padding-top: 0;
	border-top: none;
}

.philosophy__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 0 0 12px;
}

.philosophy__heading {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: var(--color-jean);
	margin: 0 0 12px;
}

.philosophy__heading em {
	font-family: var(--font-script);
	font-style: normal;
	font-size: 0.9em;
	color: var(--color-jean);
	white-space: nowrap;
}

.philosophy__desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-jean);
	margin: 0 0 12px;
}

.philosophy__desc:last-child {
	margin-bottom: 0;
}

.philosophy__desc em {
	font-style: italic;
}

.philosophy__photos {
	display: none;
}

.article__kicker {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
	color: var(--color-jean);
	text-align: center;
	margin: 56px 0 0;
}

.article__kicker em {
	font-family: var(--font-script);
	font-style: normal;
	font-weight: bold;
	color: var(--color-mostaza);
	font-size: 1.5em;
	display: block;
	margin-top: 4px;
}

/* ============================================
   Polaroid stage (timed reveal carousel)
   ============================================ */

.stage {
	position: relative;
	margin: 60px auto 30px;
	height: 560px;
	max-width: 880px;
}

.polaroid {
	position: absolute;
	background: var(--color-white);
	padding: 14px 14px 48px;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.08),
		0 18px 30px -10px rgba(40, 55, 90, 0.28),
		0 30px 60px -20px rgba(40, 55, 90, 0.18);
	border-radius: 2px;
	width: 240px;
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s, opacity 0.15s;
	opacity: 0;
	transform: scale(0.92) rotate(var(--rot, 0deg));
}

.polaroid.is-shown {
	opacity: 1;
	transform: scale(1) rotate(var(--rot, 0deg));
}

.polaroid.is-shown:hover {
	transform: scale(1.04) rotate(0deg);
	z-index: 50;
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.1),
		0 28px 50px -10px rgba(40, 55, 90, 0.35),
		0 50px 90px -20px rgba(40, 55, 90, 0.25);
}

.polaroid img {
	display: block;
	width: 100%;
	height: 210px;
	object-fit: cover;
	background: var(--color-bluegrey);
}

.polaroid--p1 { left: 6%;  top: 20px;  --rot: -7deg; }
.polaroid--p2 { left: 33%; top: 0;     --rot:  2deg; }
.polaroid--p3 { left: 60%; top: 18px;  --rot:  8deg; }
.polaroid--p4 { left: 18%; top: 230px; --rot:  4deg; }
.polaroid--p5 { left: 46%; top: 240px; --rot: -5deg; }

.stage__play-wrap {
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	z-index: 60;
}

.stage__play {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1.5px solid var(--color-jean);
	background: rgba(255, 255, 255, 0.85);
	color: var(--color-jean);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
	backdrop-filter: blur(4px);
}

.stage__play:hover {
	background: var(--color-jean);
	color: var(--color-white);
	transform: scale(1.08);
	box-shadow: 0 10px 25px -8px rgba(40, 55, 90, 0.4);
}

.stage__play:active {
	transform: scale(0.96);
}

.stage__play svg {
	width: 20px;
	height: 20px;
	margin-left: 3px;
}

.stage__play.is-playing {
	background: var(--color-mostaza);
	border-color: var(--color-mostaza);
	color: var(--color-white);
	pointer-events: none;
}

/* ============================================
   Pillars (compact 4-col attribute grid)
   ============================================ */

.pillars {
	margin-top: 90px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--color-separator);
	padding-top: 40px;
}

.pillar {
	padding: 0 28px;
	text-align: center;
	border-right: 1px solid var(--color-separator);
}

.pillar:last-child {
	border-right: none;
}

.pillar__heading {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 0 0 18px;
}

.pillar__desc {
	font-size: 15px;
	line-height: 1.55;
	color: var(--color-jean);
	margin: 0;
}

/* ============================================
   Collage section (photo grid with central card)
   ============================================ */

.collage-section {
	position: relative;
	max-width: var(--container-max);
	margin: 40px auto 64px;
	padding: 0 var(--page-x);
}

.collage-stage {
	position: relative;
	display: grid;
	grid-template-columns: 13% 1fr 13%;
	grid-template-rows: 200px auto 200px;
	grid-template-areas:
		"top    top    top"
		"left   card   right"
		"bottom bottom bottom";
	column-gap: 0;
	row-gap: 0;
	align-items: stretch;
}

.collage-stage__top    { grid-area: top;    position: relative; }
.collage-stage__bottom { grid-area: bottom; position: relative; }

.collage-stage__left-rail,
.collage-stage__right-rail {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	padding: 0;
	gap: 0;
}

.collage-stage__left-rail  { grid-area: left; }
.collage-stage__right-rail { grid-area: right; }

.collage-stage__card {
	grid-area: card;
	position: relative;
	padding: 48px 64px 40px;
	z-index: 5;
	opacity: 0;
	animation: collage-card-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.collage-stage__divider {
	display: block;
	width: 100px;
	height: 3px;
	margin: 14px auto 24px;
	background: linear-gradient(90deg, transparent, var(--color-mostaza), transparent);
	border: none;
}

.collage-photo {
	background: var(--color-white);
	padding: 8px;
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.06),
		0 12px 28px -8px rgba(43, 74, 124, 0.25);
	overflow: hidden;
	z-index: 1;
	transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
	margin: 0;
	transform: rotate(var(--rot, 0deg));
	opacity: 0;
	animation: collage-drop-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.collage-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collage-photo:hover {
	transform: var(--hover-transform) !important;
	box-shadow:
		0 4px 8px rgba(0, 0, 0, 0.08),
		0 24px 48px -12px rgba(43, 74, 124, 0.35);
	z-index: 10;
}

.collage-stage__top .collage-photo,
.collage-stage__bottom .collage-photo {
	position: absolute;
}

.collage-photo--p1  { top: 5px;   left: 1.5%;   width: 18%; height: 180px; --rot: -3deg; --hover-transform: rotate(-1deg) scale(1.04); animation-delay: 0.05s; }
.collage-photo--p2  { top: 0;     left: 21.2%;  width: 18%; height: 185px; --rot:  4deg; --hover-transform: rotate( 2deg) scale(1.04); animation-delay: 0.10s; }
.collage-photo--p3  { top: 10px;  left: 41%;    width: 18%; height: 175px; --rot: -2deg; --hover-transform: rotate( 0deg) scale(1.04); animation-delay: 0.15s; }
.collage-photo--p4  { top: 0;     left: 60.8%;  width: 18%; height: 185px; --rot:  3deg; --hover-transform: rotate( 1deg) scale(1.04); animation-delay: 0.20s; }
.collage-photo--p5  { top: 5px;   right: 1.5%;  width: 18%; height: 180px; --rot: -4deg; --hover-transform: rotate(-2deg) scale(1.04); animation-delay: 0.25s; }

.collage-photo--p9  { bottom: 5px;  right: 1.5%;  width: 18%; height: 200px; --rot: -4deg; --hover-transform: rotate(-2deg) scale(1.04); animation-delay: 0.45s; }
.collage-photo--p10 { bottom: 0;    right: 21.2%; width: 18%; height: 185px; --rot:  3deg; --hover-transform: rotate( 1deg) scale(1.04); animation-delay: 0.50s; }
.collage-photo--p11 { bottom: 10px; left: 41%;    width: 18%; height: 175px; --rot: -3deg; --hover-transform: rotate(-1deg) scale(1.04); animation-delay: 0.55s; }
.collage-photo--p12 { bottom: 0;    left: 21.2%;  width: 18%; height: 185px; --rot:  4deg; --hover-transform: rotate( 2deg) scale(1.04); animation-delay: 0.60s; }
.collage-photo--p13 { bottom: 5px;  left: 1.5%;   width: 18%; height: 180px; --rot: -3deg; --hover-transform: rotate(-1deg) scale(1.04); animation-delay: 0.65s; }

.collage-stage__left-rail .collage-photo,
.collage-stage__right-rail .collage-photo {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
}

.collage-stage__right-rail .collage-photo { margin-right: -8%; }
.collage-stage__left-rail .collage-photo  { margin-left: -8%; }

.collage-photo--p6  { --rot:  5deg; --hover-transform: rotate( 2deg) scale(1.04); animation-delay: 0.30s; }
.collage-photo--p7  { --rot: -4deg; --hover-transform: rotate(-1deg) scale(1.04); animation-delay: 0.35s; }
.collage-photo--p8  { --rot:  5deg; --hover-transform: rotate( 2deg) scale(1.04); animation-delay: 0.40s; }

.collage-photo--p14 { --rot:  5deg; --hover-transform: rotate( 2deg) scale(1.04); animation-delay: 0.70s; }
.collage-photo--p15 { --rot: -5deg; --hover-transform: rotate(-2deg) scale(1.04); animation-delay: 0.75s; }
.collage-photo--p16 { --rot:  4deg; --hover-transform: rotate( 2deg) scale(1.04); animation-delay: 0.80s; }

@keyframes collage-drop-in {
	from { opacity: 0; transform: translateY(-20px) rotate(0deg) scale(0.95); }
	to   { opacity: 1; transform: rotate(var(--rot)); }
}

@keyframes collage-card-rise {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Team page (full-bleed hero + editorial blocks)
   ============================================ */

.team-page {
	width: 100%;
	margin: 0;
	padding: 0;
}

.team-hero {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
}

.team-hero__image {
	width: 100%;
	aspect-ratio: 1920 / 1302;
	min-height: 380px;
}

.team-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.team-hero__overlay {
	position: absolute;
	top: 8%;
	left: max(var(--page-x), calc((100% - var(--container-max)) / 2 + var(--page-x)));
	color: var(--color-white);
	z-index: 2;
}

.team-hero__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 96px;
	line-height: 1;
	letter-spacing: -0.005em;
	margin: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.team-hero__subtitle {
	position: absolute;
	left: 50%;
	bottom: 17%;
	transform: translateX(-50%);
	margin: 0;
	font-family: var(--font-script);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--color-jean);
	-webkit-text-stroke: 1.5px var(--color-jean);
	text-align: center;
	white-space: nowrap;
	text-shadow:
		0 0 2px #F4E27B,
		0 0 2px #F4E27B,
		0 0 4px #F4E27B,
		0 0 4px #F4E27B,
		0 0 6px #F4E27B,
		0 0 6px #F4E27B,
		0 0 10px rgba(244, 226, 123, 0.9),
		0 0 14px rgba(244, 226, 123, 0.75);
	z-index: 2;
}

.team-intro {
	max-width: 720px;
	margin: 0 auto;
	padding: 56px var(--page-x) 24px;
	text-align: center;
}

.team-intro__lead {
	font-size: 17px;
	line-height: 1.6;
	color: var(--color-jean);
	margin: 0;
}

.team-intro__lead strong {
	font-weight: 700;
}

.team-callout {
	max-width: 960px;
	margin: 16px auto 64px;
	padding: 32px 48px;
	background: #F6EFE0;
	border-radius: var(--radius-card);
	text-align: center;
}

.team-callout__line {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.15;
	color: var(--color-jean);
	margin: 0 0 6px;
}

.team-callout__script {
	font-family: var(--font-script);
	font-size: 36px;
	line-height: 1;
	font-weight: 700;
	-webkit-text-stroke: 1px var(--color-mostaza);
	color: var(--color-mostaza);
	margin: 0;
}

.team-callout__script em {
	font-style: normal;
}

.team-blocks {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--page-x);
	display: grid;
	gap: 32px;
}

.team-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.team-block__text {
	display: flex;
	flex-direction: column;
	padding-top: 24px;
}

.team-block__heading {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 38px;
	line-height: 1.15;
	color: var(--color-jean);
	letter-spacing: -0.005em;
	margin: 0 0 10px;
	position: relative;
}

.team-block__heading::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: 14px;
	background: var(--color-mostaza);
	border-radius: 2px;
}

.team-block__intro {
	font-family: var(--font-script);
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	-webkit-text-stroke: 1px var(--color-jean);
	color: var(--color-jean);
	margin: 8px 0 18px;
}

.team-block__intro em {
	font-style: normal;
}

.team-block__desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-jean);
	margin: 0 0 14px;
}

.team-block__desc:last-child {
	margin-bottom: 0;
}

.team-block__desc em {
	font-style: italic;
}

.team-block__media {
	position: relative;
	margin: 0;
	padding: 0;
	aspect-ratio: 4 / 3;
	background: transparent;
}

.team-block__media--tall {
	aspect-ratio: 3 / 4;
}

.team-block__media--painted {
	filter: drop-shadow(0 14px 28px rgba(40, 55, 90, 0.22));
}

.team-block__media--painted img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 1;
	border-radius: 4px;
}

.team-block__media--painted::before {
	content: "";
	position: absolute;
	inset: -10px;
	pointer-events: none;
	z-index: 2;
	background: url("../assets/painted-border.svg") center/100% 100% no-repeat;
}

.team-block__media--watercolor {
	overflow: visible;
}

.team-block__media--watercolor::before {
	content: "";
	position: absolute;
	inset: -22px;
	z-index: 0;
	background:
		radial-gradient(ellipse 55% 30% at 15% 10%,  rgba(143, 188, 143, 0.55), transparent 70%),
		radial-gradient(ellipse 40% 35% at 90% 18%,  rgba(96, 138, 92, 0.50), transparent 65%),
		radial-gradient(ellipse 50% 25% at 12% 88%,  rgba(120, 165, 105, 0.50), transparent 70%),
		radial-gradient(ellipse 45% 30% at 92% 90%,  rgba(247, 178, 51, 0.40), transparent 65%),
		radial-gradient(ellipse 35% 20% at 50%  5%,  rgba(110, 160, 100, 0.45), transparent 70%),
		radial-gradient(ellipse 30% 25% at 95% 50%,  rgba(143, 188, 143, 0.40), transparent 65%);
	filter: blur(6px);
	pointer-events: none;
	border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
}

.team-block__media--watercolor::after {
	content: "";
	position: absolute;
	inset: -8px;
	z-index: 0;
	background:
		radial-gradient(ellipse 30% 18% at  8% 20%, rgba(96, 138, 92, 0.45), transparent 70%),
		radial-gradient(ellipse 25% 20% at 95% 30%, rgba(143, 188, 143, 0.40), transparent 70%),
		radial-gradient(ellipse 28% 18% at 90% 80%, rgba(247, 178, 51, 0.35), transparent 70%),
		radial-gradient(ellipse 22% 16% at  6% 78%, rgba(110, 160, 100, 0.42), transparent 70%);
	filter: blur(3px);
	pointer-events: none;
	border-radius: 45% 55% 40% 50% / 55% 45% 50% 40%;
}

.team-block__media--watercolor img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	clip-path: url(#watercolor-clip);
	filter: drop-shadow(0 8px 14px rgba(40, 55, 90, 0.18));
}

.team-page__cta {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 72px var(--page-x) 80px;
	text-align: center;
}

/* ============================================
   Philosophy page (cosmos + four cultural meanings)
   ============================================ */

.philosophy-page {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 8px var(--page-x) 64px;
}

.cosmos {
	position: relative;
	background: var(--color-bluegrey);
	border-radius: var(--radius-card);
	padding: 72px 56px;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	gap: 40px;
}

.cosmos::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 70% at 50% 50%,
		rgba(59, 93, 140, 0.06) 0%,
		rgba(59, 93, 140, 0) 70%);
	pointer-events: none;
}

.cosmos__stars {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cosmos__star {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--color-jean);
	opacity: 0.32;
	transform: rotate(45deg);
}

.cosmos__star:nth-child(3n) {
	background: var(--color-mostaza);
	opacity: 0.45;
}

.cosmos__col {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;
	min-width: 0;
	position: relative;
	z-index: 2;
}

.cosmos__col--left  { align-items: flex-start; }
.cosmos__col--right { align-items: flex-end; }

.cosmos__col--map {
	flex: 1.2 1 360px;
	align-items: center;
	justify-content: center;
}

.cosmos__map {
	position: relative;
	width: 100%;
	max-width: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 0;
}

.cosmos__map img {
	width: 100%;
	height: auto;
	display: block;
}

.meaning {
	max-width: 280px;
	width: 100%;
	position: relative;
	z-index: 2;
	text-align: left;
}

.meaning__eyebrow {
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 0 0 14px;
	opacity: 0.85;
}

.meaning__heading {
	font-family: var(--font-script);
	font-weight: 700;
	font-size: 34px;
	line-height: 1.05;
	color: var(--color-mostaza);
	margin: 0 0 20px;
	-webkit-text-stroke: 0.8px var(--color-mostaza);
	text-shadow: 0 0 0.5px var(--color-mostaza);
}

.meaning__desc {
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 1.65;
	color: var(--color-jean);
	margin: 0;
	max-width: 240px;
}

.meaning__desc em {
	font-style: italic;
}

.meaning-divider {
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: 0.65;
	width: 100%;
	max-width: 240px;
}

.meaning-divider__line {
	flex: 1;
	height: 1px;
	background: var(--color-jean);
	opacity: 0.45;
	min-width: 60px;
}

.meaning-divider__star {
	flex-shrink: 0;
}

/* ============================================
   Visually-hidden helper (a11y)
   ============================================ */

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	overflow: hidden;
	white-space: nowrap;
}

/* ============================================
   Contact page — wide article variant
   ============================================ */

.contact {
	max-width: 1100px;
	padding-bottom: 0;
}

.contact-hero {
	position: relative;
	margin: 8px 0 24px;
}

.contact-hero__text {
	position: relative;
	max-width: 480px;
	z-index: 2;
}

.contact-hero__title {
	text-align: left;
	font-size: 76px;
	line-height: 1;
	margin: 0 0 8px;
}

.contact-hero__subtitle {
	text-align: left;
	font-size: 36px;
	color: var(--color-jean);
	margin: 0 0 28px;
}

.contact-hero__lede {
	font-size: 16px;
	line-height: 1.65;
	color: var(--color-jean);
	margin: 0;
	max-width: 360px;
}

.contact-flourish--squiggle {
	display: block;
	width: 220px;
	height: 40px;
	margin: 18px 0 0;
}

.contact-hero__swirl {
	position: absolute;
	top: 20px;
	right: -20px;
	width: 460px;
	height: 360px;
	pointer-events: none;
	z-index: 1;
}

/* ============================================
   Contact page — constellation process
   ============================================ */

.process {
	margin: 24px 0 80px;
}

.process__head {
	text-align: center;
	margin-bottom: 24px;
}

.process__heading {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 0 0 10px;
}

.process__rule {
	display: block;
	width: 140px;
	height: 12px;
	margin: 0 auto;
}

.process__constellation {
	display: block;
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 24px auto 8px;
}

.process__steps {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	max-width: 1000px;
}

.process-step {
	text-align: center;
	padding: 0 4px;
}

.process-step__num {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 28px;
	color: var(--color-mostaza);
	margin: 0 0 8px;
	line-height: 1;
}

.process-step__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25;
	color: var(--color-jean);
	margin: 0 0 12px;
}

.process-step__desc {
	font-size: 12px;
	line-height: 1.5;
	color: var(--color-jean);
	opacity: 0.85;
	margin: 0;
}

.process-step__icon {
	display: block;
	width: 56px;
	height: auto;
	margin: 4px auto 0;
	object-fit: contain;
}

/* ============================================
   Contact page — contact card (details + form)
   ============================================ */

.contact-card {
	display: grid;
	grid-template-columns: minmax(0, 320px) 1fr;
	gap: 56px;
	background: var(--color-white);
	border-radius: var(--radius-card);
	padding: 48px;
	margin: 0 0 56px;
	box-shadow:
		0 1px 2px rgba(40, 55, 90, 0.05),
		0 18px 40px -20px rgba(40, 55, 90, 0.18);
	border: 1px solid var(--color-separator);
}

.contact-details__head {
	text-align: center;
	margin: 0 0 24px;
}

.contact-details__title {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 0 0 8px;
}

.contact-details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.contact-item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 16px;
	align-items: start;
}

.contact-item__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-bone);
	color: var(--color-jean);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-item__icon svg {
	width: 20px;
	height: 20px;
}

.contact-item__body {
	min-width: 0;
}

.contact-item__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 0 0 4px;
}

.contact-item__value {
	font-size: 13px;
	line-height: 1.5;
	color: var(--color-jean);
	margin: 0;
}

.contact-item__value a {
	color: inherit;
	text-decoration: none;
}

.contact-item__value a:hover {
	color: var(--color-jean-hover);
	text-decoration: underline;
}

.contact-social {
	margin-top: 32px;
}

.contact-social__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-jean);
	margin: 0 0 12px;
}

.contact-social__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 12px;
}

.contact-social__link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-jean);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background var(--transition-fast), transform var(--transition-fast);
}

.contact-social__link:hover {
	background: var(--color-jean-hover);
	transform: translateY(-2px);
}

.contact-social__link svg {
	width: 18px;
	height: 18px;
}

.contact-form {
	display: grid;
	gap: 14px;
	align-content: start;
}

.contact-field {
	position: relative;
	display: flex;
	align-items: center;
}

.contact-field__icon {
	position: absolute;
	left: 18px;
	top: 16px;
	color: var(--color-jean);
	opacity: 0.7;
	pointer-events: none;
}

.contact-field__icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.contact-field input,
.contact-field textarea {
	width: 100%;
	padding: 14px 18px 14px 50px;
	border: 1px solid var(--color-separator);
	border-radius: 10px;
	background: var(--color-white);
	font-family: var(--font-ui);
	font-size: 14px;
	color: var(--color-jean);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
	color: var(--color-jean);
	opacity: 0.55;
}

.contact-field input:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: var(--color-jean);
	box-shadow: 0 0 0 3px rgba(59, 93, 140, 0.12);
}

.contact-field textarea {
	min-height: 110px;
	padding-top: 14px;
}

.contact-consent {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--color-jean);
	margin: 4px 0 6px;
}

.contact-consent input {
	width: 16px;
	height: 16px;
	accent-color: var(--color-jean);
	cursor: pointer;
}

.contact-consent a {
	color: var(--color-jean);
	text-decoration: underline;
}

.contact-submit {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
}

.contact-submit__btn {
	flex: 1;
	padding: 16px 32px;
	font-size: 12px;
}

.contact-submit__sparkle {
	width: 60px;
	height: 30px;
	flex-shrink: 0;
}

/* ============================================
   Closing strip / footer
   ============================================ */

.closing {
	background: var(--color-footer);
	width: 100%;
	margin-top: 32px;
}

.closing__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 32px var(--page-x);
	max-width: var(--container-max);
	margin: 0 auto;
}

.closing__tagline {
	font-family: var(--font-script);
	font-style: normal;
	font-size: 40px;
	line-height: 1;
	color: var(--color-jean);
	margin: 0;
	font-weight: 400;
}

.closing__legal {
	border-top: 1px solid rgba(59, 93, 140, 0.18);
	padding: 18px var(--page-x);
	max-width: var(--container-max);
	margin: 0 auto;
}

.closing__legal-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 28px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.closing__legal-list a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--color-jean);
	opacity: 0.75;
	text-decoration: none;
	transition: opacity var(--transition-fast);
}

.closing__legal-list a:hover {
	opacity: 1;
	text-decoration: underline;
}

/* ============================================
   Responsive — breakpoint mirrors --breakpoint-mobile (700px) in tokens.css
   ============================================ */

@media (max-width: 700px) {
	.layout,
	.features,
	.closing__inner,
	.page-header,
	.article {
		padding-left: 24px;
		padding-right: 24px;
	}

	.layout,
	.page-header {
		position: relative;
	}

	.nav-toggle {
		display: block;
		position: absolute;
		top: 24px;
		right: 16px;
		z-index: 110;
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

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

	.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.page-header__nav {
		display: none;
	}

	body.is-menu-open {
		overflow: hidden;
	}

	body.is-menu-open .layout__nav,
	body.is-menu-open .page-header__nav {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		position: fixed;
		inset: 0;
		background: var(--color-surface);
		padding: 88px 32px 32px;
		gap: 28px;
		z-index: 100;
	}

	body.is-menu-open .layout__nav .layout__navlist,
	body.is-menu-open .page-header__nav .layout__navlist {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		padding: 0;
	}

	body.is-menu-open .layout__cta,
	body.is-menu-open .page-header__cta {
		margin-left: 0;
		align-self: flex-start;
	}

	.article__title {
		font-size: 36px;
	}

	.article__hero img {
		height: 240px;
	}

	.layout {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.layout__logo {
		grid-row: 1;
		grid-column: 1;
		max-width: 140px;
		margin-top: 0;
	}

	.layout__nav {
		display: none;
	}

	.layout__hero-text {
		grid-column: 1;
		grid-row: 2;
	}

	.layout__hero-image {
		display: none;
	}

	.hero__title {
		font-size: 40px;
	}

	.features {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 0;
	}

	.feature + .feature {
		border-left: none;
	}

	.feature:nth-child(odd) {
		border-right: 1px solid var(--color-separator);
	}

	.closing__inner {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.btn {
		font-size: 10px;
		padding: 11px 20px;
		letter-spacing: 0.1em;
	}

	.btn--outline {
		padding: 10px 19px;
	}

	.stage {
		height: 440px;
		overflow-x: hidden;
	}

	.polaroid {
		width: 160px;
		padding: 8px 8px 32px;
		margin-inline: 0;
	}

	.polaroid img {
		height: 130px;
	}

	.polaroid--p1 { left: 0;   top: 0; }
	.polaroid--p2 { left: 30%; top: -6px; }
	.polaroid--p3 { left: 58%; top: 6px; }
	.polaroid--p4 { left: 10%; top: 160px; }
	.polaroid--p5 { left: 40%; top: 170px; }

	.pillars {
		grid-template-columns: 1fr;
		border-top: none;
	}

	.pillar {
		border-right: none;
		border-bottom: 1px solid var(--color-separator);
		padding: 28px 20px;
		text-align: left;
	}

	.pillar:last-child {
		border-bottom: none;
	}

	.collage-section {
		padding: 0 24px;
		margin: 24px auto 64px;
	}

	.collage-stage {
		display: flex;
		flex-direction: column;
		grid-template: none;
		gap: 0;
	}

	.collage-stage__card {
		order: 1;
		grid-area: auto;
		width: 100%;
		margin: 0 0 24px;
		padding: 40px 24px 32px;
		animation: none;
		opacity: 1;
	}

	.collage-stage__top    { order: 2; }
	.collage-stage__left-rail  { order: 3; }
	.collage-stage__right-rail { order: 4; }
	.collage-stage__bottom { order: 5; }

	.collage-stage__top,
	.collage-stage__bottom,
	.collage-stage__left-rail,
	.collage-stage__right-rail {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		margin-bottom: 16px;
		grid-area: auto;
		padding: 0;
		align-items: stretch;
		justify-content: stretch;
	}

	.collage-stage__top .collage-photo,
	.collage-stage__bottom .collage-photo,
	.collage-stage__left-rail .collage-photo,
	.collage-stage__right-rail .collage-photo {
		position: static;
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 4 / 5 !important;
		margin: 0 !important;
		transform: rotate(var(--rot, 0deg));
		animation: none;
		opacity: 1;
		padding: 6px;
	}

	.collage-photo:nth-child(odd)  { --rot: -1.5deg; }
	.collage-photo:nth-child(even) { --rot:  1.5deg; }
	.collage-photo:hover { transform: rotate(0deg) scale(1.02) !important; }

	.collage-stage__top,
	.collage-stage__bottom,
	.collage-stage__left-rail,
	.collage-stage__right-rail {
		display: none;
	}

	.philosophy__photos {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		margin-top: 16px;
	}

	.philosophy__photos img {
		width: 100%;
		aspect-ratio: 4 / 5;
		object-fit: cover;
		border-radius: var(--radius-card);
		display: block;
	}

	.team-hero__image {
		aspect-ratio: 4 / 3;
		min-height: 0;
		max-height: none;
	}

	.team-hero__overlay {
		top: 8%;
		left: 24px;
	}

	.team-hero__title {
		font-size: 56px;
	}

	.team-hero__subtitle {
		font-size: 26px;
		bottom: 25%;
	}

	.team-intro {
		padding: 40px 24px 16px;
	}

	.team-callout {
		margin: 8px 24px 48px;
		padding: 24px;
	}

	.team-callout__line {
		font-size: 24px;
	}

	.team-callout__script {
		font-size: 28px;
	}

	.team-blocks {
		padding: 0 24px;
		gap: 48px;
	}

	.team-block {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.team-block .team-block__media {
		order: -1;
	}

	.team-block__heading {
		font-size: 28px;
	}

	.team-block__intro {
		font-size: 22px;
	}

	.team-page__cta {
		padding: 48px 24px 64px;
	}

	.philosophy-page {
		padding-left: 24px;
		padding-right: 24px;
	}

	.cosmos {
		flex-direction: column;
		padding: 36px 20px;
		gap: 32px;
	}

	.cosmos__col,
	.cosmos__col--left,
	.cosmos__col--right,
	.cosmos__col--map {
		flex: 0 0 auto;
		width: 100%;
		align-items: center;
	}

	.cosmos__col--map {
		order: -1;
	}

	.cosmos__map {
		max-width: 380px;
		margin: 0 auto;
	}

	.meaning,
	.meaning--greek,
	.meaning--serbian,
	.meaning--arabic,
	.meaning--turkish {
		text-align: center;
		max-width: 460px;
	}

	.meaning__desc {
		margin-left: auto;
		margin-right: auto;
	}

	.meaning__heading {
		font-size: 30px;
	}

	.meaning-divider {
		justify-content: center;
		max-width: 320px;
		width: 100%;
	}

	.cosmos__col--right .meaning-divider {
		display: none;
	}

	.contact-hero {
		min-height: 0;
		margin-bottom: 32px;
	}

	.contact-hero__title {
		font-size: 48px;
	}

	.contact-hero__subtitle {
		font-size: 28px;
	}

	.contact-hero__swirl {
		display: none;
	}

	.process__constellation {
		display: none;
	}

	.process__steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 16px;
	}

	.contact-card {
		grid-template-columns: 1fr;
		padding: 24px;
		gap: 32px;
	}

	.contact-submit {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-submit__sparkle {
		display: none;
	}
}

/* ============================================
   Homepage hero — tablet & mobile (bicycle becomes a soft backdrop)
   Desktop keeps the 3-column layout with the tilted-ellipse image on the right.
   ============================================ */

@media (max-width: 1199px) {
	.layout {
		grid-template-columns: 1fr;
		row-gap: 28px;
		position: relative;
		min-height: 560px;
		overflow: hidden;
		border-radius: var(--radius-card);
	}

	.layout::before {
		content: "";
		position: absolute;
		inset: 0;
		background: url("../assets/homepage-bicycle.png") center/cover no-repeat;
		opacity: 0.35;
		z-index: 0;
		pointer-events: none;
	}

	.layout::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(239, 241, 244, 0.5) 0%, rgba(239, 241, 244, 0.85) 100%);
		z-index: 0;
		pointer-events: none;
	}

	.layout > * {
		position: relative;
		z-index: 1;
	}

	.layout__logo {
		grid-column: 1;
		grid-row: auto;
		max-width: 180px;
		margin: 0 auto;
	}

	.layout__nav {
		grid-column: 1;
		grid-row: auto;
		justify-content: center;
		gap: 24px;
		flex-wrap: wrap;
	}

	.layout__hero-text {
		grid-column: 1;
		grid-row: auto;
		text-align: center;
		margin-top: auto;
	}

	.layout__hero-image {
		display: none;
	}
}

@media (max-width: 700px) {
	.layout {
		min-height: 480px;
		border-radius: 0;
	}
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-right: 4px;
	white-space: nowrap;
}

.lang-switch a {
	color: var(--color-jean);
	text-decoration: none;
	opacity: 0.55;
	transition: opacity var(--transition-fast), color var(--transition-fast);
}

.lang-switch a:hover {
	opacity: 1;
}

.lang-switch a.is-active {
	color: var(--color-mostaza);
	opacity: 1;
}

.lang-switch__sep {
	opacity: 0.35;
}

@media (max-width: 700px) {
	body.is-menu-open .lang-switch {
		order: -1;
		margin: 0 0 8px;
	}
}

.meaning__word {
        font-family: var(--font-script);
        font-style: normal;
        font-weight: bold;
        color: var(--color-jean);
        font-size: 1.9em;
        letter-spacing: 0;
        text-transform: none;
        margin-left: 6px;
        line-height: 0;
}

.subtext {
    text-align: center;
    font-size: 2em;
    max-width: var(--container-max);
    padding: 10px var(--page-x) 10px;
}

/* ============================================
   Local-teams pre-footer ribbon
   ============================================ */

.local-ribbon {
	background: #F6EFE0;
	width: 100%;
	padding: 28px var(--page-x);
	position: relative;
	overflow: hidden;
}

.local-ribbon::before {
	content: "";
	position: absolute;
	pointer-events: none;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(247, 178, 51, 0.35), transparent 70%);
	filter: blur(40px);
	top: -110px;
	left: -60px;
}

.local-ribbon__inner {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	position: relative;
	z-index: 1;
}

.local-ribbon__question {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 26px;
	line-height: 1.15;
	color: var(--color-jean);
	letter-spacing: -0.005em;
	margin: 0;
	white-space: nowrap;
}

.local-ribbon__question em {
	font-family: var(--font-script);
	font-style: normal;
	font-weight: 400;
	color: var(--color-mostaza);
	font-size: 1.45em;
	line-height: 0.85;
	-webkit-text-stroke: 0.6px var(--color-mostaza);
	margin: 0 4px;
	display: inline-block;
	transform: translateY(4px);
}

.local-ribbon__sep {
	width: 7px;
	height: 7px;
	background: var(--color-mostaza);
	transform: rotate(45deg);
	flex-shrink: 0;
}

.local-ribbon__body {
	font-family: var(--font-ui);
	font-size: 15px;
	line-height: 1.5;
	color: var(--color-jean);
	margin: 0;
	max-width: 700px;
}

.local-ribbon__body strong {
	font-weight: 700;
}

@media (max-width: 980px) {
	.local-ribbon {
		padding: 24px var(--page-x);
	}

	.local-ribbon__inner {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.local-ribbon__sep {
		display: none;
	}

	.local-ribbon__question {
		font-size: 24px;
		white-space: normal;
	}

	.local-ribbon__body {
		font-size: 14px;
	}
}

@media (max-width: 700px) {
	.local-ribbon {
		padding: 22px 24px;
	}
}
