@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
	--ink: #0c0f0d;
	--muted: #69706c;
	--paper: #f4f5f0;
	--paper-soft: #e4e8df;
	--cream: #fbfbf6;
	--sand: #cfd8cc;
	--clay: #81c929;
	--cocoa: #222821;
	--moss: #566056;
	--line: rgba(12, 15, 13, 0.14);
	--white-line: rgba(251, 251, 246, 0.18);
	--shadow: 0 32px 90px rgba(12, 15, 13, 0.18);
	--radius-lg: 22px;
	--radius-md: 14px;
	--radius-sm: 8px;
	--container: 1180px;
	--serif: 'Instrument Serif', Georgia, serif;
	--sans: 'Inter', Arial, sans-serif;
	--display: 'Space Grotesk', Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(135deg, rgba(183, 255, 42, 0.10) 0 12%, transparent 12% 100%),
		linear-gradient(180deg, #fbfbf6 0%, #eef2ea 48%, #fbfbf6 100%);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.7;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--line);
	background: rgba(251, 251, 246, 0.88);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 78px;
}

.brand {
	font-family: var(--display);
	font-size: clamp(1.2rem, 1.6vw, 1.55rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.03em;
}

.brand span {
	display: block;
	margin-top: 5px;
	font-family: var(--sans);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--muted);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--muted);
}

.main-nav a {
	position: relative;
	padding-block: 8px;
}

.main-nav a::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--ink);
	content: '';
	transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
	color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.lang-switch {
	display: inline-flex;
	gap: 3px;
	padding: 4px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(251, 251, 246, 0.62);
}

.lang-switch button {
	min-width: 39px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	padding: 8px 10px;
}

.lang-switch button.is-active {
	background: var(--ink);
	color: var(--cream);
}

.mobile-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
}

.mobile-menu {
	display: none;
}

.mobile-toggle span {
	display: block;
	width: 18px;
	height: 1px;
	margin: 5px auto;
	background: var(--ink);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(251, 251, 246, 0.62);
	color: var(--ink);
	cursor: pointer;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	line-height: 1;
	padding: 15px 22px;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
	transform: translateY(-2px);
	background: var(--clay);
}

.btn-dark {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--cream);
}

.btn-dark:hover {
	border-color: var(--clay);
	background: var(--clay);
	color: var(--ink);
}

.btn-light {
	border-color: rgba(251, 251, 246, 0.36);
	background: var(--clay);
	color: var(--ink);
}

.hero {
	padding: 86px 0 72px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
	gap: 58px;
	align-items: end;
}

.eyebrow,
.section-kicker {
	margin: 0 0 18px;
	color: var(--clay);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title h2,
.cta-panel h2 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.96;
}

.hero h1 {
	max-width: 820px;
	font-size: clamp(4rem, 8vw, 8.7rem);
}

.hero-copy {
	max-width: 630px;
	margin-top: 34px;
	color: var(--muted);
	font-size: clamp(1.03rem, 1.5vw, 1.24rem);
}

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

.hero-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	max-width: 680px;
	margin-top: 54px;
	border: 1px solid var(--line);
	background: var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.meta-item {
	background: rgba(251, 251, 246, 0.86);
	padding: 18px;
}

.meta-item strong {
	display: block;
	font-family: var(--display);
	font-size: 1.18rem;
	font-weight: 600;
}

.meta-item span {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.hero-visual {
	position: relative;
	min-height: 660px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero-visual img {
	width: 100%;
	height: 100%;
	min-height: 660px;
	object-fit: cover;
}


.hero-visual::before {
	position: absolute;
	inset: 18px;
	z-index: 1;
	border: 1px solid rgba(251, 251, 246, 0.36);
	border-radius: 14px;
	content: '';
	pointer-events: none;
}

.hero-visual::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(12, 15, 13, 0.58));
	content: '';
}

.visual-card {
	position: absolute;
	left: 26px;
	right: 26px;
	bottom: 26px;
	z-index: 2;
	border: 1px solid rgba(251, 251, 246, 0.18);
	border-radius: 16px;
	background: rgba(12, 15, 13, 0.78);
	backdrop-filter: blur(14px);
	padding: 24px;
}

.visual-card p {
	margin: 0;
	color: var(--cream);
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.05;
}

