/* =========================================================================
   VDG — main stylesheet
   Design source: Figma "VDG website" node 333:17 (1920px canvas)
   ========================================================================= */

:root {
	--c-navy: #0f2c4e;
	--c-gold: #a68b5a;
	--c-text: #3d3d3d;
	--c-white: #ffffff;

	--font-main: 'Fb Tubic-Sans', 'Assistant', system-ui, sans-serif;

	/* 1920-based fluid sizes */
	--fs-hero: clamp(2.4rem, 4.03vw, 4.84rem);       /* 77px */
	--fs-h2: clamp(2rem, 2.5vw, 3rem);               /* 48px */
	--fs-card-title: clamp(1.5rem, 1.875vw, 2.25rem);/* 36px */
	--fs-lg: clamp(1.25rem, 1.46vw, 1.75rem);        /* 28px */
	--fs-md: clamp(1.125rem, 1.25vw, 1.5rem);        /* 24px */
	--fs-body: 1.125rem;                              /* 18px */

	--container: 1640px;
	--gutter: clamp(1.25rem, 7.29vw, 8.75rem);        /* 140px side padding */
	--section-gap: clamp(4rem, 7vw, 8.75rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font-main);
	font-weight: 300;
	color: var(--c-text);
	background: var(--c-white);
	direction: rtl;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input { font: inherit; color: inherit; }

.container {
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.section { padding-block: calc(var(--section-gap) / 2); }

.section-title {
	font-size: var(--fs-h2);
	font-weight: 500;
	color: var(--c-navy);
	line-height: 1.1;
	margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.rule--gold { border: 0; border-top: 1px solid var(--c-gold); margin: 0 0 clamp(2rem, 3vw, 3.5rem); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 193px;
	min-height: 59px;
	padding: 0.9em 2.2em;
	font-size: var(--fs-md);
	font-weight: 400;
	transition: background-color .3s ease, color .3s ease;
}
.btn--outline {
	border: 2px solid var(--c-gold);
	color: var(--c-navy);
	background: var(--c-white);
}
.btn--outline:hover { background: var(--c-gold); color: var(--c-white); }
.btn--solid { background: var(--c-gold); color: var(--c-white); }
.btn--solid:hover { background: var(--c-navy); }

/* Gold square arrow (cards) — sits at the "end" corner, arrow points inline-start */
.square-arrow {
	position: absolute;
	inset-inline-end: auto;
	inset-inline-start: 0;
	bottom: 0;
	width: 89px;
	height: 89px;
	display: grid;
	place-items: center;
	color: var(--c-gold);
	transition: background-color .3s ease, color .3s ease;
}
.square-arrow svg { width: 38px; }
.square-arrow--solid { background: var(--c-gold); color: var(--c-white); }
.square-arrow--solid:hover { background: var(--c-navy); }

.link-more {
	display: inline-block;
	margin-top: clamp(1.5rem, 2vw, 2.5rem);
	font-size: var(--fs-body);
	color: var(--c-navy);
	border-bottom: 1px solid var(--c-gold);
	padding-bottom: 4px;
	transition: color .3s ease;
}
.link-more:hover { color: var(--c-gold); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 100;
	padding-block: 1.5rem;
	color: var(--c-white);
	transition: background-color .35s ease, padding .35s ease;
}
.site-header.is-scrolled {
	background: var(--c-navy);
	padding-block: 0.75rem;
	box-shadow: 0 4px 24px rgb(15 44 78 / .25);
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.header__logo-img { max-height: 56px; width: auto; }
.header__logo-text { font-size: 1.5rem; font-weight: 500; letter-spacing: .05em; }
.header__memorial { font-size: 1.375rem; font-weight: 400; white-space: nowrap; }

.header__menu {
	display: flex;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--fs-body);
}
.header__menu li { position: relative; padding-inline: 1.05rem; }
.header__menu li + li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	translate: 0 -50%;
	height: 22px;
	width: 1px;
	background: rgb(255 255 255 / .5);
}
.header__menu a { transition: color .25s ease; }
.header__menu a:hover,
.header__menu .current-menu-item a { color: var(--c-gold); font-weight: 500; }

.header__burger { display: none; flex-direction: column; gap: 6px; }
.header__burger span { width: 28px; height: 2px; background: currentColor; transition: .3s; }

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--c-navy);
	display: grid;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav__menu { list-style: none; padding: 0; margin: 0; text-align: center; display: grid; gap: 1.5rem; }
.mobile-nav__menu a { color: var(--c-white); font-size: 1.75rem; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
	position: relative;
	min-height: clamp(600px, 50.5vw, 969px);
	display: flex;
	align-items: flex-end;
	color: var(--c-white);
	overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgb(15 44 78 / .7), rgb(15 44 78 / 0));
	mix-blend-mode: multiply;
}
.hero__bg::after {
	/* subtle bottom anchor so the headline stays readable */
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 40%;
	background: linear-gradient(to top, rgb(15 44 78 / .55), transparent);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 7vw, 8rem); }
