/* Pedikúra Petra Vránová – vizuál: zlato #8E6F36, mramor/růžový podklad */

:root {
	--gold: #8e6f36;
	--gold-hover: #6d5629;
	--bg: #f4f0f1;
	--bg-elevated: rgba(255, 255, 255, 0.72);
	--bg-tint: #ede6e8;
	--text: #2a2520;
	--text-muted: #5c5349;
	--accent-blush: #e8d4d6;
	--font-display: "Cinzel", serif;
	--font-body: "Source Serif 4", Georgia, serif;
	--shadow: 0 12px 40px rgba(42, 37, 32, 0.08);
	--radius: 12px;
	--header-h: 5.5rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text);
	background-color: var(--bg);
	background-image:
		radial-gradient(ellipse 120% 80% at 10% -20%, rgba(255, 255, 255, 0.95) 0%, transparent 55%),
		radial-gradient(ellipse 80% 60% at 90% 100%, var(--accent-blush) 0%, transparent 45%),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 2px,
			rgba(142, 111, 54, 0.025) 2px,
			rgba(142, 111, 54, 0.025) 3px
		);
	min-height: 100vh;
}

.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;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 1000;
	padding: 0.5rem 1rem;
	background: var(--gold);
	color: #fff;
	font-family: var(--font-display);
	text-decoration: none;
	border-radius: 4px;
}

.skip-link:focus {
	top: 1rem;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(244, 240, 241, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(142, 111, 54, 0.15);
}

.site-header__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0.75rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	min-height: var(--header-h);
}

@media (min-width: 900px) {
	.site-header__inner {
		justify-content: space-between;
	}
}

.site-logo {
	display: block;
	line-height: 0;
}

.site-logo img {
	display: block;
	height: 4.25rem;
	width: auto;
	max-width: 160px;
	object-fit: contain;
}

.nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.25rem;
	justify-content: center;
}

.nav a {
	font-family: var(--font-display);
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding: 0.25rem 0;
}

.nav a:hover,
.nav a:focus-visible {
	border-bottom-color: var(--gold);
	color: var(--gold-hover);
}

.site-header__cta {
	margin: 0;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
	background: var(--gold);
	color: #fff;
	border-color: var(--gold);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: var(--gold-hover);
	border-color: var(--gold-hover);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	color: var(--gold);
	border-color: var(--gold);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	background: rgba(142, 111, 54, 0.08);
}

/* Hero */
.hero {
	max-width: 1120px;
	margin: 0 auto;
	padding: 2.5rem 1.25rem 3rem;
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.hero {
		grid-template-columns: 1fr 1.05fr;
		padding-top: 3rem;
		padding-bottom: 4rem;
	}
}

.hero__content {
	order: 1;
}

.hero__figure {
	order: 2;
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero__figure img {
	display: block;
	width: 100%;
	height: auto;
	/* aspect-ratio: 3 / 2; */
	object-fit: cover;
}

.eyebrow {
	font-family: var(--font-display);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 0.5rem;
}

.hero h1 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.2;
	color: var(--gold);
	margin: 0 0 1rem;
}

.hero__lead {
	margin: 0 0 1.5rem;
	color: var(--text-muted);
	font-size: 1.075rem;
	max-width: 36rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Sections */
.section {
	padding: 3.5rem 1.25rem;
}

.section--tint {
	background: var(--bg-tint);
	background-image: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
}

.section__inner {
	max-width: 1120px;
	margin: 0 auto;
}

.section__inner--narrow {
	max-width: 640px;
}

.section h2 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--gold);
	margin: 0 0 1rem;
	display: block;
}

.section__intro {
	margin: 0 0 2rem;
	max-width: 42rem;
	color: var(--text-muted);
	max-width: 640px;
    margin: 0 auto;
}

.two-col {
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 768px) {
	.two-col {
		grid-template-columns: 1fr 1fr;
	}
}

.prose p {
	margin: 0 0 1rem;
}

.prose p:last-child {
	margin-bottom: 0;
}

