:root {
	--bg: #f4f1ea;
	--panel: rgba(255, 255, 255, 0.72);
	--panel-strong: #fffaf1;
	--ink: #191614;
	--muted: #766f66;
	--line: rgba(25, 22, 20, 0.12);
	--max: 1180px;
}

html,
body {
	margin: 0;
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
		linear-gradient(180deg, #f8f4ee 0%, #f1ece4 100%);
	line-height: 1.5;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	display: block;
}

.wrap {
	width: min(var(--max), calc(100% - 3rem));
	margin: 0 auto;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 252, 247, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.topbar .wrap {
	min-height: 72px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 0.35rem;
	width: min(var(--max), 100%);
	max-width: var(--max);
	margin: 0 auto;
	padding: 0.2rem 0.45rem 0.55rem;
}

/* Header contact button (right corner) */
.header-contact {
	padding: 0.5rem 0.9rem;
	border-radius: 24px;
	background: linear-gradient(180deg, #111111, #000000);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 6px 14px rgba(0,0,0,0.12);
	border: 1px solid rgba(255,255,255,0.04);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: min(360px, calc(100% - 2rem));
}

@media (max-width: 680px) {
	.header-contact {
		padding: 0.6rem 0.9rem;
		font-size: 0.95rem;
		width: min(340px, calc(100% - 1.5rem));
	}
}

.brand {
	display: block;
	width: 100%;
	max-width: 880px;
	margin: 0 auto 0 0.35rem;
	text-decoration: none;
	color: var(--ink);
}

.brand img {
	width: 100%;
	height: auto;
	max-height: 154px;
	object-fit: contain;
	object-position: left top;
	display: block;
}

.header-meta {
	margin: 0;
	color: var(--muted);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: right;
}

main.wrap {
	padding: 1.1rem 0 3rem;
}

.hero {
	/* Single-column hero so the stage fills the full content width */
	display: grid;
 	grid-template-columns: 1fr;
	gap: 1.15rem;
 	align-items: center;
 	min-height: 52vh;
}

.hero-copy {
	max-width: 60ch;
}

.kicker {
	margin: 0;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
}

.hero h1 {
	margin: 0.7rem 0 0.85rem;
	font-family: "Cinzel", serif;
	font-weight: 600;
	line-height: 1.06;
	font-size: clamp(2rem, 3.9vw, 3.4rem);
}

.lede {
	margin: 0;
	max-width: 56ch;
	color: var(--muted);
	font-size: 1.02rem;
}

.hero-actions {
	margin-top: 1.6rem;
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	text-decoration: none;
	padding: 0.78rem 1.15rem;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-solid {
	background: var(--ink);
	color: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.btn-solid:hover {
	background: #000;
}

.btn-ghost {
	color: var(--ink);
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.5);
}

/* Polished hero/top contact button (desktop + mobile) */
.hero-actions .btn {
	padding: 0.95rem 1.4rem;
	font-size: 1rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #111111, #000000);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.04);
	box-shadow: 0 12px 28px rgba(0,0,0,0.22);
	letter-spacing: 0.01em;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.1;
	min-height: 48px;
	width: min(480px, 78%);
	max-width: 520px;
}

.hero-actions .btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.28);
	background: linear-gradient(180deg, #0b0b0b, #000000);
}

.hero-actions .btn:focus {
	outline: 3px solid rgba(255,255,255,0.06);
	outline-offset: 3px;
}

/* Mobile: full-width, centered, slightly softer shadow */
@media (max-width: 680px) {
	.hero-actions {
		justify-content: center;
	}

	.hero-actions .btn {
		display: block;
		width: min(92%, 360px);
		margin: 0 auto;
		padding: 0.86rem 1rem;
		font-size: 1rem;
		box-shadow: 0 12px 26px rgba(0,0,0,0.14);
	}
}

/* Make footer contact button harmonized but less heavy than hero */
.footer .footer-contact {
	padding: 0.6rem 0.9rem;
	font-size: 0.95rem;
	box-shadow: 0 8px 18px rgba(0,0,0,0.10);
	background: linear-gradient(180deg, #222, #0b0b0b);
}

.hero-stage {
	/* Full-width, three equal columns so GIFs stay the same size */
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* let image aspect-ratio determine height; make full-bleed */
	grid-template-rows: none;
	gap: 0.6rem;
	padding: 0.5rem;
	border-radius: 12px;
	background: linear-gradient(180deg, #f8f2e9 0%, #f0e8dc 100%);
	border: 1px solid rgba(25, 22, 20, 0.08);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	/* span the full viewport width (full-bleed) */
	grid-column: 1 / -1;
	width: 100vw;
	margin-left: calc((100% - 100vw) / 2);
	margin-right: 0;
	justify-items: stretch;
	align-items: start;
}

/* GIFs: remove artificial horizontal nudge so they stay centered */
.hero-stage .gif-1,
.hero-stage .gif-2 {
	transform: none;
	will-change: transform;
}

/* Center logo removed — GIFs occupy left and right columns */

.gif {
 	width: 100%;
 	height: auto;
 	aspect-ratio: 16 / 10;
 	object-fit: cover;
 	border-radius: 10px;
 	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
 	justify-self: stretch;
 	display: block;
}

.gif-1 {
 	grid-column: 1 / 2;
 	grid-row: 1 / 2;
 	animation: pulseA 4s ease-in-out infinite;
}

.gif-2 {
 	grid-column: 3 / 4;
 	grid-row: 1 / 2;
 	animation: pulseB 4.8s ease-in-out infinite;
}

.gif-center {
 	grid-column: 2 / 3;
 	grid-row: 1 / 2;
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	border-radius: 10px;
 	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
 	animation: pulseA 4.4s ease-in-out infinite;
}

/* Responsive: stack GIFs on small screens */
@media (max-width: 680px) {
 	.hero-stage {
 		grid-template-columns: 1fr;
 		grid-template-rows: repeat(3, minmax(140px, 24vh));
 		padding: 0.4rem;
 		border-radius: 10px;
 	}
 	.gif-1, .gif-center, .gif-2 {
 		grid-column: 1 / -1;
 	}
}

.collections {
	margin-top: 3rem;
}

.section-head p {
	margin: 0;
	color: var(--muted);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.72rem;
}

.section-head h2 {
	margin: 0.2rem 0 1.2rem;
	font-family: "Cinzel", serif;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 600;
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
}

.collection-card {
	text-decoration: none;
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	background: var(--panel-strong);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.collection-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.collection-card img {
	width: 100%;
	height: 112px;
	object-fit: contain;
	object-position: center;
	background: #f8f5ee;
}

.collection-card span {
	display: block;
	padding: 0.62rem 0.88rem;
	font-size: 0.92rem;
	color: var(--ink);
}

.social-strip {
	margin-top: 2.4rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.social-strip a,
.social-strip .chip-disabled {
	text-align: center;
	text-decoration: none;
	color: var(--muted);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.75rem 0.9rem;
	background: rgba(255, 255, 255, 0.7);
	transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.social-strip a:hover {
	color: var(--ink);
	border-color: rgba(0, 0, 0, 0.24);
	transform: translateY(-2px);
}

.footer {
	margin-top: 3rem;
	padding: 2.4rem 0 1rem;
	border-top: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.65);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.footer-grid.card-style {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 1.2rem;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.footer-brand {
	display: grid;
	gap: 0.65rem;
	max-width: 320px;
}

.footer-contact-block {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.35rem;
	font-size: 0.95rem;
	line-height: 1.35;
	width: 100%;
}

.footer-contact-line {
	display: block;
	align-items: center;
	text-decoration: none;
	color: var(--muted);
	font-weight: 500;
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: normal;
}

.footer-email {
	color: var(--ink);
	font-weight: 600;
}

.no-break {
	white-space: nowrap !important;
	display: inline-block;
}

.footer h3 {
	margin: 0 0 0.7rem;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
	color: var(--muted);
}

.footer a {
	text-decoration: none;
	color: var(--muted);
}

.footer a:hover {
	color: var(--ink);
}

.copyright {
	width: min(var(--max), calc(100% - 3rem));
	margin: 1.5rem auto 0;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.92rem;
}

@media (max-width: 980px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.collection-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.wrap {
		width: min(var(--max), calc(100% - 1.25rem));
	}

	.topbar .wrap {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.2rem;
		min-height: 64px;
		padding: 0.2rem 0.35rem 0.45rem;
	}

	.brand {
		max-width: none;
		margin: 0;
	}

	.brand img {
		max-height: 112px;
		width: 100%;
	}

	.header-contact {
		width: 100%;
		max-width: 100%;
		align-self: stretch;
	}

	.header-meta {
		font-size: 0.76rem;
	}

	.collection-grid,
	.footer-grid,
	.social-strip {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		max-width: none;
	}

	.footer-contact-block {
		gap: 0.55rem;
	}

	.footer-contact-line {
		display: block;
		width: 100%;
		white-space: normal;
		line-height: 1.3;
	}

	/* slightly smaller contact text on narrow phones to avoid overflow */
	.footer-contact-block {
		font-size: 0.92rem;
		display: block;
	}
	.footer-contact-line {
		display: block !important;
		width: 100% !important;
	}
	.no-break {
		white-space: nowrap !important;
	}

	.footer-brand {
		gap: 0.55rem;
	}

	.hero-stage {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(132px, auto) minmax(132px, auto);
		gap: 0.7rem;
		padding: 0.7rem;
	}

	.gif-1,
	.gif-2 {
		grid-column: 1 / -1;
	}

	.gif-1 {
		grid-row: 1 / 2;
	}

	.gif-2 {
		grid-row: 2 / 3;
	}

	.collection-card img {
		height: 96px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}

@keyframes pulseA {
	0% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.01); opacity: 0.94; }
	100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseB {
	0% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.01); opacity: 0.93; }
	100% { transform: scale(1); opacity: 1; }
}