.hero__title {
	font-size: var(--fs-hero);
	font-weight: 400;
	line-height: 1.12;
	max-width: 1170px;
	margin-inline-start: auto; /* right-aligned block in RTL design */
	text-align: right;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }

.hero__scroll {
	position: absolute;
	z-index: 3;
	inset-inline-end: auto;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 100px;
	color: var(--c-white);
	display: grid;
	place-items: center;
}
.hero__scroll-ring { position: absolute; inset: 0; fill: currentColor; font-size: 11px; letter-spacing: 2px; }
.hero__scroll-arrow { font-size: 1.25rem; }

/* =========================================================================
   Intro
   ========================================================================= */
.intro { padding-top: var(--section-gap); }
.intro__text {
	font-size: clamp(1.375rem, 1.67vw, 2rem); /* 32px */
	line-height: 1.55;
	color: var(--c-navy);
	max-width: 1170px;
	margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

/* =========================================================================
   Practice areas
   ========================================================================= */
.practice__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.practice-card {
	position: relative;
	aspect-ratio: 533 / 465;
	overflow: hidden;
	color: var(--c-white);
	isolation: isolate;
}
.practice-card__media, .practice-card__media::after { position: absolute; inset: 0; }
.practice-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.practice-card:hover .practice-card__img { transform: scale(1.06); }
.practice-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgb(15 44 78 / 0), rgb(15 44 78 / .7));
	transition: background-color .4s ease;
}
.practice-card:hover .practice-card__shade { background-color: rgb(15 44 78 / .35); }
.practice-card__body {
	position: absolute;
	inset-inline: 40px;
	bottom: 40px;
	z-index: 2;
}
.practice-card__title { font-size: var(--fs-md); font-weight: 500; line-height: 1.2; }
.practice-card__desc {
	font-size: var(--fs-body);
	line-height: 1.55;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin-top: 0;
	transition: max-height .5s ease, opacity .4s ease .05s, margin-top .5s ease;
}
.practice-card:hover .practice-card__desc { max-height: 200px; opacity: 1; margin-top: 1rem; }
.practice-card .square-arrow {
	background: var(--c-gold);
	color: var(--c-white);
	translate: 0 100%;
	transition: translate .45s cubic-bezier(.22,.61,.36,1);
}
.practice-card:hover .square-arrow { translate: 0 0; }

/* =========================================================================
   Rulings
   ========================================================================= */
.rulings__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ruling-card {
	position: relative;
	border: 1px solid var(--c-gold);
	min-height: 387px;
	padding: 56px 52px 120px;
	overflow: hidden;
}
.ruling-card__title {
	font-size: var(--fs-card-title);
	font-weight: 400;
	line-height: 1.35;
	color: var(--c-navy);
	letter-spacing: -0.03em;
}
.ruling-card__cite {
	margin-top: 1.5rem;
	font-size: var(--fs-body);
	line-height: 1.75;
	color: var(--c-navy);
}
.ruling-card .square-arrow { inset-inline-start: -1px; bottom: -1px; }

/* =========================================================================
   Articles
   ========================================================================= */
