/*
 * Base typography — Inter for body, Fraunces for headings.
 */

body,
button,
input,
select,
optgroup,
textarea {
	color: var(--ink);
	background-color: var(--bone);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: var(--text-base);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-optical-sizing: auto;
	color: var(--ink);
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: var(--space-3);
}

h1 { font-size: var(--text-3xl); line-height: 1.15; }
h2 { font-size: var(--text-2xl); line-height: 1.2; }
h3 { font-size: var(--text-xl); line-height: 1.25; }
h4 { font-size: var(--text-lg); line-height: 1.3; }
h5 { font-size: var(--text-base); }
h6 { font-size: var(--text-sm); }

p {
	margin-top: 0;
	margin-bottom: var(--space-4);
}

a {
	color: var(--wine);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	transition: color 0.15s ease;
}

a:visited {
	color: var(--wine);
}

a:hover,
a:focus {
	color: var(--wine-dark);
}

a:focus {
	outline: 2px solid var(--wine);
	outline-offset: 2px;
}

a:hover,
a:active {
	outline: 0;
}

/* Tabular numbers for prices and data */
.price,
.tabular,
[data-price] {
	font-variant-numeric: tabular-nums;
}

/* Eyebrow label — uppercase small muted label above headings */
.eyebrow {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mute);
	margin-bottom: var(--space-2);
}

/* Lead paragraph */
.lead {
	font-size: var(--text-lg);
	color: var(--ink);
	margin-bottom: var(--space-4);
}

/* Muted / secondary text */
.muted {
	color: var(--mute);
	font-size: var(--text-sm);
}

blockquote {
	border-left: 3px solid var(--gold);
	margin: 0 0 var(--space-5);
	padding: var(--space-3) var(--space-5);
	font-family: 'Fraunces', Georgia, serif;
	font-size: var(--text-lg);
	color: var(--ink);
}

blockquote cite {
	display: block;
	margin-top: var(--space-2);
	font-family: 'Inter', sans-serif;
	font-size: var(--text-sm);
	font-style: normal;
	color: var(--mute);
}

address {
	font-style: normal;
	line-height: 1.6;
}

hr {
	border: 0;
	border-top: 1px solid var(--rule);
	margin: var(--space-6) 0;
}

ul,
ol {
	margin: 0 0 var(--space-4) var(--space-5);
	padding: 0;
}

li {
	margin-bottom: var(--space-1);
}

img {
	height: auto;
	max-width: 100%;
	display: block;
}

embed,
iframe,
object {
	max-width: 100%;
}

table {
	margin: 0 0 var(--space-4);
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: var(--space-2) var(--space-3);
	border-bottom: 1px solid var(--rule);
	text-align: left;
}

th {
	font-weight: 600;
	color: var(--ink);
}
