/* =========================================================================
   Anchor v2 — Refined editorial layer
   For a mature, sophisticated audience. Restraint, whitespace, hierarchy.
   ========================================================================= */


/* ============================================================
   Scroll progress bar — thin, brand-secondary only, subtle
   ============================================================ */

.scroll-progress {
	position: fixed;
	top: 0; left: 0;
	height: 2px;
	width: 0%;
	background: var(--brand-secondary);
	z-index: calc(var(--z-header) + 1);
	transition: width 80ms linear;
	pointer-events: none;
	opacity: 0.85;
}


/* ============================================================
   HERO POLISH — restrained typography (closer to live site)
   ============================================================ */

.hero__headline {
	font-size: clamp(32px, 4.2vw, 48px) !important;
	line-height: 1.18 !important;
	letter-spacing: -0.005em !important;
	font-weight: 500 !important;
	font-family: var(--font-display) !important;
}

.hero__lede {
	font-size: 17px !important;
	line-height: 1.7 !important;
	font-weight: 300 !important;
	max-width: 540px !important;
}


/* ============================================================
   INTRO — refined sizes
   ============================================================ */

.intro {
	padding-block: clamp(72px, 9vw, 110px) !important;
}

.intro__welcome {
	font-size: clamp(34px, 4vw, 44px) !important;
	color: var(--brand-secondary);
}

.intro__title {
	font-size: clamp(28px, 3.6vw, 40px) !important;
	line-height: 1.18 !important;
	font-weight: 500 !important;
}


/* ============================================================
   REFINED STATS — editorial, restrained, hairline-bordered
   ============================================================ */

.stats-row {
	padding-block: clamp(64px, 8vw, 96px);
	background: #fff;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
}

.stats-row__head {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 56px;
}

.stats-row__eyebrow {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	margin-bottom: 14px;
	font-weight: 600;
}

.stats-row__title {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 400;
	color: var(--brand-primary);
	line-height: 1.35;
	margin: 0;
	font-style: italic;
}

.stats-row__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

@media (max-width: 860px) { .stats-row__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-row__grid { grid-template-columns: 1fr; } }

.stat-item {
	text-align: center;
	padding: 8px 24px;
	border-right: 1px solid var(--line-soft);
}

.stat-item:last-child { border-right: none; }

@media (max-width: 860px) {
	.stat-item:nth-child(2n) { border-right: none; }
	.stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); padding-bottom: 28px; }
	.stat-item:nth-child(n+3) { padding-top: 28px; }
}

@media (max-width: 480px) {
	.stat-item { border-right: none; border-bottom: 1px solid var(--line-soft); padding-block: 28px; }
	.stat-item:last-child { border-bottom: none; }
}

.stat-item__num {
	font-family: var(--font-display);
	font-size: clamp(34px, 3.8vw, 46px);
	font-weight: 400;
	line-height: 1;
	color: var(--brand-primary);
	letter-spacing: -0.01em;
	margin-bottom: 12px;
	font-variant-numeric: tabular-nums;
}

.stat-item__num::after {
	content: attr(data-suffix);
	color: var(--brand-secondary);
	font-size: 0.6em;
	margin-left: 2px;
	vertical-align: super;
	font-weight: 400;
}

.stat-item__label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brand-text);
	line-height: 1.4;
}


/* ============================================================
   BENTO — tightened, more restrained hover
   ============================================================ */

.services-bento {
	padding-block: clamp(72px, 9vw, 110px);
	background: #fff;
}

.bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 16px;
}

.bento__item {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	transition: transform 500ms var(--ease);
	color: #fff;
	isolation: isolate;
}

.bento__item:hover {
	transform: translateY(-2px);
}

.bento__item img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 800ms var(--ease);
}

.bento__item:hover img { transform: scale(1.04); }

.bento__item::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(66, 27, 73, 0.86) 100%);
	pointer-events: none;
}

.bento__content {
	position: absolute;
	left: 22px; right: 22px; bottom: 20px;
	z-index: 2;
}

.bento__number {
	position: absolute;
	top: 18px; left: 22px;
	z-index: 2;
	font-family: var(--font-display);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.32em;
}

.bento__eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 8px;
	display: inline-block;
}

.bento__title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 4px;
	color: #fff;
	letter-spacing: -0.005em;
	line-height: 1.2;
}

.bento__desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
	font-weight: 300;
	line-height: 1.5;
}

