/* ===== RESET & BASE ===== */

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

html {
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
	color: #1a1a1a;
	background: #ffffff;
	line-height: 1.6;
}

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

a {
	color: #d6166f;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.2s;
}

a:hover {
	opacity: 0.7;
}

button {
	font-family: inherit;
}

.wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ===== HERO ===== */

.hero {
	padding: 72px 0 80px;
	background: #ffffff;
}

.hero__grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 64px;
	align-items: start;
}

.hero__logo {
	width: 160px;
	margin-bottom: 32px;
}

.hero__text h1 {
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #111111;
}

.hero__text p {
	margin-top: 24px;
	font-size: 1.15rem;
	line-height: 1.65;
	color: #3a3a3a;
	max-width: 60ch;
}

.hero__partners {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 12px;
}

.partner-card {
	background: #fafafa;
	border: 1px solid #ebebeb;
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
	transition: box-shadow 0.2s;
}

.partner-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.partner-card__label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #d6166f;
	margin-bottom: 16px;
}

.partner-card img {
	max-height: 48px;
	margin: 0 auto;
	object-fit: contain;
}

/* ===== HOURS ===== */

.hours {
	padding: 64px 0 72px;
	background: #f7f7f8;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}

.hours h2 {
	font-size: 1.75rem;
	font-weight: 800;
	color: #111111;
	margin-bottom: 8px;
}

.hours__subtitle {
	font-size: 1rem;
	font-weight: 600;
	color: #555555;
	margin-bottom: 20px;
}

.hours__list {
	list-style: none;
	display: grid;
	gap: 8px;
	max-width: 340px;
	margin-bottom: 28px;
}

.hours__list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 12px 16px;
	background: #ffffff;
	border: 1px solid #e4e4e4;
	border-radius: 8px;
	font-size: 0.95rem;
}

.hours__list span {
	font-weight: 600;
	color: #1a1a1a;
}

.hours__list strong {
	font-weight: 700;
	color: #d6166f;
}

.hours__notes p {
	font-size: 0.95rem;
	line-height: 1.65;
	color: #555555;
	max-width: 60ch;
	margin-top: 8px;
}

/* ===== CONTACT / FOOTER ===== */

.contact {
	padding: 64px 0 40px;
	background: #111111;
	color: #d4d4d4;
}

.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.contact__block h2 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.contact__block p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-top: 4px;
}

.contact__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}

.contact__list a {
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 600;
}

.contact__list a:hover {
	color: #d6166f;
	opacity: 1;
}

.contact__map {
	display: inline-block;
	margin-top: 12px;
	font-size: 0.95rem;
	color: #d6166f;
	font-weight: 700;
}

.link-btn {
	background: none;
	border: none;
	padding: 0;
	color: #777777;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.2s;
}

.link-btn:hover {
	color: #d6166f;
}

.contact__bottom {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid #2a2a2a;
	font-size: 0.85rem;
}

.contact__bottom a {
	color: #777777;
	font-weight: 500;
}

.contact__bottom a:hover {
	color: #d6166f;
	opacity: 1;
}

/* ===== BUTTONS ===== */

.btn {
	display: inline-block;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.btn:hover {
	opacity: 0.85;
}

.btn--primary {
	background: #d6166f;
	color: #ffffff;
	border: 1px solid #d6166f;
}

.btn--outline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	padding: 18px 0;
	background: rgba(17, 17, 17, 0.96);
	color: #ffffff;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.cookie-banner.hidden {
	display: none;
}

.cookie-banner__inner {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
}

.cookie-banner__inner p {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #cccccc;
	max-width: 70ch;
}

.cookie-banner__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-banner__actions a {
	color: #999999;
	text-decoration: underline;
	font-size: 0.8rem;
	font-weight: 500;
	white-space: nowrap;
}

.cookie-banner__actions a:hover {
	color: #ffffff;
	opacity: 1;
}

/* ===== POLICY PAGE ===== */

.policy_page {
	background-color: #ffffff;
	min-height: 100vh;
}

.policy_page__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 48px 32px 120px;
}

.policy_page__back {
	display: inline-block;
	margin-bottom: 32px;
	font-size: 0.9rem;
}

.policy_page h1 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 8px;
}

.policy_page__updated {
	font-size: 0.85rem;
	color: #888888;
	margin-bottom: 36px;
}

.policy_page section {
	margin-top: 36px;
}

.policy_page h2 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.policy_page h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 8px;
}

.policy_page p {
	font-size: 1rem;
	line-height: 1.7;
	margin-top: 8px;
	max-width: 65ch;
}

.policy_page ul {
	margin: 12px 0 12px 24px;
	font-size: 1rem;
	line-height: 1.7;
}

.policy_page li {
	margin-top: 4px;
}

.policy_table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 0.9rem;
}

.policy_table th,
.policy_table td {
	text-align: left;
	padding: 10px 14px;
	border: 1px solid #e0e0e0;
}

.policy_table th {
	background: #fafafa;
	font-weight: 600;
}

.policy_table code {
	background: #f4f4f4;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
	.hero {
		padding: 48px 0 56px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero__partners {
		flex-direction: row;
		padding-top: 0;
	}

	.partner-card {
		flex: 1;
	}

	.hours {
		padding: 48px 0 56px;
	}

	.contact__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 600px) {
	.wrap {
		padding: 0 20px;
	}

	.hero {
		padding: 36px 0 44px;
	}

	.hero__logo {
		width: 120px;
		margin-bottom: 24px;
	}

	.hero__text h1 {
		font-size: 2rem;
	}

	.hero__text p {
		font-size: 1rem;
	}

	.hero__partners {
		flex-direction: column;
	}

	.hours {
		padding: 40px 0 48px;
	}

	.hours h2 {
		font-size: 1.4rem;
	}

	.hours__list li {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.contact {
		padding: 48px 0 32px;
	}

	.cookie-banner__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.cookie-banner__actions {
		justify-content: space-between;
	}
}