.articles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.article-card {
	border: 1px solid var(--c-gold);
	min-height: 564px;
	display: flex;
	flex-direction: column;
}
.article-card__media { position: relative; display: block; aspect-ratio: 533 / 350; overflow: hidden; }
.article-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.article-card:hover .article-card__img { transform: scale(1.05); }
.article-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgb(166 139 90 / 0), rgb(166 139 90 / .7));
}
.article-card__body { padding: 32px 44px 44px; }
.article-card__date { font-size: var(--fs-md); color: var(--c-gold); }
.article-card__title {
	margin-top: .5rem;
	font-size: clamp(1.375rem, 1.56vw, 1.875rem); /* 30px */
	font-weight: 400;
	line-height: 1.4;
	color: var(--c-navy);
}
.article-card__title a:hover { color: var(--c-gold); }

/* =========================================================================
   Projects slider
   ========================================================================= */
.projects { border-top: 1px solid var(--c-gold); padding-top: var(--section-gap); }
.project-slide {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: clamp(2rem, 4vw, 5rem);
	align-items: start;
}
.project-slide__media { order: 2; } /* image on the visual left in RTL */
.project-slide__img { width: 100%; aspect-ratio: 811 / 542; object-fit: cover; }
.project-slide__quote {
	font-size: clamp(1.75rem, 2.08vw, 2.5rem); /* 40px */
	font-weight: 400;
	color: var(--c-gold);
	line-height: 1.2;
}
.project-slide__text {
	margin-top: 1.5rem;
	font-size: var(--fs-lg);
	line-height: 1.5;
	color: var(--c-text);
	max-width: 585px;
}
.projects__controls {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
	justify-content: flex-start;
}
.projects__arrow { width: 56px; color: var(--c-navy); transition: color .25s; }
.projects__arrow svg { width: 100%; }
.projects__arrow:hover { color: var(--c-gold); }
.projects__fraction { font-size: clamp(1.5rem, 1.875vw, 2.25rem); color: var(--c-gold); font-weight: 400; }

/* =========================================================================
   Contact
   ========================================================================= */
.contact { border-top: 1px solid var(--c-gold); padding-top: var(--section-gap); padding-bottom: var(--section-gap); }
.contact__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 6rem);
	align-items: stretch;
}
.contact__lead { font-size: var(--fs-md); line-height: 1.4; max-width: 760px; margin-bottom: 2.5rem; }
.contact__media { position: relative; overflow: hidden; }
.contact__img { width: 100%; height: 100%; object-fit: cover; }

.contact-form__field {
	display: grid;
	grid-template-columns: 200px 1fr;
	align-items: end;
	gap: 1rem;
	border-bottom: 1px solid var(--c-navy);
	padding-bottom: .75rem;
	margin-bottom: 2rem;
}
.contact-form__field label { font-size: var(--fs-md); font-weight: 300; color: var(--c-text); }
.contact-form__field input {
	border: 0;
	outline: 0;
	background: transparent;
	font-size: var(--fs-md);
	padding: 0;
}
.contact-form__field:focus-within { border-color: var(--c-gold); }

.contact-form__consent {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	font-size: var(--fs-body);
	line-height: 1.4;
	margin-block: 2.5rem 2rem;
	cursor: pointer;
}
.contact-form__consent input {
	appearance: none;
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	border: 2px solid var(--c-gold);
	display: grid;
	place-items: center;
	cursor: pointer;
}
.contact-form__consent input:checked::after { content: '✓'; color: var(--c-gold); font-size: 1rem; }
.contact-form__consent a { text-decoration: underline; }

.contact-form__status { margin-top: 1rem; font-size: var(--fs-body); min-height: 1.5em; }
.contact-form__status.is-error { color: #b3402a; }
.contact-form__status.is-success { color: var(--c-navy); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
	background: var(--c-navy);
	color: var(--c-white);
	padding-top: var(--section-gap);
	font-weight: 300;
}
.footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: clamp(2rem, 4vw, 5rem);
	padding-bottom: clamp(2.5rem, 4vw, 4rem);
}
.footer__logo { margin-bottom: 2rem; max-width: 220px; }
.footer__about-text { font-size: var(--fs-lg); line-height: 1.45; max-width: 530px; }
.footer__col-title { font-size: var(--fs-md); font-weight: 400; color: var(--c-gold); margin-bottom: 1.25rem; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: 1.25rem; }
.footer__list a:hover { color: var(--c-gold); }
.footer__contact p { font-size: 1.25rem; line-height: 1.6; margin-bottom: .4rem; }
.footer__email { text-decoration: underline; font-size: var(--fs-md); }

