@font-face {
font-family: 'IBM Plex Mono';
src: url('/fonts/.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Fraunces';
src: url('/fonts/.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('/fonts/.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}
/*
html
*/
:root {
	--ink: #1B242C;
	--ink-deep: #12181E;
	--ink-rise: #222E38;
	--gold: #C8B288;
	--gold-light: #E4D4AC;
	--line: #3A4552;
	--ivory: #EDE8DD;
	--muted: #8B96A3;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--ink);
	color: var(--ivory);
	font-family: 'Inter',sans-serif;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}
a {
	color: inherit;
}
.plate {
	font-family: 'IBM Plex Mono',monospace;
	letter-spacing: .14em;
	text-transform: uppercase;
}

/* ---------- HERO ---------- */
.hero {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8vh 6vw 10vh;
	position: relative;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,178,136,0.07), transparent 60%),
    var(--ink);
	overflow: hidden;
}
.hero-light {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8vh 6vw 10vh;
	position: relative;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,178,136,0.07), transparent 60%),
    var(--ink);
	overflow: hidden;
}
.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 64px 64px;
	opacity: .06;
	mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black, transparent 75%);
}
.logo-wrap {
	position: relative;
	width: min(560px, 82vw);
	opacity: 0;
	transform: translateY(14px);
	animation: riseIn 1.1s cubic-bezier(.16,.8,.3,1) .15s forwards;
}
.logo-wrap img {
	width: 100%;
	display: block;
}

@keyframes riseIn {
to {
	opacity: 1;
	transform: translateY(0);
}
}

.hero-sub {
	margin-top: 2.6rem;
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	color: var(--gold-light);
	opacity: 0;
	animation: riseIn 1s ease .55s forwards;
	max-width: 36ch;
}
.hero-line {
	margin-top: 3.2rem;
	width: min(420px, 70vw);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0;
	animation: fadeIn 1.4s ease .9s forwards;
}
@keyframes fadeIn {
to {
	opacity: .55;
}
}

.hero-scroll {
	position: absolute;
	bottom: 5vh;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'IBM Plex Mono',monospace;
	font-size: .68rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--muted);
	opacity: 0;
	animation: fadeIn 1.4s ease 1.2s forwards;
}

/* ---------- PLATE STRIP ---------- */
.strip {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--ink-deep);
	padding: 1.6rem 6vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.4rem 4.2rem;
}
.strip-item {
	text-align: center;
}
.strip-item .k {
	font-family: 'IBM Plex Mono',monospace;
	font-size: .66rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: .45rem;
}
.strip-item .v {
	font-family: 'Fraunces',serif;
	font-size: 1.05rem;
	color: var(--gold-light);
	letter-spacing: .02em;
}

/* ---------- SECTION SHARED ---------- */
section.block {
	padding: min(14vh,7rem) 6vw;
	max-width: 1180px;
	margin: 0 auto;
}
.eyebrow {
	font-family: 'IBM Plex Mono',monospace;
	font-size: .7rem;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.1rem;
	display: flex;
	align-items: center;
	gap: .8rem;
}
.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--gold);
	opacity: .7;
}
h2 {
	font-family: 'Fraunces',serif;
	font-weight: 400;
	font-size: clamp(1.9rem, 3.4vw, 2.7rem);
	margin: 0 0 1.6rem;
	color: var(--ivory);
	letter-spacing: .01em;
}

/* ---------- ABOUT ---------- */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 4.5rem;
	align-items: start;
}
@media(max-width:820px) {
	.about-grid{
	grid-template-columns: 1fr;
	gap: 2.4rem;
} }
.about-grid p {
	font-size: 1.02rem;
	line-height: 1.85;
	color: #CBC5B7;
	font-weight: 300;
}
.about-grid p + p {
	margin-top: 1.2rem;
}
.trace {
	width: 100%;
	height: auto;
	display: block;
}
.trace path {
	fill: none;
	stroke: var(--gold);
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: .85;
}

/* ---------- DIVIDER ---------- */
.thread {
	width: 100%;
	overflow: hidden;
	line-height: 0;
	padding: 0 6vw;
}
.thread svg {
	width: 100%;
	height: 40px;
	display: block;
}
.thread path {
	fill: none;
	stroke: var(--line);
	stroke-width: 1;
}

/* ---------- CONTACT ---------- */
.contact-wrap {
	background: var(--ink-rise);
	border: 1px solid var(--line);
	border-radius: 2px;
	padding: clamp(2.2rem, 5vw, 3.6rem);
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 3rem;
}
@media(max-width:820px) {
	.contact-wrap{
	grid-template-columns: 1fr;
} }
.contact-wrap h3 {
	font-family: 'Fraunces',serif;
	font-weight: 400;
	font-size: 1.4rem;
	color: var(--gold-light);
	margin: 0 0 1.1rem;
}
.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.contact-list li {
	padding: .85rem 0;
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: .25rem;
}
.contact-list li:last-child {
	border-bottom: none;
}
.contact-list .k {
	font-family: 'IBM Plex Mono',monospace;
	font-size: .64rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted);
}
.contact-list .v {
	font-size: 1rem;
	color: var(--ivory);
	font-weight: 400;
}
.contact-list a.v:hover {
	color: var(--gold-light);
}
.placeholder {
	color: var(--gold);
	font-style: italic;
	font-family: 'Fraunces',serif;
}

/* ---------- FOOTER / IMPRESSUM ---------- */
footer {
	border-top: 1px solid var(--line);
	background: var(--ink-deep);
	padding: 4rem 6vw 3rem;
}
.footer-grid {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
	font-size: .85rem;
	color: var(--muted);
	line-height: 1.75;
}
@media(max-width:720px) {
	.footer-grid{
	grid-template-columns: 1fr;
} }
.footer-grid h4 {
	font-family: 'IBM Plex Mono',monospace;
	font-size: .64rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 .9rem;
	font-weight: 500;
}
.footer-bottom {
	max-width: 1180px;
	margin: 3rem auto 0;
	padding-top: 1.6rem;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-family: 'IBM Plex Mono',monospace;
	font-size: .68rem;
	letter-spacing: .08em;
	color: var(--muted);
}
.footer-bottom .mark {
	color: var(--gold);
}
@media (prefers-reduced-motion: reduce) {
	.logo-wrap, .hero-sub, .hero-line, .hero-scroll {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

::selection {
	background: var(--gold);
	color: var(--ink);
}
