/* Design Mode Golf — responsive layout (replaces the original frameset) */
:root {
	--bronze: #8c6318;
	--bronze-dark: #5e420f;
	--bar: #966b2f;
	--gold: #d6b57b;
	--gold-light: #f3e7d0;
	--ink: #1e1a14;
	--muted: #6d6252;
	--rule: #e6d8bd;
	--serif: Georgia, "Times New Roman", Times, serif;
	--sans: "Helvetica Neue", Arial, Helvetica, sans-serif;
	--wrap: 1060px;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: #fff;
	color: var(--ink);
	font: 17px/1.7 var(--serif);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: var(--bronze);
	text-underline-offset: 2px;
}

a:hover {
	color: var(--bronze-dark);
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: #fff;
	padding: 8px 12px;
	z-index: 10;
}

.skip-link:focus {
	left: 8px;
}

/* ---------- Header: bronze bar with black tabs ---------- */
.site-header {
	background: var(--bar);
	border-bottom: 8px solid #000;
	padding: 10px 16px 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 12px 28px;
}

.brand {
	align-self: center;
	margin-bottom: 8px;
	color: #fff;
	font: italic 22px/1 var(--serif);
	letter-spacing: .02em;
	text-decoration: none;
	white-space: nowrap;
}

.brand span {
	color: #000;
}

.brand:hover {
	color: #fff;
}

.site-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	display: block;
	padding: 7px 18px 5px;
	background: #000;
	border-radius: 14px 14px 0 0;
	color: #fff;
	font: bold 14px/1.3 var(--sans);
	text-decoration: none;
	white-space: nowrap;
	transition: background .15s, color .15s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	background: #2a1f0b;
	color: var(--gold);
}

.site-nav a[aria-current] {
	background: #fff;
	color: var(--bronze);
}

.menu-toggle {
	display: none;
}

/* ---------- Page banner (striped band + script heading image) ---------- */
.banner {
	overflow: hidden;
	background: linear-gradient(to bottom, #000 calc(100% - 1px), #bdbdbd 0) left top / 100% var(--band) no-repeat;
	line-height: 0;
}

.banner img {
	display: block;
	width: 800px;
}

/* ---------- Main layout ---------- */
.page {
	flex: 1;
	width: 100%;
	max-width: var(--wrap);
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 40px;
	padding: 28px 24px 56px;
	background: url(../images/backmain.gif) no-repeat right -40px top 0;
}

.no-aside .page {
	grid-template-columns: minmax(0, 1fr);
}

.main {
	min-width: 0;
	max-width: 640px;
}

.no-aside .main {
	max-width: none;
}

.aside {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.main p {
	margin: 0 0 1em;
}

h1, h2, h3 {
	font-family: var(--serif);
	color: var(--bronze);
	line-height: 1.25;
}

h2 {
	font-size: 26px;
	margin: 1.6em 0 .6em;
}

h3 {
	font-size: 19px;
	margin: 1.6em 0 .4em;
}

.logo {
	display: block;
	margin: 0 0 18px;
}

.aside .logo {
	margin: 0;
}

.small {
	font-size: 14px;
	color: var(--muted);
}

.contact-line {
	font: 15px var(--sans);
}

.protected-email {
	font-weight: bold;
	white-space: nowrap;
}

.archived-email {
	font-weight: bold;
	white-space: nowrap;
}

.archive-note {
	margin-top: 2em !important;
	padding: 12px 16px;
	border-left: 3px solid var(--gold);
	background: var(--gold-light);
	font-size: 14px;
	line-height: 1.55;
	color: var(--muted);
}

/* Home */
.collage {
	width: 100%;
	max-width: 473px;
}

.quote-box {
	margin: 0;
	padding: 20px 24px;
	background: var(--gold);
	border: 3px double var(--bronze);
	font-size: 16px;
	line-height: 1.6;
	max-width: 360px;
}

.quote-box p {
	margin: 0;
}

/* Products gallery */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 20px;
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}

.gallery a {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--rule);
	text-decoration: none;
	color: var(--ink);
	transition: box-shadow .2s, transform .2s;
}

.gallery a:hover,
.gallery a:focus-visible {
	box-shadow: 0 8px 24px rgba(60, 40, 10, .18);
	transform: translateY(-2px);
}

.gallery img {
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
}

.gallery span {
	display: block;
	padding: 12px 12px 0;
	color: var(--bronze);
	font-weight: bold;
	font-size: 18px;
}

.gallery small {
	display: block;
	padding: 2px 12px 14px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.4;
}

.essay {
	max-width: 720px;
}

/* Product detail */
.product-title {
	margin: 0 0 4px;
	font-size: 34px;
}

.shot {
	margin: 0 0 1.4em !important;
	font-style: italic;
	color: var(--muted);
}

.sculpture {
	margin: 0;
}

.sculpture img {
	box-shadow: 10px 12px 24px rgba(0, 0, 0, .35);
}

.product .page {
	grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
}