.footer__menu-strip { border-top: 1px solid var(--c-gold); padding-block: 1.75rem; }
.footer__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--fs-lg);
}
.footer__menu li { position: relative; padding-inline: 1.15rem; }
.footer__menu li:first-child { padding-inline-start: 0; }
.footer__menu li + li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	translate: 0 -50%;
	height: 22px;
	width: 1px;
	background: rgb(255 255 255 / .5);
}
.footer__menu a:hover,
.footer__menu .current-menu-item a { color: var(--c-gold); font-weight: 500; }

.footer__bottom {
	border-top: 1px solid rgb(255 255 255 / .35);
	padding-block: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	font-size: 1rem;
}
.footer__copy a { text-decoration: underline; }
.footer__credit { opacity: .85; }

/* =========================================================================
   Animations (initial states; GSAP takes over)
   ========================================================================= */
.js [data-anim='fade-up'],
.js [data-anim='card'],
.js [data-anim='title'] { opacity: 0; }
.js [data-anim='rule'] { transform-origin: right center; transform: scaleX(0); }
.js [data-anim='media-reveal'] { clip-path: inset(0 0 100% 0); }

@media (prefers-reduced-motion: reduce) {
	.js [data-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
	*, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1280px) {
	.practice__grid, .rulings__grid, .articles__grid { grid-template-columns: repeat(2, 1fr); }
	.header__memorial { display: none; }
}

@media (max-width: 1024px) {
	.header__nav { display: none; }
	.header__burger { display: flex; }
	.project-slide { grid-template-columns: 1fr; }
	.project-slide__media { order: 0; }
	.contact__inner { grid-template-columns: 1fr; }
	.contact__media { min-height: 380px; }
	.footer__top { grid-template-columns: 1fr 1fr; }
	.footer__about { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
	.practice__grid, .rulings__grid, .articles__grid { grid-template-columns: 1fr; }
	.ruling-card { padding: 40px 32px 120px; min-height: 0; }
	.article-card { min-height: 0; }
	.article-card__body { padding: 24px 28px 36px; }
	.contact-form__field { grid-template-columns: 1fr; gap: .25rem; }
	.footer__top { grid-template-columns: 1fr; }
	.footer__bottom { flex-direction: column; text-align: center; }
	.hero__scroll { display: none; }
}

/* =========================================================================
   Inner pages (Figma 337:565, 337:1056, 337:2410, 338:155)
   Inner pages use Ploni; homepage keeps Fb Tubic-Sans.
   ========================================================================= */
.page-inner {
	font-family: 'Ploni', var(--font-main);
	font-weight: 400;
	padding-top: 180px; /* fixed light header + top gold line */
	padding-bottom: var(--section-gap);
}

/* Light header variant (all inner pages) */
.site-header--light {
	background: var(--c-white);
	color: var(--c-navy);
	border-top: 4px solid var(--c-gold);
	border-bottom: 1px solid rgb(15 44 78 / .08);
}
.site-header--light .header__menu li + li::before,
.site-header--light + .mobile-nav .footer__menu li + li::before { background: rgb(15 44 78 / .35); }
.site-header--light.is-scrolled { background: var(--c-white); color: var(--c-navy); box-shadow: 0 4px 24px rgb(15 44 78 / .1); }

/* Page hero */
.page-hero { margin-bottom: clamp(2rem, 3vw, 3.5rem); }
.page-hero__title {
	font-size: clamp(3rem, 5.72vw, 6.875rem); /* 110px */
	font-weight: 700;
	color: var(--c-navy);
	line-height: 0.98;
}
.page-hero__title--md {
	font-size: clamp(2.25rem, 3.65vw, 4.375rem); /* 70px */
	line-height: 1.15;
	max-width: 1295px;
}
.page-hero__intro {
	margin-top: clamp(1.5rem, 2.5vw, 3rem);
	font-size: clamp(1.375rem, 1.67vw, 2rem); /* 32px */
	line-height: 1.45;
	color: var(--c-navy);
	max-width: 1460px;
}
.page-hero--single .page-hero__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
}
.page-hero__eyebrow {
	font-size: clamp(1.5rem, 2.08vw, 2.5rem); /* 40px */
	font-weight: 500;
	color: var(--c-navy);
}
.page-hero--single .rule--gold { margin-top: 0; }

.btn--ghost {
	min-width: 327px;
	border: 1px solid var(--c-gold);
	background: var(--c-white);
	color: var(--c-text);
	font-weight: 500;
}
.btn--ghost:hover { background: var(--c-gold); color: var(--c-white); }

.gold-bar { display: block; width: 43px; height: 3px; background: var(--c-gold); }
.link-underline { font-size: var(--fs-body); color: var(--c-gold); text-decoration: underline; text-underline-position: from-font; }
.link-underline:hover { color: var(--c-navy); }

/* =========================================================================
   Rulings archive
   ========================================================================= */
.rulings-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 117px 22px; /* vertical gap allows badges to breathe (Figma rows 552 + 98) */
}
.ruling-box {
	position: relative;
	border: 1px solid var(--c-gold);
	min-height: 552px;
	padding: 82px 36px 96px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.ruling-box__badge {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	min-width: 199px;
	padding: 0 1.5rem;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-navy);
	color: var(--c-white);
	font-size: 1.25rem;
	font-weight: 500;
	white-space: nowrap;
}
.ruling-box__badge--static { position: static; align-self: flex-start; }
.ruling-box__title {
	font-size: clamp(1.5rem, 1.875vw, 2.25rem); /* 36px */
	font-weight: 500;
	line-height: 1.28;
	color: var(--c-navy);
}
.ruling-box__title a:hover { color: var(--c-gold); }
.ruling-box__excerpt { font-size: var(--fs-body); line-height: 1.55; color: var(--c-text); }
.ruling-box__cite { font-size: var(--fs-body); font-weight: 500; line-height: 1.45; color: var(--c-navy); }
.ruling-box__links {
	position: absolute;
	inset-inline: 36px;
	bottom: 36px;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.load-more-wrap { text-align: center; margin-top: clamp(3rem, 5vw, 6rem); }
.load-more {
	font-size: var(--fs-md);
	color: var(--c-navy);
	border-bottom: 1px solid var(--c-gold);
	padding-bottom: 6px;
	transition: color .25s ease;
}
.load-more:hover { color: var(--c-gold); }
.load-more.is-loading { opacity: .5; pointer-events: none; }

/* =========================================================================
   Single layout (ruling / practice) — content + question box
   ========================================================================= */
.single-ruling__cite {
	font-size: clamp(1.5rem, 2.08vw, 2.5rem); /* 40px */
	font-weight: 500;
	color: var(--c-gold);
	line-height: 1.25;
	margin-bottom: clamp(2rem, 3vw, 3.5rem);
	max-width: 1460px;
}
.single-layout {
	display: grid;
	grid-template-columns: 603px 1fr;
	gap: clamp(2.5rem, 4vw, 6rem);
	align-items: start;
}
.single-layout__content { order: -1; grid-column: 2; grid-row: 1; }
.single-layout .question-box { grid-column: 1; grid-row: 1; }

.entry-content { font-size: var(--fs-body); line-height: 1.75; color: var(--c-text); max-width: 902px; }
.entry-content p { margin-bottom: 1em; }
.entry-content h2, .entry-content h3 {
	font-weight: 700;
	color: var(--c-navy);
	font-size: 1.375rem;
	margin: 2em 0 .75em;
}
.single-ruling__meta { margin-top: 2.5rem; color: var(--c-text); }
.single-ruling__meta strong { color: var(--c-text); font-weight: 700; }

/* Question box (sand) */
.question-box {
	background: #f8dfb1;
	padding: clamp(2rem, 3vw, 5rem) clamp(1.75rem, 3vw, 3.6rem);
	position: sticky;
	top: 140px;
}
.question-box__title { font-size: clamp(1.75rem, 2.08vw, 2.5rem); font-weight: 400; color: var(--c-navy); margin-bottom: 2rem; }
.question-box__title strong { font-weight: 700; }
.question-form__field { border-bottom: 1px solid var(--c-text); margin-bottom: 2rem; }
.question-form__field input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 1.25rem;
	padding: .5rem 0;
	font-family: inherit;
}
.question-form__field input::placeholder { color: var(--c-text); }
.question-form__field:focus-within { border-color: var(--c-navy); }
.question-form__consent {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	font-size: 1rem;
	line-height: 1.4;
	color: var(--c-text);
	margin-block: 2rem;
	cursor: pointer;
}
.question-form__consent input {
	appearance: none;
	width: 28px;
	height: 30px;
	flex: 0 0 auto;
	border: 1px solid var(--c-text);
	display: grid;
	place-items: center;
	background: transparent;
	cursor: pointer;
}
.question-form__consent input:checked::after { content: '✓'; color: var(--c-navy); }
.question-form__submit {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.25rem;
	color: var(--c-navy);
	font-weight: 400;
}
.question-form__submit svg { width: 35px; transition: translate .3s ease; }
.question-form__submit:hover svg { translate: -6px 0; }

