:root {
	--green: #214a3c;
	--green2: #1b3c31;
	--paper: #f3f1ee;
	--paper2: #efece8;
	--gold: #c9a24a;
	--ink: #2b2a29;
	--gold-beam: linear-gradient(90deg, #c1ae87 0%, #efdfc4 40%, #efdfc4 60%, #c1ae87 100%);
	--gold-bar: linear-gradient(90deg, #d1c0a4 0%, #c9a24a 25%, #c9a24a 75%, #d1c0a4 100%);
	--gold-scale: linear-gradient(90deg, transparent 0%, rgba(120, 90, 30, 0.4) 8%, rgba(180, 140, 63, 0.8) 18%, rgba(220, 185, 100, 1) 30%, rgba(255, 235, 150, 1) 42%, rgba(255, 248, 190, 1) 50%, rgba(255, 235, 150, 1) 58%, rgba(220, 185, 100, 1) 70%, rgba(180, 140, 63, 0.8) 82%, rgba(120, 90, 30, 0.4) 92%, transparent 100%);
	--gold-metallic: linear-gradient(180deg, #a07c2e 0%, #d4a94e 20%, #f5e4b3 45%, #c9a24a 55%, #8a6b28 80%, #d4a94e 100%);
	--bg-paper: linear-gradient(180deg, var(--paper), var(--paper2));
}

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

html,
body {
	height: 100%;
}

body {
	margin: 0;
	color: var(--ink);
	background: #fff;
	font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

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

/* ── Playfair Display vertical compression ── */

.nav__link,
.paperBlock__title,
.artSection__label,
.contactOverlay__detail,
.footer__brand,
.footer__link,
.btn {
	transform: scaleY(0.85);
}

/* ── Top bar ── */

.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: url("../assets/images/bgGreenTexture.webp") center / 100% auto no-repeat;
	border-bottom: none;
}

.topbar::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gold-bar);
}

.topbar__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 22px 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
}

.nav__link {
	font-family: "Playfair Display", serif;
	letter-spacing: 0.08em;
	color: #f0efe8;
	text-decoration: none;
	font-size: 24px;
	font-weight: 600;
	transition: opacity 0.2s;
}

.nav__link:hover {
	opacity: 0.85;
}

.nav__link--active {
	color: var(--gold);
}

.nav__iconBtn {
	position: absolute;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	text-decoration: none;
}

.cartIcon {
	width: 18px;
	height: 18px;
	display: inline-block;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 3px;
	position: relative;
}

.cartIcon::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 6px;
	left: 2px;
	top: -6px;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-bottom: none;
	border-radius: 4px 4px 0 0;
}

/* ── Ornament ── */

.ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.ornament__line {
	width: min(220px, 26vw);
	height: 14px;
	position: relative;
	background: none;
}

.ornament__line::before {
	content: "";
	position: absolute;
	top: 50%;
	height: 1.5px;
	transform: translateY(-50%);
}

.ornament__line::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
}

.ornament__line:first-child::before {
	left: 0;
	right: 8px;
	background: linear-gradient(to right, rgba(160, 115, 30, 0), #9e7a1e 40%, #c9a033 70%, #dbb842);
}

.ornament__line:first-child::after {
	right: 0;
	border-top: 4.5px solid transparent;
	border-bottom: 4.5px solid transparent;
	border-left: 10px solid #dbb842;
	filter: drop-shadow(0 0 1px rgba(220, 190, 80, 0.4));
}

.ornament__line:last-child::before {
	right: 0;
	left: 8px;
	background: linear-gradient(to left, rgba(160, 115, 30, 0), #9e7a1e 40%, #c9a033 70%, #dbb842);
}

.ornament__line:last-child::after {
	left: 0;
	border-top: 4.5px solid transparent;
	border-bottom: 4.5px solid transparent;
	border-right: 10px solid #dbb842;
	filter: drop-shadow(0 0 1px rgba(220, 190, 80, 0.4));
}

.ornament__crest {
	width: 150px;
	height: 150px;
	object-fit: contain;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.14));
}

/* ── Full-width art sections ── */

.hero,
.artSection {
	width: 100%;
	background: #fff;
}

.hero {
	position: relative;
	height: calc(100vh - 76px);
	overflow: hidden;
}