.visual-card span {
	display: block;
	margin-top: 9px;
	color: rgba(251, 251, 246, 0.72);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.split-section,
.section {
	padding: 92px 0;
}

.split-grid {
	display: grid;
	grid-template-columns: 0.76fr 1fr;
	gap: 70px;
	align-items: start;
}

.lead-title {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(2.6rem, 5vw, 5rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.lead-copy {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.section-title {
	max-width: 780px;
	margin-bottom: 42px;
}

.section-title h2 {
	font-size: clamp(3rem, 6vw, 6rem);
}

.section-title p {
	max-width: 660px;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.service-card {
	position: relative;
	min-height: 300px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(251, 251, 246, 0.62);
	padding: 26px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card::before {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background: rgba(183, 255, 42, 0.18);
	content: '';
}

.service-card:hover {
	transform: translateY(-7px);
	background: rgba(251, 251, 246, 0.92);
	box-shadow: var(--shadow);
}

.service-number {
	color: var(--clay);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.service-card h3,
.value-card h3,
.stylist-card h3,
.price-group h2,
.contact-panel h2 {
	margin: 46px 0 12px;
	font-family: var(--serif);
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1;
}

.service-card p,
.value-card p,
.stylist-card p,
.contact-panel p {
	color: var(--muted);
	font-size: 0.92rem;
}

.card-link {
	display: inline-block;
	margin-top: 24px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.values-section {
	background: var(--ink);
	color: var(--cream);
	padding: 96px 0;
}

.values-section .section-kicker,
.values-section .section-title p,
.values-section .value-card p {
	color: rgba(251, 251, 246, 0.68);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	border: 1px solid var(--white-line);
	background: var(--white-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.value-card {
	min-height: 245px;
	background: rgba(255, 255, 255, 0.045);
	padding: 28px;
}

.value-card h3 {
	margin-top: 72px;
	font-size: 2rem;
}

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

.stylist-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: rgba(251, 251, 246, 0.76);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stylist-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--shadow);
}

.stylist-card img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	filter: saturate(0.88) contrast(0.98);
}

.stylist-body {
	padding: 30px;
}

.badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--clay);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	padding: 6px 12px;
	text-transform: uppercase;
}

.stylist-card h3 {
	margin-top: 26px;
}

.stylist-role {
	font-weight: 800;
	color: var(--ink) !important;
}

.review-location {
	display: grid;
	grid-template-columns: 1fr 0.86fr;
	gap: 60px;
	align-items: start;
}

.review-list {
	display: grid;
	gap: 14px;
}

.review-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(251, 251, 246, 0.76);
	padding: 28px;
	color: var(--muted);
	font-family: var(--serif);
	font-size: 1.72rem;
	line-height: 1.16;
}

.location-card {
	border-radius: var(--radius-lg);
	background: var(--paper-soft);
	padding: 22px;
}

.location-card img {
	width: 100%;
	height: 360px;
	border-radius: 14px;
	object-fit: cover;
}

.location-card h3 {
	margin: 28px 0 14px;
	font-family: var(--serif);
	font-size: 2.9rem;
	font-weight: 500;
	line-height: 1;
}

.hours-list {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	color: var(--muted);
	font-size: 0.92rem;
	list-style: none;
}

.cta-section {
	padding: 80px 0 110px;
}

.cta-panel {
	position: relative;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(12, 15, 13, 0.96), rgba(34, 40, 33, 0.94)),
		url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1400&h=800&fit=crop&auto=format');
	background-position: center;
	background-size: cover;
	color: var(--cream);
	padding: clamp(48px, 8vw, 94px);
	text-align: center;
	overflow: hidden;
}

.cta-panel h2 {
	font-size: clamp(3.2rem, 7vw, 7rem);
}

.cta-panel p {
	max-width: 520px;
	margin: 24px auto 34px;
	color: rgba(251, 251, 246, 0.74);
}

.page-hero {
	padding: 82px 0 54px;
}

.page-hero h1 {
	max-width: 920px;
	font-size: clamp(4rem, 9vw, 9rem);
}

.page-hero p {
	max-width: 700px;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: 1.12rem;
}

.price-layout {
	display: grid;
	gap: 22px;
	padding-bottom: 90px;
}

.price-group {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: rgba(251, 251, 246, 0.78);
	padding: clamp(22px, 4vw, 42px);
}

.price-group h2 {
	margin: 0 0 26px;
	font-size: 3.2rem;
}

.price-header,
.price-row {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 18px;
	align-items: center;
}

.price-header {
	border-bottom: 1px solid var(--line);
	padding-bottom: 14px;
	color: var(--clay);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.price-row {
	border-bottom: 1px solid rgba(12, 15, 13, 0.09);
	padding: 18px 0;
}

.price-row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.price-row strong {
	font-weight: 800;
}

.note-panel {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 30px;
	align-items: center;
	border-radius: var(--radius-lg);
	background: var(--paper-soft);
	padding: 32px;
}

.note-panel ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 24px;
	margin: 0;
	padding-left: 18px;
	color: var(--muted);
}

.booking-section {
	background: var(--ink);
	color: var(--cream);
	padding: 82px 0 108px;
}

.booking-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 26px;
	align-items: start;
}

.booking-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 40px 0 26px;
}

.step-card {
	border: 1px solid var(--white-line);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.045);
	padding: 20px;
}

