/* ==========================================================================
   Sinnis Home Stay — design system
   Dark editorial luxury: near-black ground, ivory type, brushed gold accent.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
	font-family: 'Cormorant Garamond';
	src: url('../fonts/cormorant-garamond.woff2') format('woff2');
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Cormorant Garamond';
	src: url('../fonts/cormorant-garamond-500-italic.woff2') format('woff2');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	--bg: #0b0b0c;
	--surface: #131315;
	--surface-2: #1a1a1e;
	--ink: #f3efe6;
	--ink-dim: #b9b4a8;
	--gold: #c5a059;
	--gold-bright: #e0c284;
	--line: rgba(197, 160, 89, 0.22);
	--line-soft: rgba(243, 239, 230, 0.08);
	--serif: 'Cormorant Garamond', 'Georgia', serif;
	--sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--container: 74rem;
	--radius: 14px;
	--shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 0.5em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1em; }
a { color: var(--gold-bright); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--ink); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: #0b0b0c; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.icon { flex: none; }

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 200;
	background: var(--gold); color: #0b0b0c; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 0.55rem;
	padding: 0.85rem 1.7rem; border-radius: 999px;
	font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
	transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.btn--gold {
	background: linear-gradient(135deg, var(--gold-bright), var(--gold));
	color: #171204;
}
.btn--gold:hover { color: #171204; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197, 160, 89, 0.35); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.cluster { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset: 0 0 auto; z-index: 100;
	transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	background: rgba(11, 11, 12, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-color: var(--line-soft);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.85rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__logo img { height: 3rem; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; letter-spacing: 0.02em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav__list { display: flex; gap: 1.6rem; }
.site-nav__list a {
	position: relative; color: var(--ink-dim); font-size: 0.92rem; font-weight: 500; padding-block: 0.4rem;
}
.site-nav__list a::after {
	content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
	background: var(--gold); transition: right 0.35s var(--ease);
}
.site-nav__list a:hover, .site-nav__list a[aria-current='page'] { color: var(--ink); }
.site-nav__list a:hover::after, .site-nav__list a[aria-current='page']::after { right: 0; }

.nav-toggle { display: none; padding: 0.5rem; color: var(--ink); }
.nav-toggle .icon--x { display: none; }
.nav-toggle[aria-expanded='true'] .icon--menu { display: none; }
.nav-toggle[aria-expanded='true'] .icon--x { display: block; }

@media (max-width: 860px) {
	.nav-toggle { display: block; }
	.site-nav {
		position: fixed; inset: 0; z-index: -1;
		flex-direction: column; justify-content: center; gap: 2.2rem;
		background: rgba(11, 11, 12, 0.97);
		opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
	}
	body.nav-open .site-nav { opacity: 1; visibility: visible; }
	body.nav-open { overflow: hidden; }
	.site-nav__list { flex-direction: column; align-items: center; gap: 1.4rem; }
	.site-nav__list a { font-size: 1.35rem; font-family: var(--serif); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tint { background: var(--surface); }
.section-head { max-width: 44rem; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 0.6rem;
	font-size: 0.75rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 2.2rem; height: 1px; background: var(--gold); }
.section-head--center .eyebrow::after { content: ''; width: 2.2rem; height: 1px; background: var(--gold); }
.lead { color: var(--ink-dim); font-size: 1.08rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92svh; display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__media img { animation: hero-drift 18s var(--ease) forwards; transform-origin: center 30%; }
@keyframes hero-drift { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
	content: ''; position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.25) 40%, rgba(11,11,12,0.93) 88%),
		radial-gradient(80% 60% at 20% 80%, rgba(197,160,89,0.14), transparent 60%);
}
.hero__content { padding-block: clamp(5rem, 12vw, 8rem) clamp(3rem, 7vw, 5rem); }
.hero__content .eyebrow { animation: rise 0.9s var(--ease) 0.15s backwards; }
.hero__title { max-width: 15ch; animation: rise 0.9s var(--ease) 0.3s backwards; }
.hero__title em { font-style: italic; font-weight: 500; color: var(--gold-bright); }
.hero__sub { max-width: 46ch; font-size: 1.12rem; color: var(--ink-dim); animation: rise 0.9s var(--ease) 0.45s backwards; }
.hero__actions { margin-top: 1.8rem; animation: rise 0.9s var(--ease) 0.6s backwards; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } }

.hero__scroll {
	position: absolute; left: 50%; bottom: 1.2rem; translate: -50% 0;
	color: var(--gold); opacity: 0.85; animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(6px); } }

/* ---------- Stats band ---------- */
.stats { border-block: 1px solid var(--line-soft); background: var(--surface); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 2rem 1rem; text-align: center; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: 0; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; color: var(--gold-bright); }
.stat__label { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); }
@media (max-width: 700px) {
	.stats__grid { grid-template-columns: 1fr 1fr; }
	.stat:nth-child(3) { border-left: 0; }
	.stat { border-top: 1px solid var(--line-soft); }
	.stat:nth-child(-n+2) { border-top: 0; }
}

