:root {
	--teal: #a0c7ca;
	--teal-dark: #5f8a8d;
	--gold: #e5c893;
	--dark: #1a1a1a;
	--light: #f4f4f4;
	--white: #ffffff;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: var(--light);
	color: var(--dark);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, .logo {
	font-family: 'Poppins', sans-serif;
	margin: 0;
}

/* Top bar */
.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 32px;
	background: var(--white);
	border-bottom: 1px solid rgba(26,26,26,0.08);
}

.logo {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	text-transform: lowercase;
}

.logo .dot {
	color: var(--gold);
}

.quicknav {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.quicknav button {
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: transparent;
	color: var(--dark);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.quicknav button:hover {
	background: var(--teal);
	color: var(--dark);
}

/* Stage / flipbook */
.stage {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 20px;
	min-height: calc(100vh - 72px);
}

.book-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
}

.book-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 18px;
	transform: translateX(-50%);
	background: linear-gradient(
		to right,
		rgba(0,0,0,0) 0%,
		rgba(0,0,0,0.10) 42%,
		rgba(0,0,0,0.16) 50%,
		rgba(0,0,0,0.10) 58%,
		rgba(0,0,0,0) 100%
	);
	pointer-events: none;
	z-index: 5;
}

.book-wrap.is-portrait::after {
	display: none;
}

/* #book is sized and positioned by the page-flip library at runtime */
#book {
	margin: 0 auto;
}

.page {
	background: var(--white);
	overflow: hidden;
}

.page-content {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 44px 38px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	box-sizing: border-box;
	overflow: hidden;
}

.band {
	position: absolute;
	left: 0;
	right: 0;
	height: 14px;
	background: var(--teal);
	border-top: 2px solid var(--gold);
	border-bottom: 2px solid var(--gold);
}

.band-top { top: 0; }
.band-bottom { bottom: 0; }

.eyebrow {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dark);
	opacity: 0.55;
	margin: 0;
}

.body-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--dark);
	opacity: 0.85;
	margin: 0;
}

/* Cover page (v2) */
.cover-v2 {
	padding: 0;
	display: block;
	position: relative;
}

.cover-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 6% 5% 0;
}

.cover-logo-mark {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--dark);
}

.cover-logo-mark .dot {
	color: var(--teal);
}

.cover-logo-sub {
	margin: 2px 0 0;
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--dark);
	opacity: 0.75;
}

.cover-header-right {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.shop-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--dark);
	text-align: right;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: inherit;
}

.dot-grid {
	background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1.2px, transparent 1.4px);
	background-size: 8px 8px;
}

.dot-grid--header {
	width: 44px;
	height: 44px;
}

.dot-grid--gold {
	position: absolute;
	top: 6%;
	right: 8%;
	width: 55%;
	height: 55%;
	background-image: radial-gradient(circle, rgba(255,255,255,0.55) 1.2px, transparent 1.4px);
	background-size: 8px 8px;
}

.cover-divider {
	margin: 3% 5% 0;
	border-top: 1px solid rgba(26,26,26,0.35);
}

.cover-hero {
	position: relative;
	margin: 4% 5% 0;
	height: 46%;
}

.teal-block {
	position: absolute;
	left: 0;
	top: 0;
	width: 68%;
	height: 92%;
	background: var(--teal);
}

.frame-box {
	position: absolute;
	left: 14%;
	top: 12%;
	width: 68%;
	height: 62%;
	border-top: 3px solid var(--light);
	border-left: 3px solid var(--light);
	border-right: 3px solid var(--light);
	padding: 5% 6% 0;
}

.frame-text-lg {
	margin: 0;
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.01em;
	color: rgba(255,255,255,0.9);
}

.frame-text-sm {
	margin: 4px 0 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.08;
	color: rgba(255,255,255,0.9);
}

.gold-arrow {
	position: absolute;
	left: 24%;
	bottom: 6%;
	width: 42%;
	height: 15%;
	background: var(--gold);
	clip-path: polygon(0% 28%, 58% 28%, 58% 0%, 100% 50%, 58% 100%, 58% 72%, 0% 72%);
}

.gold-block {
	position: absolute;
	right: 0;
	bottom: 4%;
	width: 32%;
	height: 24%;
	background: var(--gold);
	z-index: 1;
	overflow: hidden;
}

.bottle-stack {
	position: absolute;
	right: 2%;
	top: 18%;
	width: 48%;
	height: 78%;
	z-index: 2;
}