.hero .fullWidthArt {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__cta {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
}

.hero__cta .btn {
	padding: 16px 56px;
	font-size: 24px;
}

.fullWidthArt {
	width: 100%;
	height: auto;
	display: block;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── Art section overlay (About Us on the sports image) ── */

.artSection--overlay {
	position: relative;
	height: 450px;
	overflow: hidden;
}

.artSection--overlay .fullWidthArt {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.artSection__overlayText {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.artSection__label {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: clamp(28px, 5vw, 56px);
	letter-spacing: 0.12em;
	color: #fff;
	text-shadow:
		0 2px 20px rgba(0, 0, 0, 0.5),
		0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ── Paper blocks ── */

.paperBlock {
	position: relative;
	background: var(--bg-paper), url("../assets/images/bgTexture.webp");
	background-blend-mode: multiply;
	background-position: center;
	border-top: none;
	border-bottom: none;
}

.paperBlock::before,
.paperBlock::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gold-beam);
}

.paperBlock::before {
	top: 0;
}

.paperBlock::after {
	bottom: 0;
}

.paperBlock__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 44px 18px;
	text-align: center;
}

.paperBlock--tight .paperBlock__inner {
	padding: 38px 18px 50px;
}

.paperBlock__title {
	margin: 0 0 12px;
	font-family: "Playfair Display", serif;
	color: #b48e30;
	letter-spacing: 0.06em;
	font-weight: 700;
	font-size: clamp(36px, 6.5vw, 48px);
}

.paperBlock__copy {
	margin: 0 auto;
	max-width: 780px;
	line-height: 2;
	font-size: 16.5px;
	color: #4a3f31;
}

/* ── Buttons ── */

.btnRow {
	margin-top: 18px;
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	font-family: "Playfair Display", serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 12px 28px;
	border: 2px solid #ccb98f;
	background: linear-gradient(180deg, #f9f6f1, #efe6d4);
	color: #6a4c1c;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
	transition: filter 0.2s;
}

.btn:hover {
	filter: brightness(0.96);
}

.btn--light {
	background: linear-gradient(180deg, #2b5b4b, #1b3c31);
	border-color: rgba(201, 162, 74, 0.5);
	color: #f0efe8;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.paperBlock--tight .btn {
	font-size: 22px;
	padding: 16px 38px;
}

/* ── Contact overlay ── */

.artSection {
	position: relative;
}

.artSection#contact {
	height: 450px;
	overflow: hidden;
}

.artSection#contact .fullWidthArt {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 60%;
}

.contactOverlay {
	position: absolute;
	inset: 0;
}

.contactOverlay__content {
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.contactOverlay__detail {
	font-family: "Playfair Display", serif;
	font-size: 25px;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
	transition: opacity 0.2s;
}

.contactOverlay__detail:hover {
	opacity: 0.8;
}

/* ── Footer ── */

.footer {
	position: relative;
	background: url("../assets/images/bgGreenTexture.webp") center / 100% auto no-repeat;
	color: rgba(255, 255, 255, 0.75);
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gold-beam);
}

.footer__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 18px 28px;
}

.footer__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.12em;
	color: var(--gold);
}

.footer__nav {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__link {
	font-family: "Playfair Display", serif;
	font-size: 16px;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: color 0.2s;
}

.footer__link:hover {
	color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
	padding-top: 20px;
	text-align: center;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
}

/* ── Hamburger menu ── */

.navBurger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 2;
	-webkit-tap-highlight-color: transparent;
}

.navBurger__line {
	display: block;
	width: 22px;
	height: 2px;
	background: linear-gradient(90deg, #b8952a, #f5e4b3 40%, #f5e4b3 60%, #b8952a);
	border-radius: 1px;
	transition:
		transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
		opacity 0.3s ease;
	box-shadow: 0 0 4px rgba(201, 162, 74, 0.3);
}

.navBurger--open .navBurger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.navBurger--open .navBurger__line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.navBurger--open .navBurger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile contact (hidden on desktop) ── */

.contactMobile {
	display: none;
}

/* ── Responsive ── */

@media (max-width: 860px) {
	.navBurger {
		display: flex;
	}

	.topbar__inner {
		position: static;
		justify-content: space-between;
		padding: 12px 18px;
	}

	.nav__iconBtn {
		position: static;
		z-index: 2;
	}

	/* Mobile nav dropdown */
	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 100;
		flex-direction: column;
		align-items: center;
		gap: 0;
		padding: 20px 0;
		background: url("../assets/images/bgGreenTexture.webp") center / cover no-repeat;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
		clip-path: inset(0 0 100% 0);
		pointer-events: none;
		transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	}

	.nav::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: var(--gold-bar);
	}

	.nav--open {
		clip-path: inset(0 0 0 0);
		pointer-events: auto;
	}

	.nav__link {
		padding: 14px 0;
		font-size: 20px;
		opacity: 0;
		transition: opacity 0.25s ease;
	}

	.nav--open .nav__link {
		opacity: 1;
		transition-delay: 0.15s;
	}

	/* Hero */
	.hero {
		height: auto;
		aspect-ratio: 800 / 546;
		overflow: hidden;
	}

	.hero .fullWidthArt {
		height: auto;
		object-fit: contain;
	}

	.hero__cta .btn {
		font-size: 18px;
		padding: 14px 40px;
	}

	/* Art overlay */
	.artSection--overlay {
		height: auto;
	}

	.artSection--overlay .fullWidthArt {
		height: auto;
	}

	/* Contact */
	.artSection#contact {
		height: auto;
	}

	.artSection#contact .fullWidthArt {
		height: auto;
	}

	.contactOverlay {
		display: none;
	}

	.contactMobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 36px 18px;
		background: url("../assets/images/bgGreenTexture.webp") center / cover no-repeat;
	}

	.contactMobile__detail {
		font-family: "Playfair Display", serif;
		font-size: 20px;
		letter-spacing: 0.06em;
		color: rgba(255, 255, 255, 0.92);
		text-decoration: none;
		text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
		transform: scaleY(0.85);
		transition: opacity 0.2s;
	}

	.contactMobile__detail:hover {
		opacity: 0.8;
	}

	.contactMobile .btn--light {
		margin-top: 6px;
	}

	/* Paper blocks */
	.paperBlock__inner {
		padding: 32px 16px;
	}

	.paperBlock--tight .btn {
		font-size: 18px;
		padding: 14px 30px;
	}

	.footer__nav {
		gap: 16px;
	}

	.footer {
		background-size: cover;
	}
}

@media (max-width: 480px) {
	.hero__cta .btn {
		font-size: 16px;
		padding: 12px 28px;
	}

	.contactMobile__detail {
		font-size: 17px;
	}
}