/* =========================================================================
   Practice archive
   ========================================================================= */
.practice-archive__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(2rem, 6vw, 7.2rem) 20px; /* Figma vertical rhythm ~115px */
	margin-top: clamp(2.5rem, 4vw, 5rem);
}
.practice-row {
	position: relative;
	display: grid;
	grid-template-columns: 305px 1fr;
	min-height: 314px;
	border: 1px solid var(--c-gold);
}
.practice-row__media { position: relative; margin: -1px 0 -1px; }
.practice-row__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.practice-row__media { overflow: hidden; }
.practice-row:hover .practice-row__img { transform: scale(1.06); }
.practice-row__shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgb(15 44 78 / 0), rgb(15 44 78 / .7)); }
.practice-row__body { padding: 60px 44px 90px; }
.practice-row__title { font-size: clamp(1.5rem, 1.875vw, 2.25rem); font-weight: 700; color: var(--c-navy); margin-bottom: .75rem; line-height: 1; }
.practice-row__desc { font-size: var(--fs-body); line-height: 1.65; color: var(--c-navy); }

.circle-arrow {
	position: absolute;
	inset-inline-end: 0;
	bottom: 0;
	width: 69px;
	height: 69px;
	border-radius: 50%;
	border: 1px solid var(--c-gold);
	background: var(--c-white);
	display: grid;
	place-items: center;
	color: var(--c-gold);
	translate: -50% 0;
	transform: translateY(0);
	transition: background-color .3s ease, color .3s ease;
}
[dir='rtl'] .circle-arrow { translate: 50% 0; } /* half over the inline-end border */
.circle-arrow svg { width: 32px; }
.practice-row:hover .circle-arrow { background: var(--c-gold); color: var(--c-white); }