.specs {
	margin: 2em 0;
	padding: 20px 24px;
	background: var(--gold);
	border: 3px double var(--bronze);
	font-size: 15px;
	line-height: 1.55;
}

.specs h2 {
	margin: 0 0 .4em;
	font-size: 19px;
	color: #000;
}

.specs p {
	margin: 0 0 .8em !important;
}

.specs dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 6px 16px;
	margin: 0;
}

.specs dt {
	font-weight: bold;
}

.specs dd {
	margin: 0;
}

.product-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 2em;
	padding-top: 16px;
	border-top: 1px solid var(--rule);
	font: bold 15px var(--sans);
}

.product-nav a {
	text-decoration: none;
}

.product-nav a:hover {
	text-decoration: underline;
}

/* Purchase */
.purchase-note {
	color: var(--bronze);
}

.address {
	margin-top: 1.5em;
	font: 15px/1.6 var(--sans);
}

/* Artist */
.portrait {
	margin: 0;
	max-width: 290px;
}

.portrait figcaption {
	margin-top: 14px;
	font-style: italic;
	font-size: 16px;
	line-height: 1.55;
}

.thought {
	margin-top: 2.2em;
	padding-top: .2em;
	border-top: 1px solid var(--rule);
}

/* Downloads */
.downloads {
	margin: 1.4em 0;
	padding: 0;
	list-style: none;
}

.downloads li {
	margin: 0 0 12px;
}

.downloads a {
	font-weight: bold;
}

.downloads small {
	color: var(--muted);
	font-size: 14px;
	white-space: nowrap;
}

.file-type {
	display: inline-block;
	min-width: 38px;
	margin-right: 6px;
	padding: 1px 5px;
	border-radius: 3px;
	background: var(--bronze);
	color: #fff;
	font: bold 11px/1.6 var(--sans);
	text-align: center;
	vertical-align: 2px;
}

/* Lesson Tee flags */
.flags ol {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 6px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.flags a {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 48px;
	padding: 4px 0;
	border-radius: 6px;
	font: 15px var(--serif);
	text-decoration: none;
}

.flags a:hover {
	background: var(--gold-light);
}

.flags a[aria-current] {
	background: var(--gold);
	color: #000;
	font-weight: bold;
}

.lesson-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	font-size: 24px;
}

.lesson-title img {
	flex: none;
}

/* Articles */
.article-title {
	margin: 0;
	font-size: 28px;
}

.byline {
	color: var(--muted);
	font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
	background: #000;
	color: #bbb;
	font: 13px/1.6 var(--sans);
	text-align: center;
	padding: 16px;
	border-top: 6px solid var(--bar);
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	color: var(--gold);
}

/* ---------- Tablet ---------- */
@media (max-width: 980px) {
	.site-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-nav ul {
		justify-content: flex-start;
	}

	.page,
	.product .page {
		grid-template-columns: minmax(0, 1fr);
	}

	.main {
		max-width: 720px;
	}

	.aside {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
	}

	.product .aside {
		order: -1;
	}

	.sculpture {
		max-width: 520px;
	}
}

/* ---------- Phone ---------- */
@media (max-width: 700px) {
	body {
		font-size: 17px;
	}

	.site-header {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		padding: 10px 14px;
	}

	.brand {
		margin: 0;
	}

	.menu-toggle {
		margin-left: auto;
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 9px 12px;
		background: #000;
		border: 0;
		border-radius: 6px;
		color: #fff;
		font: bold 13px var(--sans);
		text-transform: uppercase;
		letter-spacing: .05em;
		cursor: pointer;
	}

	.bars,
	.bars::before,
	.bars::after {
		display: block;
		width: 18px;
		height: 2px;
		background: #fff;
		position: relative;
	}

	.bars::before,
	.bars::after {
		content: "";
		position: absolute;
		left: 0;
	}

	.bars::before {
		top: -6px;
	}

	.bars::after {
		top: 6px;
	}

	.site-nav {
		display: none;
		flex-basis: 100%;
	}

	.site-nav.open {
		display: block;
	}

	.site-nav ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 6px;
		padding: 6px 0 4px;
	}

	.site-nav a {
		border-radius: 6px;
		padding: 11px 12px;
		text-align: center;
	}

	.page {
		padding: 20px 16px 40px;
		background-size: 520px auto;
		gap: 28px;
	}

	.product-title {
		font-size: 28px;
	}

	.gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.gallery span {
		font-size: 16px;
	}

	.specs {
		padding: 16px;
	}

	.specs dl {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.specs dd {
		margin-bottom: 8px;
	}

	.flags a {
		width: 34px;
	}

	.flags img {
		width: 30px;
	}

	.lesson-title {
		font-size: 21px;
	}

	.product-nav {
		font-size: 14px;
	}
}

@media (max-width: 520px) {
	.banner img {
		width: 560px;
		max-width: none;
		margin-left: var(--shift, 0);
	}
}

@media print {
	.site-header,
	.banner,
	.flags,
	.product-nav,
	.site-footer {
		display: none;
	}
}