/* ---------- Generic grids & cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
	position: relative; padding: 1.9rem;
	background: linear-gradient(160deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line-soft); border-radius: var(--radius);
	transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.card__icon {
	display: grid; place-items: center; width: 3.1rem; height: 3.1rem; margin-bottom: 1.2rem;
	border: 1px solid var(--line); border-radius: 12px; color: var(--gold-bright);
	background: rgba(197, 160, 89, 0.07);
}
.card__num {
	position: absolute; top: 1.3rem; right: 1.5rem;
	font-family: var(--serif); font-size: 1.05rem; color: var(--line);
}
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--ink-dim); font-size: 0.95rem; margin: 0; }

/* ---------- Split (media + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; }
.split__media picture { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media::before {
	content: ''; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
	border: 1px solid var(--line); border-radius: var(--radius); z-index: -1;
}
.split__badge {
	position: absolute; bottom: -1.1rem; left: 1.6rem;
	display: flex; align-items: center; gap: 0.6rem;
	background: var(--gold); color: #171204;
	padding: 0.65rem 1.1rem; border-radius: 10px;
	font-weight: 600; font-size: 0.85rem; box-shadow: var(--shadow);
}

.checks li { display: flex; gap: 0.7rem; align-items: flex-start; padding-block: 0.45rem; color: var(--ink-dim); }
.checks .icon { color: var(--gold); margin-top: 0.2rem; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.filters button {
	padding: 0.5rem 1.2rem; border-radius: 999px; border: 1px solid var(--line-soft);
	color: var(--ink-dim); font-size: 0.88rem; font-weight: 500;
	transition: all 0.3s;
}
.filters button:hover { border-color: var(--gold); color: var(--ink); }
.filters button[aria-pressed='true'] { background: var(--gold); border-color: var(--gold); color: #171204; }

.masonry { columns: 3 260px; column-gap: 1.2rem; }
.masonry > * { break-inside: avoid; margin-bottom: 1.2rem; }

.g-item { position: relative; display: block; width: 100%; padding: 0; border-radius: var(--radius); overflow: hidden; text-align: left; }
.g-item img { transition: transform 0.6s var(--ease); }
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption {
	position: absolute; inset: auto 0 0; padding: 2.2rem 1.1rem 0.9rem;
	background: linear-gradient(transparent, rgba(11, 11, 12, 0.85));
	font-size: 0.88rem; color: var(--ink);
	opacity: 0; translate: 0 8px; transition: opacity 0.35s, translate 0.35s;
}
.g-item:hover figcaption, .g-item:focus-visible figcaption { opacity: 1; translate: 0 0; }
.g-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
	position: fixed; inset: 0; z-index: 150; display: none;
	background: rgba(8, 8, 9, 0.94); backdrop-filter: blur(6px);
	place-items: center; padding: 3.5rem 1rem 4.5rem;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 82svh; max-width: min(94vw, 1200px); width: auto; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox__caption { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: var(--ink-dim); font-size: 0.92rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
	position: absolute; z-index: 1; display: grid; place-items: center;
	width: 2.9rem; height: 2.9rem; border-radius: 50%;
	background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-soft); color: var(--ink);
	transition: background 0.3s, border-color 0.3s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(197, 160, 89, 0.2); border-color: var(--gold); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1rem; top: 50%; translate: 0 -50%; rotate: 90deg; }
.lightbox__next { right: 1rem; top: 50%; translate: 0 -50%; rotate: -90deg; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 46rem; margin-inline: auto; padding-left: 2.4rem; }
.timeline::before { content: ''; position: absolute; left: 0.55rem; top: 0.4rem; bottom: 0.4rem; width: 1px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 2.4rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
	content: ''; position: absolute; left: -2.4rem; top: 0.42rem;
	width: 1.15rem; height: 1.15rem; border-radius: 50%;
	border: 1px solid var(--gold); background: var(--bg);
	box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
}
.timeline__year { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-bright); font-weight: 700; }
.timeline__item p { color: var(--ink-dim); margin: 0.2rem 0 0; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 46rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
	display: flex; justify-content: space-between; align-items: center; gap: 1rem;
	padding: 1.15rem 0.2rem; cursor: pointer; list-style: none;
	font-weight: 600; font-size: 1.02rem;
	transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-bright); }
.faq summary .icon { color: var(--gold); transition: rotate 0.3s var(--ease); }
.faq details[open] summary .icon { rotate: 180deg; }
.faq details p { color: var(--ink-dim); padding: 0 0.2rem 1.2rem; margin: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--ink-dim); }
.field input, .field select, .field textarea {
	font: inherit; color: var(--ink);
	background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: 10px;
	padding: 0.8rem 1rem; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(185, 180, 168, 0.5); }
.field input[type='date'] { color-scheme: dark; }
.hp-field { position: absolute !important; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.notice { display: flex; gap: 0.7rem; align-items: flex-start; padding: 1rem 1.2rem; border-radius: 10px; margin-bottom: 1.6rem; font-size: 0.95rem; }
.notice--ok { background: rgba(88, 160, 90, 0.12); border: 1px solid rgba(88, 160, 90, 0.4); color: #b9e0ba; }
.notice--err { background: rgba(190, 80, 70, 0.12); border: 1px solid rgba(190, 80, 70, 0.4); color: #eec0ba; }

/* ---------- Contact info panel ---------- */
.info-panel { display: flex; flex-direction: column; gap: 1.4rem; }
.info-panel__row { display: flex; gap: 1rem; align-items: flex-start; }
.info-panel__row .card__icon { margin: 0; width: 2.7rem; height: 2.7rem; }
.info-panel__row h3 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 0.15rem; }
.info-panel__row p, .info-panel__row a { margin: 0; font-size: 1.02rem; color: var(--ink); }
.info-panel__row a:hover { color: var(--gold-bright); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--surface); }
.site-footer__cta { text-align: center; padding-block: clamp(3.5rem, 7vw, 5.5rem); border-bottom: 1px solid var(--line-soft); }
.site-footer__cta-title { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.site-footer__cta p { color: var(--ink-dim); }
.site-footer__cta .cluster { justify-content: center; margin-top: 1.4rem; }
.site-footer__grid {
	display: grid; grid-template-columns: 1.4fr 1fr 0.8fr 1.1fr; gap: 2.4rem;
	padding-block: clamp(2.6rem, 5vw, 4rem);
}
@media (max-width: 980px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.brand--footer { margin: 0 0 0.6rem; display: flex; align-items: baseline; gap: 0.5rem; }
.site-footer__tagline { color: var(--ink-dim); font-size: 0.94rem; max-width: 30ch; }
.site-footer__heading { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.94rem; }
.site-footer__list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ink-dim); }
.site-footer__list .icon { color: var(--gold); margin-top: 0.15rem; }
.site-footer__list a { color: var(--ink-dim); }
.site-footer__list a:hover { color: var(--gold-bright); }
.site-footer__legal {
	display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
	padding-block: 1.4rem; border-top: 1px solid var(--line-soft);
	color: var(--ink-dim); font-size: 0.85rem;
}
.site-footer__credit a { color: var(--gold); }
.site-footer__credit a:hover { color: var(--gold-bright); }
.site-footer__legal p { margin: 0; }
.to-top { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border: 1px solid var(--line-soft); border-radius: 50%; color: var(--gold); }
.to-top .icon { rotate: 180deg; }
.to-top:hover { border-color: var(--gold); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; padding-block: clamp(9rem, 16vw, 12rem) clamp(3rem, 6vw, 4.5rem); isolation: isolate; overflow: hidden; }
.page-hero__media, .page-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after {
	content: ''; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(11,11,12,0.72), rgba(11,11,12,0.94));
}
.page-hero .lead { max-width: 52ch; }
.breadcrumbs { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-dim); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--gold); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.56s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.reveal, .reveal-stagger > * { opacity: 1; transform: none; }
	.hero__media img { animation: none; }
}

/* ---------- Home gallery strip: uniform tiles regardless of source ratio ---------- */
.g-link { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; position: relative; }
.g-link picture, .g-link img { width: 100%; height: 100%; object-fit: cover; }
.g-link img { transition: transform 0.6s var(--ease); }
.g-link:hover img { transform: scale(1.05); }
.g-link::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(transparent 70%, rgba(11, 11, 12, 0.45));
	opacity: 0; transition: opacity 0.35s;
}
.g-link:hover::after { opacity: 1; }

/* ---------- Prose (legal pages / fallback content) ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.6rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.6rem; }
.prose p, .prose li { color: var(--ink-dim); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1em; }

/* ---------- Utility ---------- */
.text-gold { color: var(--gold-bright); }
.mt-2 { margin-top: 2rem; }
.center { text-align: center; }