/* =========================================================================
   Practice single — topics chips
   ========================================================================= */
.single-practice__topics-title { font-size: 1.375rem; font-weight: 700; color: var(--c-navy); margin: 2.5em 0 1em; }
.topics-grid {
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 17px;
}
.topics-grid__item {
	border: 1px solid var(--c-gold);
	min-height: 72px;
	display: flex;
	align-items: center;
	padding: .75rem 2.25rem;
	font-size: var(--fs-body);
	font-weight: 500;
	color: var(--c-navy);
	line-height: 1.15;
}
.single-practice__closing { margin-top: 2rem; }
.single-practice__closing strong { font-weight: 700; color: var(--c-text); }

/* =========================================================================
   Inner responsive
   ========================================================================= */
@media (max-width: 1280px) {
	.rulings-archive__grid { grid-template-columns: repeat(2, 1fr); gap: 80px 22px; }
	.single-layout { grid-template-columns: 1fr; }
	.single-layout__content { grid-column: 1; grid-row: 1; }
	.single-layout .question-box { grid-column: 1; grid-row: 2; position: static; max-width: 640px; }
	.practice-archive__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
	.page-inner { padding-top: 130px; }
	.rulings-archive__grid { grid-template-columns: 1fr; gap: 64px; }
	.ruling-box { min-height: 0; padding: 72px 28px 110px; }
	.ruling-box__links { flex-direction: column; align-items: flex-start; inset-inline: 28px; bottom: 28px; }
	.practice-row { grid-template-columns: 1fr; }
	.practice-row__media { min-height: 240px; }
	.practice-row__body { padding: 32px 28px 80px; }
	.btn--ghost { min-width: 0; width: 100%; }
	.page-hero--single .page-hero__meta { flex-direction: column; align-items: flex-start; }
}