.step-card span {
	color: rgba(251, 251, 246, 0.52);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.step-card p {
	margin: 18px 0 0;
	line-height: 1.35;
}

.form-card {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	border-radius: var(--radius-lg);
	background: var(--cream);
	color: var(--ink);
	padding: 28px;
}

.field-full {
	grid-column: 1 / -1;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fbfbf6;
	color: var(--ink);
	outline: 0;
	padding: 15px 16px;
}

textarea {
	min-height: 132px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: rgba(12, 15, 13, 0.62);
	box-shadow: 0 0 0 4px rgba(183, 255, 42, 0.22);
}

.booking-aside {
	border-radius: var(--radius-lg);
	background: var(--paper-soft);
	color: var(--ink);
	padding: 30px;
}

.booking-aside h2 {
	margin: 0 0 20px;
	font-family: var(--serif);
	font-size: 3rem;
	font-weight: 500;
	line-height: 0.95;
}

.contact-line {
	display: flex;
	gap: 12px;
	align-items: start;
	margin: 14px 0;
	color: var(--muted);
}

.policy-box {
	margin-top: 24px;
	border-radius: 12px;
	background: rgba(251, 251, 246, 0.76);
	padding: 18px;
	color: var(--muted);
	font-size: 0.9rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	gap: 28px;
	padding-bottom: 100px;
}

.contact-panel,
.contact-form {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: rgba(251, 251, 246, 0.78);
	padding: 34px;
}

.contact-panel h2 {
	margin-top: 0;
	font-size: 3.1rem;
}

.map-card {
  min-height: 320px;
  margin-top: 20px;

  overflow: hidden;

  border: 1px solid var(--line, #d8dbd3);
  border-radius: 18px;

  background: #dfe5d8;
}

.map-card iframe {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 320px;

  border: 0;
}

.contact-form {
	display: grid;
	gap: 14px;
	align-content: start;
}

.site-footer {
	border-top: 1px solid var(--line);
	background: var(--paper-soft);
	padding: 54px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
	gap: 34px;
}

.footer-grid p,
.footer-grid a {
	color: var(--muted);
	font-size: 0.9rem;
}

.footer-links {
	display: grid;
	gap: 7px;
}
.social-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--ink);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.35);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
	transform: translateY(-2px);
}

.social-links i {
	font-size: 16px;
	line-height: 1;
}

.mobile-booking {
	display: none;
}