.section__figure {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.section__figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.section__figure--wide {
	margin-top: 2.5rem;
}

.section__figure--natural {
	max-width: 800px;
	margin-inline: auto;
	width: 100%;
}

.section__figure--natural img {
	aspect-ratio: auto;
	object-fit: unset;
	height: auto;
}

/* Galerie */
.section--gallery .section__intro {
	margin: 0 auto 2rem;
}

.gallery-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

@media (min-width: 600px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}

@media (min-width: 900px) {
	.gallery-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.gallery-grid__link {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	line-height: 0;
	border: 1px solid rgba(142, 111, 54, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid__link:hover,
.gallery-grid__link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 44px rgba(42, 37, 32, 0.12);
	outline: none;
}

.gallery-grid__link:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

.gallery-grid__thumb {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Cards */
.cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 600px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card {
	background: var(--bg-elevated);
	border: 1px solid rgba(142, 111, 54, 0.12);
	border-radius: var(--radius);
	padding: 1.35rem 1.35rem 1.5rem;
	box-shadow: 0 4px 20px rgba(42, 37, 32, 0.04);
}

.card--featured {
	border-color: var(--gold);
	box-shadow: 0 8px 28px rgba(142, 111, 54, 0.12);
}

.card h3 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--gold);
	margin: 0 0 0.5rem;
}

.card p {
	margin: 0;
	font-size: 0.98rem;
	color: var(--text-muted);
}

/* Ceník */
.price-block__title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gold);
	text-align: center;
	margin: 2.5rem 0 1rem;
}

.price-block__title:first-of-type {
	margin-top: 0;
}

.price-block__title--secondary {
	margin-top: 2.75rem;
}

.table-wrap {
	overflow-x: auto;
	margin-bottom: 0.5rem;
	border-radius: var(--radius);
	border: 1px solid rgba(142, 111, 54, 0.15);
	background: var(--bg-elevated);
	box-shadow: var(--shadow);
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
	min-width: 520px;
}

.price-table th,
.price-table td {
	padding: 0.85rem 1rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(142, 111, 54, 0.1);
}

.price-table thead th {
	font-family: var(--font-display);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	background: rgba(142, 111, 54, 0.06);
	border-bottom: 2px solid rgba(142, 111, 54, 0.2);
}

.price-table tbody th {
	font-weight: 600;
	width: 22%;
	min-width: 9rem;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
	border-bottom: none;
}

.service-title {
	font-weight: 600;
}

.service-title--star {
	font-weight: 600;
}

.price-table__price {
	white-space: nowrap;
	text-align: right;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	color: var(--gold);
	font-family: var(--font-display);
}

@media (max-width: 640px) {
	.table-wrap {
		margin-bottom: 0.35rem;
	}

	.price-table {
		min-width: 0;
		font-size: 0.86rem;
	}

	.price-table th,
	.price-table td {
		padding: 0.55rem 0.5rem;
	}

	.price-table thead th {
		font-size: 0.62rem;
		letter-spacing: 0.06em;
	}

	.price-table tbody th {
		width: 30%;
		min-width: 0;
	}

	.price-table__price {
		width: 4.8rem;
		font-size: 0.8rem;
	}
}

@media (min-width: 640px) {
	#cenik-heading {
		max-width: 640px;
		margin-left: auto;
		margin-right: auto;
	}

	.table-wrap {
		max-width: 640px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Kontakt */
.contact {
	font-style: normal;
}

.contact p {
	margin: 0 0 1.25rem;
}

.contact__label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.25rem;
}

.contact a {
	color: var(--gold);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(142, 111, 54, 0.35);
}

.contact a:hover,
.contact a:focus-visible {
	border-bottom-color: var(--gold);
}

.contact__map {
	margin-top: 1.5rem;
}

.contact__map .btn {
	margin-top: 0.25rem;
}

/* Footer */
.site-footer {
	padding: 2.5rem 1.25rem 3rem;
	border-top: 1px solid rgba(142, 111, 54, 0.15);
	background: rgba(255, 255, 255, 0.35);
}

.site-footer__inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.site-footer__copy {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.site-footer__credit {
	margin: 0;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.site-footer a {
	color: var(--gold);
}

/* Legacy .logo – zachováno pro případné další použití */
.logo {
	font-family: var(--font-display);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--gold);
}

.logo--underline {
	border-bottom: 2px solid var(--gold);
	color: var(--gold);
}