.bento__item--feature { grid-column: span 2; grid-row: span 2; }
.bento__item--feature .bento__title { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.bento__item--feature .bento__desc { font-size: 14px; max-width: 80%; }

.bento__item--tall { grid-row: span 2; }
.bento__item--wide { grid-column: span 2; }

@media (max-width: 980px) {
	.bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
	.bento__item--feature { grid-column: span 2; grid-row: span 2; }
	.bento__item--tall { grid-row: span 1; }
}

@media (max-width: 540px) {
	.bento { grid-template-columns: 1fr; }
	.bento__item--feature,
	.bento__item--tall,
	.bento__item--wide { grid-column: span 1; grid-row: span 1; }
}


/* ============================================================
   MAGAZINE BELIEVE — restrained typography
   ============================================================ */

.mag {
	padding-block: clamp(72px, 9vw, 110px);
	background: #fff;
	overflow: hidden;
}

.mag__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

@media (max-width: 860px) { .mag__inner { grid-template-columns: 1fr; } }

.mag__copy { position: relative; }

.mag__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	margin-bottom: 20px;
}

.mag__eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--brand-secondary);
	display: inline-block;
}

.mag__headline {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--brand-primary);
	margin: 0 0 24px;
}

.mag__headline em {
	font-style: italic;
	color: var(--brand-secondary);
	font-weight: 400;
}

.mag__lede {
	font-size: 17px;
	line-height: 1.75;
	color: var(--brand-text);
	font-weight: 300;
	margin: 0 0 28px;
	max-width: 56ch;
}

.mag__media {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 6px;
	overflow: hidden;
}

.mag__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.2s var(--ease);
}

.mag__inner:hover .mag__media img { transform: scale(1.03); }

.mag__stat {
	position: absolute;
	left: -24px;
	bottom: 24px;
	background: #fff;
	padding: 16px 20px;
	border: 1px solid var(--line-soft);
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.mag__stat-num {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 400;
	color: var(--brand-primary);
	line-height: 1;
	letter-spacing: -0.01em;
}

.mag__stat-label {
	font-size: 11px;
	color: var(--brand-text);
	line-height: 1.3;
	max-width: 110px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

@media (max-width: 860px) { .mag__stat { left: 16px; } }


/* ============================================================
   PROCESS — restrained
   ============================================================ */

.process {
	padding-block: clamp(72px, 9vw, 110px);
	background: var(--surface-soft);
	position: relative;
}

.process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
}

@media (max-width: 980px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process__grid { grid-template-columns: 1fr; } }

.process__step {
	position: relative;
	z-index: 1;
}

.process__num {
	font-family: var(--font-display);
	font-size: 14px;
	color: var(--brand-secondary);
	letter-spacing: 0.28em;
	margin-bottom: 14px;
	display: block;
}

.process__title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 500;
	color: var(--brand-primary);
	margin: 0 0 8px;
	letter-spacing: -0.005em;
}

.process__desc {
	font-size: 15px;
	line-height: 1.65;
	color: var(--brand-text);
	font-weight: 300;
	margin: 0;
}


/* ============================================================
   FEATURED TESTIMONIAL — restrained
   ============================================================ */

.ft {
	padding-block: clamp(72px, 9vw, 110px);
	background: #fff;
	overflow: hidden;
	position: relative;
}

.ft__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

@media (max-width: 860px) { .ft__inner { grid-template-columns: 1fr; } }

.ft__media {
	aspect-ratio: 4 / 5;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

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

.ft__quote-mark {
	font-family: var(--font-display);
	font-size: 96px;
	line-height: 0.6;
	color: var(--brand-secondary);
	margin-bottom: 10px;
	display: block;
	font-weight: 400;
	font-style: italic;
}

.ft__quote {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.2vw, 26px);
	line-height: 1.5;
	font-weight: 400;
	color: var(--brand-primary);
	margin: 0 0 28px;
	font-style: italic;
}

.ft__quote em {
	color: var(--brand-secondary);
	font-weight: 500;
}

.ft__author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ft__author-bar {
	width: 24px;
	height: 1px;
	background: var(--brand-secondary);
}

.ft__author-name {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: var(--brand-primary);
	letter-spacing: 0.04em;
}

.ft__author-role {
	font-size: 12px;
	color: var(--brand-text);
	margin: 0;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}


/* ============================================================
   COMING SOON — quiet empty state for events/blog pages
   ============================================================ */

.comingsoon {
	padding: clamp(72px, 10vw, 120px) 0;
	background: var(--surface-soft, #faf7f4);
	border-top: 1px solid rgba(66, 27, 73, 0.06);
}

.comingsoon__inner {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	padding: 0 var(--gutter);
}

.comingsoon__eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--brand-secondary);
	margin-bottom: 18px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(201, 86, 28, 0.32);
}

.comingsoon__title {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--brand-primary);
	margin: 0 0 18px;
	font-weight: 500;
	text-wrap: balance;
}

.comingsoon__title em {
	font-style: italic;
	color: var(--brand-secondary);
	font-weight: 400;
}

.comingsoon__body {
	font-size: 16px;
	line-height: 1.7;
	color: var(--brand-text);
	margin: 0 0 28px;
	font-weight: 300;
}

.comingsoon__ctas {
	display: inline-flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 480px) {
	.comingsoon__ctas { flex-direction: column; width: 100%; }
	.comingsoon__ctas .btn { width: 100%; }
}