@media (max-width: 1080px) {
	.main-nav,
	.header-actions {
		display: none;
	}

	.mobile-toggle {
		display: block;
	}

	.mobile-menu {
		display: none;
		border-top: 1px solid var(--line);
		background: rgba(251, 251, 246, 0.98);
		padding: 18px 20px 24px;
	}

	.mobile-menu.is-open {
		display: block;
	}

	.mobile-menu nav,
	.mobile-menu .lang-switch {
		display: grid;
		gap: 12px;
	}

	.mobile-menu nav a {
		border-bottom: 1px solid var(--line);
		padding: 12px 0;
		font-weight: 700;
	}

	.hero-grid,
	.split-grid,
	.review-location,
	.booking-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.service-grid,
	.value-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stylist-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.booking-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.header-inner {
		min-height: 72px;
	}

	.brand {
		font-size: 1.38rem;
	}

	.brand span {
		font-size: 0.54rem;
	}

	.hero,
	.page-hero {
		padding: 54px 0 38px;
	}

	.hero h1,
	.page-hero h1 {
		font-size: clamp(3.1rem, 17vw, 4.6rem);
	}

	.hero-meta,
	.service-grid,
	.value-grid,
	.stylist-grid,
	.footer-grid,
	.booking-steps,
	.form-card,
	.note-panel,
	.note-panel ul {
		grid-template-columns: 1fr;
	}

	.hero-visual,
	.hero-visual img {
		min-height: 480px;
	}

	.split-section,
	.section {
		padding: 64px 0;
	}

	.section-title h2,
	.cta-panel h2 {
		font-size: clamp(2.9rem, 16vw, 4.5rem);
	}

	.review-card {
		font-size: 1.35rem;
	}

	.price-header {
		display: none;
	}

	.price-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.price-row span::before {
		font-weight: 800;
		color: var(--clay);
	}

	.price-row span::before {
		content: attr(data-mobile-label) ': ';
	}

	.booking-section {
		padding-bottom: 90px;
	}

	.mobile-booking {
		display: inline-flex;
		position: fixed;
		left: 14px;
		right: 14px;
		bottom: 14px;
		z-index: 90;
		box-shadow: 0 16px 38px rgba(12, 15, 13, 0.28);
	}
}
		@media (max-width: 680px) {
		  .map-card,
		  .map-card iframe {
			min-height: 260px;
		  }
		}

/* =========================================================
   WordPress integration
========================================================= */

.main-nav ul,
.footer-links ul,
.mobile-menu nav ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li,
.footer-links li,
.mobile-menu nav li {
  display: contents;
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--ink);
}

.lumi-fallback-menu {
  display: contents;
}

.lumi-form-content > *:first-child,
.lumi-page-content > *:first-child {
  margin-top: 0;
}

.lumi-form-content > *:last-child,
.lumi-page-content > *:last-child {
  margin-bottom: 0;
}

.lumi-form-content form,
.lumi-form-content .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lumi-form-content form > p,
.lumi-form-content .wpcf7-form > p {
  margin: 0;
}

.lumi-form-content form > p:has(textarea),
.lumi-form-content form > p:has(.wpcf7-submit),
.lumi-form-content .field-full,
.lumi-form-content .wpcf7-response-output {
  grid-column: 1 / -1;
}

.lumi-form-content label,
.lumi-form-content .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.lumi-form-content input:not([type="submit"]),
.lumi-form-content select,
.lumi-form-content textarea {
  width: 100%;
  min-height: 56px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.lumi-form-content textarea {
  min-height: 150px;
  resize: vertical;
}

.lumi-form-content input[type="submit"],
.lumi-form-content button[type="submit"] {
  width: 100%;
}

.lumi-form-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--line);
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.78rem;
}

.wpcf7-spinner {
  margin: 10px auto 0;
}

