:root {
	--bg: #f6f9fb;
	--surface: #ffffff;
	--ink: #101828;
	--muted: #5f6c7b;
	--line: #d8e2ea;
	--teal: #14a6b8;
	--blue: #1761a0;
	--green: #36b37e;
	--yellow: #f4b740;
	--shadow: 0 22px 70px rgba(16, 24, 40, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(135deg, rgba(20, 166, 184, 0.12), transparent 35%),
		linear-gradient(315deg, rgba(54, 179, 126, 0.14), transparent 30%),
		var(--bg);
	color: var(--ink);
	font-family: Inter, Arial, sans-serif;
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px clamp(20px, 4vw, 64px);
	background: rgba(255, 255, 255, 0.84);
	border-bottom: 1px solid rgba(216, 226, 234, 0.8);
	backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	letter-spacing: 0;
}

.brand img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.site-nav a,
.nav-menu button {
	padding: 9px 14px;
	border-radius: 999px;
	color: var(--muted);
	background: transparent;
	border: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active,
.nav-menu button:hover,
.nav-menu button.active {
	background: #e8f8fb;
	color: var(--blue);
}

.nav-menu {
	position: relative;
}

.nav-menu-panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: grid;
	min-width: 210px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(16, 24, 40, 0.14);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-menu-panel a {
	border-radius: 6px;
}

.section-shell {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.hero {
	min-height: calc(100vh - 80px);
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	align-items: center;
	gap: clamp(32px, 6vw, 86px);
	padding: clamp(56px, 8vw, 96px) 0;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	max-width: 760px;
	margin-bottom: 24px;
	font-size: clamp(42px, 7vw, 82px);
	line-height: 0.98;
	letter-spacing: 0;
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.05;
	letter-spacing: 0;
}

h3 {
	margin-bottom: 10px;
	font-size: 22px;
	line-height: 1.2;
}

.lead,
.section-copy p,
.contact p {
	color: var(--muted);
	font-size: 18px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 800;
}

.button.primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 14px 34px rgba(23, 97, 160, 0.28);
}

.button.secondary {
	background: #fff;
	color: var(--blue);
	border: 1px solid var(--line);
}

.hero-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 460px;
	border-radius: 8px;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 251, 0.88)),
		repeating-linear-gradient(90deg, rgba(23, 97, 160, 0.08) 0 1px, transparent 1px 42px);
	box-shadow: var(--shadow);
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(20, 166, 184, 0.18), rgba(244, 183, 64, 0.16));
	clip-path: polygon(0 0, 100% 18%, 100% 100%, 20% 100%);
}

.hero-visual img {
	position: relative;
	width: min(78%, 440px);
	filter: drop-shadow(0 24px 38px rgba(16, 24, 40, 0.22));
}

.about,
.contact {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: clamp(28px, 5vw, 70px);
	padding: 84px 0;
}

.section-media {
	display: grid;
	place-items: center;
	min-height: 360px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.section-media img {
	width: min(72%, 340px);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 30px;
}

.stats-grid div,
.contact-panel {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.8);
}

.stats-grid strong {
	display: block;
	margin-bottom: 4px;
	font-size: 20px;
}

.stats-grid span {
	color: var(--muted);
	font-size: 14px;
}

.portfolio,
.stores {
	padding: 84px 0;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 34px;
}

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

.project-card {
	display: grid;
	grid-template-columns: 116px 1fr;
	gap: 20px;
	align-items: center;
	min-height: 188px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 14px 45px rgba(16, 24, 40, 0.07);
}

.project-card img {
	width: 116px;
	height: 116px;
	border-radius: 8px;
	object-fit: cover;
}

.project-card span {
	color: var(--green);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.project-card p {
	color: var(--muted);
	margin-bottom: 0;
}

.store-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.store-link {
	display: grid;
	place-items: center;
	min-height: 150px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

.contact {
	margin-bottom: 68px;
	padding: 44px;
	border-radius: 8px;
	background: #101828;
	color: #fff;
}

.contact .eyebrow,
.contact a {
	color: #8ee7ef;
}

.contact p {
	color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
	display: grid;
	gap: 16px;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
}

.contact-panel p {
	margin-bottom: 0;
}

.legal-hero {
	padding: 72px 0 28px;
}

.page-hero {
	padding: 72px 0 0;
}

.page-hero h1 {
	max-width: 900px;
	margin-bottom: 18px;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1;
}

.page-hero .lead {
	max-width: 720px;
}

.legal-hero h1 {
	max-width: 900px;
	margin-bottom: 16px;
	font-size: clamp(42px, 6vw, 72px);
}

.legal-content {
	max-width: 900px;
	padding: 0 0 88px;
}

.legal-content,
.legal-content p {
	color: var(--muted);
	font-size: 17px;
}

.legal-content .legal-intro {
	margin-bottom: 32px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	font-size: 20px;
}

.legal-content article {
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.legal-content h1 {
	margin: 34px 0 12px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	color: var(--ink);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
}

.legal-content h2 {
	margin-bottom: 12px;
	color: var(--ink);
	font-size: clamp(24px, 3vw, 34px);
}

.legal-content ul {
	margin: 0 0 22px;
	padding-left: 24px;
}

.legal-content li {
	margin-bottom: 10px;
}

.legal-content a {
	color: var(--blue);
	font-weight: 800;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px clamp(20px, 4vw, 64px);
	background: #fff;
	border-top: 1px solid var(--line);
}

.site-footer p {
	max-width: 520px;
	margin-bottom: 0;
	color: var(--muted);
	text-align: right;
}

.footer-copy {
	display: grid;
	gap: 12px;
	justify-items: end;
}

.legal-links {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.legal-links a {
	color: var(--blue);
	font-size: 13px;
	font-weight: 800;
}

@media (max-width: 860px) {
	.site-header,
	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.nav-menu-panel {
		left: 0;
		right: auto;
	}

	.hero,
	.about,
	.contact {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
	}

	.hero-visual {
		min-height: 340px;
	}

	.portfolio-grid,
	.store-grid,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.site-footer p,
	.footer-copy {
		text-align: left;
		justify-items: start;
	}

	.legal-links {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	.section-shell {
		width: min(100% - 28px, 1120px);
	}

	.site-header {
		padding: 14px;
	}

	.site-nav a {
		padding: 8px 10px;
		font-size: 13px;
	}

	h1 {
		font-size: 42px;
	}

	.project-card {
		grid-template-columns: 1fr;
	}

	.contact {
		padding: 28px;
	}
}