.bottle {
	position: absolute;
	object-fit: contain;
}

.bottle--back {
	left: 0;
	top: 0;
	width: 62%;
	height: 82%;
	opacity: 0.9;
}

.bottle--front {
	right: 0;
	bottom: 0;
	width: 68%;
	height: 90%;
}

.cover-titles {
	margin: 5% 0 0;
	padding: 0 5%;
}

.cover-title-thin {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 1.9rem;
	color: var(--dark);
	margin: 0;
	line-height: 1;
}

.cover-title-bold {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 3.1rem;
	text-transform: uppercase;
	color: var(--gold);
	margin: 2px 0 0;
	line-height: 0.95;
}

.cover-tag {
	margin: 6% 5% 0;
	display: inline-block;
	border: 1.5px solid var(--dark);
	padding: 8px 16px;
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--dark);
}

.corner-block {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 24%;
	height: 12%;
	background: var(--gold);
}

/* Editorial hero page (cover / packages intro / contact heading) */
.editorial-hero {
	justify-content: flex-start;
	padding-top: 52px;
	gap: 10px;
}

.kicker-line1 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 1.15;
	color: var(--dark);
	margin: 0;
}

.kicker-line2 {
	font-size: 2.1rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.1;
	color: var(--teal);
	margin: 0 0 6px;
}

.editorial-body {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--dark);
	opacity: 0.75;
	max-width: 34ch;
	margin: 0;
}

.cta-button {
	margin-top: 4px;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--teal);
	color: var(--dark);
	border: none;
	border-radius: 999px;
	padding: 10px 22px;
	font-family: 'Inter', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease;
}

.cta-button:hover {
	background: var(--gold);
}

.cta-icon {
	font-size: 0.9rem;
}

.hero-photo {
	margin-top: auto;
	width: 100%;
	height: 34%;
	border-radius: 14px;
	overflow: hidden;
	background: var(--light);
}

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

/* Product row list (editorial style, no card backgrounds) */
.product-row-list {
	justify-content: flex-start;
	gap: 22px;
	padding-top: 40px;
}

.product-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.product-row-image {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(26,26,26,0.08);
	background: var(--light);
}

.product-row-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-row-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.product-row-name {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--teal-dark);
	margin: 0;
}

.product-row-desc {
	font-size: 0.78rem;
	line-height: 1.5;
	color: var(--dark);
	opacity: 0.7;
	margin: 0;
}

.product-row-price {
	margin: 4px 0 0;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.price-current {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark);
}

.price-original {
	font-size: 0.8rem;
	color: var(--dark);
	opacity: 0.4;
	text-decoration: line-through;
}

/* Packages tier list */
.tier-list-page {
	justify-content: flex-start;
	gap: 0;
	padding-top: 40px;
}

.tier-row {
	padding: 16px 0;
	border-bottom: 1px solid rgba(26,26,26,0.08);
}

.tier-row:first-child {
	padding-top: 0;
}

.tier-name {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.tier-badge {
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: var(--gold);
	color: var(--dark);
	padding: 3px 8px;
	border-radius: 999px;
}

.tier-features {
	margin: 8px 0;
	padding-left: 16px;
	font-size: 0.82rem;
	line-height: 1.6;
	opacity: 0.75;
}

.tier-price {
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0;
}

.fine-print {
	font-size: 0.72rem;
	opacity: 0.45;
	margin-top: 12px;
}

/* Contact page */
.contact-content {
	align-items: center;
	text-align: center;
	justify-content: center;
}

.contact-details {
	margin-top: 12px;
	font-size: 0.95rem;
	line-height: 1.8;
	opacity: 0.8;
}

/* Controls */
.controls {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 28px;
}

.controls button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--dark);
	color: var(--white);
	font-size: 1.1rem;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.controls button:hover {
	background: var(--gold);
	color: var(--dark);
}

.controls button:disabled {
	opacity: 0.3;
	cursor: default;
	background: var(--dark);
	color: var(--white);
}

.page-counter {
	font-size: 0.9rem;
	font-weight: 500;
	min-width: 60px;
	text-align: center;
}

/* Responsive */
@media (max-width: 720px) {
	.topbar { flex-direction: column; gap: 12px; align-items: flex-start; }
	.page-content { padding: 34px 24px; }
	.kicker-line2 { font-size: 1.6rem; }
	.product-row-image { width: 76px; height: 76px; }
}