.lumi-post-card {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.lumi-post-card h2 {
  margin-top: 0;
}

@media (max-width: 700px) {
  .lumi-form-content form,
  .lumi-form-content .wpcf7-form {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Contact page
========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1fr);

  align-items: start;
  gap: clamp(24px, 3vw, 36px);

  padding-bottom: clamp(96px, 10vw, 150px);
}


/* =========================================================
   Contact information panel
========================================================= */

.contact-panel {
  padding: clamp(28px, 4vw, 46px);

  border: 1px solid var(--line, #d8dbd3);
  border-radius: 22px;

  background: #fbfbf8;
}

.contact-panel h2 {
  margin: 0 0 18px;

  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.contact-panel p {
  margin: 0 0 12px;

  color: var(--muted, #686d67);

  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-panel .hours-list {
  margin: 24px 0 0;
  padding: 0;

  list-style: none;
}

.contact-panel .hours-list li {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  padding: 9px 0;

  border-bottom: 1px solid var(--line, #d8dbd3);

  color: var(--muted, #686d67);
  font-size: 0.88rem;
}

.contact-panel .btn {
  margin-top: 24px;
}


/* =========================================================
   Map
========================================================= */

.map-card {
  display: grid;

  min-height: 320px;

  margin-top: 20px;

  place-items: center;

  overflow: hidden;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #d7ddd2,
      #e2efca
    );

  color: #717970;

  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}


/* =========================================================
   Contact form panel
========================================================= */

.contact-form {
  padding: clamp(28px, 4vw, 46px);

  border: 1px solid var(--line, #d8dbd3);
  border-radius: 22px;

  background: #fbfbf8;
}

.contact-form .wpcf7,
.contact-form .wpcf7-form {
  width: 100%;
}

.contact-form .wpcf7-form {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    28px
    16px;
}

.contact-form .form-group {
  min-width: 0;
  margin: 0;
}

.contact-form .form-group--full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;

  margin-bottom: 12px;

  color: #171a17;

  font-size: 0.88rem;
  font-weight: 500;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  border: 1px solid var(--line, #d8dbd3);
  border-radius: 11px;

  background: #fbfbf8;
  color: #171a17;

  font: inherit;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form input {
  height: 58px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 220px;
  padding: 16px;

  line-height: 1.7;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #73806e;

  background: #ffffff;

  box-shadow:
    0 0 0 3px
    rgb(115 128 110 / 0.12);
}


/* =========================================================
   Submit button
========================================================= */

.contact-form .submit-button,
.contact-form input[type="submit"] {
  grid-column: 1 / -1;

  width: 100%;
  min-height: 54px;

  margin-top: 4px;
  padding: 0 24px;

  border: 1px solid #171a17;
  border-radius: 10px;

  background: transparent;
  color: #171a17;

  font-size: 0.9rem;
  font-weight: 500;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-form .submit-button:hover,
.contact-form input[type="submit"]:hover {
  background: #171a17;
  color: #ffffff;

  transform: translateY(-1px);
}


/* =========================================================
   Contact Form 7 messages
========================================================= */

.contact-form .wpcf7-not-valid-tip {
  margin-top: 7px;

  color: #a63c3c;

  font-size: 0.75rem;
}

.contact-form .wpcf7-response-output {
  grid-column: 1 / -1;

  margin: 0 !important;
  padding: 13px 15px !important;

  border: 1px solid var(--line, #d8dbd3) !important;
  border-radius: 10px;

  font-size: 0.8rem;
}

.contact-form .wpcf7-spinner {
  grid-column: 1 / -1;

  margin: 0 auto;
}

.lumi-form-note {
  margin: 0;

  color: var(--muted, #686d67);

  font-size: 0.9rem;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid > div:first-child {
    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 20px;
  }

  .map-card {
    min-height: 100%;
    margin-top: 0;
  }
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 680px) {
  .contact-grid > div:first-child {
    grid-template-columns: 1fr;
  }

  .contact-form .wpcf7-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form .form-group,
  .contact-form .form-group--full,
  .contact-form .submit-button,
  .contact-form input[type="submit"] {
    grid-column: 1;
  }

  .contact-panel,
  .contact-form {
    padding: 24px;

    border-radius: 16px;
  }

  .map-card {
    min-height: 260px;
  }

  .contact-form textarea {
    min-height: 180px;
  }
}
/* =========================================================
   Booking page form
========================================================= */

.booking-form,
.lumi-form-content {
  width: 100%;
}

.booking-form .wpcf7,
.lumi-form-content .wpcf7 {
  width: 100%;
}

.booking-form .wpcf7-form,
.lumi-form-content .wpcf7-form {
  width: 100%;
  margin: 0;
}

/* Contact Form 7が自動生成する余白を初期化 */

.booking-form .wpcf7-form p,
.lumi-form-content .wpcf7-form p {
  margin: 0;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;

  width: 100%;
}

.booking-field {
  min-width: 0;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field label {
  display: block;

  margin: 0 0 10px;

  color: #151815;

  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.booking-field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* 入力欄 */

.booking-field input,
.booking-field select,
.booking-field textarea {
  display: block;

  width: 100% !important;
  max-width: none !important;

  margin: 0;
  padding: 0 16px;

  border: 1px solid var(--line, #d8dbd3);
  border-radius: 10px;

  background: #fbfbf8;
  color: #151815;

  font: inherit;

  box-shadow: none;
  outline: none;

  appearance: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.booking-field input,
.booking-field select {
  min-width: 0;
  height: 58px;
}

/* セレクトの矢印 */

.booking-field select {
  padding-right: 44px;

  background-image:
    linear-gradient(45deg, transparent 50%, #151815 50%),
    linear-gradient(135deg, #151815 50%, transparent 50%);

  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

/* 日付入力 */

.booking-field input[type="date"] {
  appearance: auto;
}

.booking-field textarea {
  min-height: 170px;

  padding-top: 15px;
  padding-bottom: 15px;

  line-height: 1.7;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #727d6e;

  background: #ffffff;

  box-shadow:
    0 0 0 3px
    rgb(114 125 110 / 0.12);
}

/* Placeholder */

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #8a8f89;
}

/* Submit */

.booking-submit {
  width: 100%;
}

.booking-submit p {
  margin: 0;
}

.booking-submit-button,
.booking-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100% !important;
  min-height: 56px;

  margin: 0;
  padding: 0 24px;

  border: 1px solid #151815;
  border-radius: 10px;

  background: #151815;
  color: #ffffff;

  font-size: 0.88rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.booking-submit-button:hover,
.booking-submit input[type="submit"]:hover {
  background: #343934;

  transform: translateY(-1px);
}

/* Contact Form 7 messages */

.booking-form-grid .wpcf7-not-valid-tip {
  display: block;

  margin-top: 7px;

  color: #a63c3c;

  font-size: 0.74rem;
}

.booking-form-grid ~ .wpcf7-response-output,
.lumi-form-content .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 13px 15px !important;

  border: 1px solid var(--line, #d8dbd3) !important;
  border-radius: 10px;

  font-size: 0.8rem;
}

.lumi-form-content .wpcf7-spinner {
  margin-top: 12px;
}

/* =========================================================
   Booking layout
========================================================= */

.booking-section {
  padding:
    clamp(48px, 6vw, 84px)
    0
    clamp(96px, 10vw, 150px);

  background: #0d120f;
}

.booking-panel {
  width: min(100%, 1180px);
  margin-inline: auto;
}


/* =========================================================
   Booking progress
========================================================= */

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-bottom: 34px;
  padding: 0;

  background: transparent;
}

.booking-step {
  position: relative;

  min-height: auto;
  padding: 0 24px 24px;

  border: 0;
  border-radius: 0;

  background: transparent;
}

.booking-step::before {
  content: "";

  position: absolute;
  top: 10px;
  right: 50%;
  left: -50%;

  height: 1px;

  background: #3b423c;
}

.booking-step:first-child::before {
  display: none;
}

.booking-step span {
  position: relative;
  z-index: 1;

  display: grid;

  width: 22px;
  height: 22px;

  margin: 0 auto 14px;

  place-items: center;

  border: 1px solid #697069;
  border-radius: 50%;

  background: #0d120f;
  color: #c7cbc7;

  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0;
}

.booking-step p {
  margin: 0;

  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}


/* =========================================================
   Booking form panel
========================================================= */

.booking-form {
  width: min(100%, 960px);

  margin-inline: auto;
  padding: clamp(30px, 4vw, 48px);

  border-radius: 24px;

  background: #f7f7f3;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px 20px;
}

.booking-field {
  min-width: 0;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field label {
  display: block;

  margin-bottom: 9px;

  color: #232723;

  font-size: 0.78rem;
  font-weight: 500;
}


/* Form controls */

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;

  border: 1px solid #d6d9d3;
  border-radius: 10px;

  background: #ffffff;
  color: #171a17;

  font: inherit;

  outline: none;
}

.booking-field input,
.booking-field select {
  height: 54px;
  padding: 0 15px;
}

.booking-field textarea {
  min-height: 150px;
  padding: 15px;

  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #727b70;

  box-shadow:
    0 0 0 3px
    rgb(114 123 112 / 0.12);
}


/* Submit */

.booking-submit-button {
  width: 100%;
  min-height: 54px;

  border: 0;
  border-radius: 10px;

  background: #151815;
  color: #ffffff;

  font-size: 0.86rem;
  font-weight: 600;

  cursor: pointer;
}

.booking-form-status {
  margin: -4px 0 0;

  color: #737873;

  font-size: 0.73rem;
  text-align: center;
}


/* Tablet */

@media (max-width: 800px) {
  .booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px 0;
  }

  .booking-step:nth-child(3)::before {
    display: none;
  }
}


/* Mobile */

@media (max-width: 620px) {
  .booking-steps {
    grid-template-columns: 1fr;

    gap: 0;
    margin-bottom: 24px;
  }

  .booking-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;

    padding: 13px 0;
  }

  .booking-step::before {
    top: -50%;
    right: auto;
    bottom: 50%;
    left: 11px;

    width: 1px;
    height: auto;
  }

  .booking-step span {
    margin: 0;
  }

  .booking-step p {
    text-align: left;
  }

  .booking-form {
    padding: 22px;

    border-radius: 18px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-field--full {
    grid-column: 1;
  }
}