/* =========================================================
   k-style theme - main stylesheet
   ========================================================= */

:root {
	--color-bg: #ffffff;
	--color-bg-alt: #f5f7f9;
	--color-text: #1f2937;
	--color-text-mute: #6b7280;
	--color-primary: #0c4a6e;        /* deep blue */
	--color-primary-light: #0ea5e9;  /* sky */
	--color-accent: #f59e0b;         /* warm amber */
	--color-line: #e5e7eb;
	--shadow-sm: 0 4px 12px rgba(15, 23, 42, .06);
	--shadow-md: 0 12px 30px rgba(15, 23, 42, .10);
	--shadow-lg: 0 24px 60px rgba(15, 23, 42, .15);
	--radius: 14px;
	--radius-sm: 8px;
	--container: 1180px;
	--ease: cubic-bezier(.22, 1, .36, 1);
	--font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
	--font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-jp);
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s var(--ease), color .2s var(--ease); }
a:hover { opacity: .75; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--alt { background: var(--color-bg-alt); }

.pc-only { display: inline; }
@media (max-width: 768px) { .pc-only { display: none; } }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px;
	overflow: hidden;
}
.skip-link { position: absolute; top: -40px; left: 0; background: #000; color: #fff; padding: 8px 16px; z-index: 1000; }
.skip-link:focus { top: 0; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(180%) blur(8px);
	-webkit-backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
	box-shadow: var(--shadow-sm);
	border-bottom-color: var(--color-line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding-top: 8px; padding-bottom: 8px;
}

.site-branding .site-title-link { display: flex; flex-direction: column; line-height: 1.1; }
.site-title {
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--color-primary);
}
.site-tagline {
	font-size: 11px;
	color: var(--color-text-mute);
	margin-top: 2px;
	letter-spacing: .12em;
}

.main-navigation { display: flex; align-items: center; gap: 24px; }
.primary-menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 26px;
}
.primary-menu a {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	position: relative;
	padding: 6px 0;
}
.primary-menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 0; height: 2px; background: var(--color-primary-light);
	transition: width .3s var(--ease);
}
.primary-menu a:hover { opacity: 1; color: var(--color-primary); }
.primary-menu a:hover::after { width: 100%; }

.nav-cta {
	display: flex; flex-direction: column; align-items: center;
	background: var(--color-primary);
	color: #fff !important;
	padding: 8px 20px;
	border-radius: 999px;
	line-height: 1.2;
	transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta:hover { background: var(--color-primary-light); opacity: 1 !important; transform: translateY(-1px); }
.nav-cta__label { font-size: 10px; letter-spacing: .1em; opacity: .85; }
.nav-cta__num { font-size: 16px; font-weight: 700; letter-spacing: .04em; }

.menu-toggle {
	display: none;
	width: 40px; height: 40px;
	background: transparent; border: 0; cursor: pointer;
	padding: 0; position: relative;
}
.menu-toggle__bar {
	position: absolute; left: 8px; right: 8px; height: 2px;
	background: var(--color-primary);
	transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.menu-toggle__bar:nth-child(1) { top: 12px; }
.menu-toggle__bar:nth-child(2) { top: 19px; }
.menu-toggle__bar:nth-child(3) { top: 26px; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) { top: 19px; transform: rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 980px) {
	.menu-toggle { display: block; }
	.main-navigation { gap: 0; }
	.primary-menu, .nav-cta {
		position: fixed;
		top: 76px; left: 0; right: 0;
		background: #fff;
		padding: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height .4s var(--ease), padding .4s var(--ease);
		border-radius: 0;
	}
	.main-navigation.is-open .primary-menu {
		max-height: 480px;
		padding: 16px 0;
		box-shadow: var(--shadow-sm);
	}
	.main-navigation.is-open .nav-cta {
		max-height: 80px;
		padding: 16px 24px;
		margin: 0 24px 24px;
		border-radius: 12px;
	}
	.primary-menu li { border-bottom: 1px solid var(--color-line); }
	.primary-menu a {
		display: block;
		padding: 16px 24px;
		font-size: 15px;
	}
	.primary-menu a::after { display: none; }
	.nav-cta { flex-direction: row; gap: 10px; justify-content: center; align-items: baseline; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
	padding: 120px 0 60px;
}
.hero__slides {
	position: absolute; inset: 0;
}
.hero__slide {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 1.2s var(--ease), transform 7s linear;
}
.hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
}
.hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(135deg, rgba(12, 74, 110, .65) 0%, rgba(2, 132, 199, .35) 60%, rgba(0, 0, 0, .55) 100%);
}
.hero__inner { position: relative; z-index: 2; text-align: left; }

.hero__lead {
	font-size: 14px;
	letter-spacing: .3em;
	margin: 0 0 18px;
	opacity: .9;
}
.hero__title {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(34px, 6vw, 64px);
	line-height: 1.25;
	margin: 0 0 24px;
	text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}
.hero__title span { display: block; }
.hero__desc {
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 2;
	max-width: 640px;
	margin: 0 0 36px;
	opacity: .95;
}
.hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: .05em;
	min-width: 220px;
	text-align: center;
	transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--primary {
	background: var(--color-accent);
	color: #fff;
	box-shadow: 0 12px 30px rgba(245, 158, 11, .35);
}
.btn--primary:hover { background: #d97706; opacity: 1; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(245, 158, 11, .45); }
.btn--ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .5);
	backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .22); opacity: 1; transform: translateY(-2px); }
.btn__small { font-size: 11px; opacity: .85; letter-spacing: .15em; }
.btn__num { font-size: 18px; }

.hero__scroll {
	position: absolute;
	bottom: 24px; left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 11px;
	letter-spacing: .3em;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	opacity: .85;
}
.hero__scroll span {
	width: 1px; height: 50px;
	background: rgba(255, 255, 255, .7);
	display: block;
	animation: scrollLine 2s ease-in-out infinite;
	transform-origin: top;
}
@keyframes scrollLine {
	0% { transform: scaleY(0); }
	50% { transform: scaleY(1); }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   Intro
   ========================================================= */
.intro { padding: 100px 0 40px; text-align: center; }
.intro__catch {
	font-family: var(--font-serif);
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 0 24px;
	line-height: 1.6;
}
.intro__text { font-size: 16px; color: var(--color-text-mute); margin: 0; line-height: 2; }

/* =========================================================
   Section header
   ========================================================= */
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header__en {
	font-family: var(--font-serif);
	font-size: 14px;
	letter-spacing: .35em;
	color: var(--color-primary-light);
	margin: 0 0 8px;
	text-transform: uppercase;
}
.section-header__ja {
	font-family: var(--font-serif);
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 700;
	margin: 0;
	color: var(--color-text);
	letter-spacing: .04em;
}
.section-header__sub {
	margin-top: 16px;
	color: var(--color-text-mute);
	font-size: 15px;
	line-height: 1.9;
}

/* =========================================================
   Service overview cards
   ========================================================= */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.service-card {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	padding: 36px 28px;
	display: block;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
	opacity: 1;
}
.service-card__icon {
	font-size: 32px;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
}
.service-card__title {
	font-family: var(--font-serif);
	font-size: 20px;
	margin: 0 0 12px;
	color: var(--color-primary);
}
.service-card__desc {
	font-size: 14px;
	color: var(--color-text-mute);
	margin: 0;
	line-height: 1.9;
}
@media (max-width: 980px) {
	.service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.service-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Service detail (image + price table)
   ========================================================= */
.service-detail__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.service-detail__grid--reverse .service-detail__media { order: 2; }
.service-detail__media img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.service-detail__lead {
	font-family: var(--font-serif);
	font-size: 18px;
	color: var(--color-primary);
	margin: 16px 0 28px;
	line-height: 1.8;
}
.service-detail__body .section-header__en { margin-bottom: 6px; }
.service-detail__body .section-header__ja { font-size: 30px; }

.price-table {
	background: #fff;
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-line);
}
.section--alt .price-table { background: #fff; }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
	padding: 14px 12px;
	text-align: left;
	border-bottom: 1px solid var(--color-line);
	font-size: 15px;
}
.price-table th {
	background: var(--color-bg-alt);
	font-weight: 700;
	color: var(--color-primary);
	letter-spacing: .04em;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--color-text); }
.price-note { margin: 12px 0 0; font-size: 12px; color: var(--color-text-mute); }

@media (max-width: 880px) {
	.service-detail__grid { grid-template-columns: 1fr; gap: 40px; }
	.service-detail__grid--reverse .service-detail__media { order: 0; }
}

/* =========================================================
   Garden before/after
   ========================================================= */
.ba-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.ba-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-line);
}
.ba-card__pair {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 14px;
}
.ba-card__fig {
	margin: 0;
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: #000;
}
.ba-card__fig img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}
.ba-card__fig figcaption {
	position: absolute;
	top: 10px; left: 10px;
	background: var(--color-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .15em;
	padding: 4px 10px;
	border-radius: 4px;
}
.ba-card__fig:nth-child(3) figcaption { background: var(--color-accent); }
.ba-card__arrow {
	font-size: 28px;
	color: var(--color-primary);
	font-weight: 700;
}
@media (max-width: 880px) {
	.ba-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Other services
   ========================================================= */
.other-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.other-item {
	background: #fff;
	border-radius: var(--radius);
	padding: 28px;
	border-left: 4px solid var(--color-primary-light);
	box-shadow: var(--shadow-sm);
}
.other-item h3 {
	font-family: var(--font-serif);
	margin: 0 0 10px;
	font-size: 18px;
	color: var(--color-primary);
}
.other-item p { margin: 0; font-size: 14px; color: var(--color-text-mute); line-height: 1.9; }
@media (max-width: 700px) {
	.other-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Special cleaning - masonry
   ========================================================= */
.masonry {
	column-count: 4;
	column-gap: 16px;
}
.masonry__item {
	margin: 0 0 16px;
	break-inside: avoid;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.masonry__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.masonry__item img { width: 100%; display: block; }

@media (max-width: 980px) { .masonry { column-count: 3; } }
@media (max-width: 700px) { .masonry { column-count: 2; } }
@media (max-width: 420px) { .masonry { column-count: 1; } }

/* =========================================================
   Corona
   ========================================================= */
.corona-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.corona-grid__item {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	background: #fff;
}
.corona-grid__item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}
@media (max-width: 880px) {
	.corona-grid { grid-template-columns: 1fr; }
	.corona-grid__item img { height: auto; }
}

/* =========================================================
   About
   ========================================================= */
.about__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: start;
}
.about__list {
	margin: 0;
	background: var(--color-bg-alt);
	border-radius: var(--radius);
	padding: 8px 24px;
}
.about__list > div {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--color-line);
}
.about__list > div:last-child { border-bottom: 0; }
.about__list dt {
	font-weight: 700;
	color: var(--color-primary);
	font-size: 14px;
	letter-spacing: .08em;
}
.about__list dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
}
.about__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

@media (max-width: 880px) {
	.about__inner { grid-template-columns: 1fr; }
	.about__list > div { grid-template-columns: 100px 1fr; }
}

/* =========================================================
   Contact
   ========================================================= */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 48px;
	align-items: start;
}
.contact__info {
	background: linear-gradient(135deg, var(--color-primary) 0%, #075985 100%);
	color: #fff;
	border-radius: var(--radius);
	padding: 40px 32px;
	box-shadow: var(--shadow-md);
}
.contact__tel-label { font-size: 12px; letter-spacing: .2em; opacity: .85; margin: 0 0 8px; }
.contact__tel {
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	letter-spacing: .04em;
	display: inline-block;
	margin-bottom: 20px;
}
.contact__address { font-size: 14px; opacity: .9; margin: 0 0 24px; }
.contact__points { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .25); padding-top: 20px; }
.contact__points li {
	font-size: 14px;
	padding: 6px 0 6px 24px;
	position: relative;
}
.contact__points li::before {
	content: "✓";
	position: absolute; left: 0;
	color: var(--color-accent);
	font-weight: 700;
}

.contact__form {
	background: #fff;
	border-radius: var(--radius);
	padding: 36px 32px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-line);
}
.contact__form .cf7-notice {
	background: #fff8e1;
	border: 1px dashed #f59e0b;
	color: #78350f;
	padding: 16px;
	border-radius: var(--radius-sm);
	font-size: 13px;
	line-height: 1.8;
}

/* CF7 styling */
.contact__form .wpcf7-form p { margin: 0 0 18px; }
.contact__form label { font-size: 13px; font-weight: 700; color: var(--color-primary); display: block; margin-bottom: 6px; }
.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form input[type="url"],
.contact__form input[type="number"],
.contact__form select,
.contact__form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 15px;
	background: #fff;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
	outline: 0;
	border-color: var(--color-primary-light);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, .15);
}
.contact__form textarea { min-height: 140px; resize: vertical; }
.contact__form .wpcf7-submit, .contact__form input[type="submit"] {
	background: var(--color-accent);
	color: #fff;
	border: 0;
	padding: 14px 36px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .1em;
	cursor: pointer;
	transition: background .25s var(--ease), transform .25s var(--ease);
}
.contact__form .wpcf7-submit:hover, .contact__form input[type="submit"]:hover {
	background: #d97706;
	transform: translateY(-2px);
}
.contact__form .wpcf7-submit:disabled,
.contact__form input[type="submit"]:disabled {
	opacity: .6;
	cursor: not-allowed;
	transform: none;
}

/* ----- Contact Form 7 validation messages ----- */
/* 必須項目ラベル */
.contact__form .wpcf7-form .required-mark,
.contact__form .wpcf7-form-control-wrap[data-name*="*"]::before {
	color: #dc2626;
}

/* 入力欄のすぐ下に出る個別エラーメッセージ */
.contact__form .wpcf7-not-valid-tip {
	display: block;
	color: #b91c1c;
	font-size: 13px;
	font-weight: 700;
	margin-top: 6px;
	padding: 8px 12px;
	background: #fef2f2;
	border-left: 3px solid #dc2626;
	border-radius: 4px;
	animation: cf7Shake .35s var(--ease);
}

/* 不正な入力欄を赤く強調 */
.contact__form .wpcf7-not-valid {
	border-color: #dc2626 !important;
	background: #fef2f2 !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .12) !important;
}

/* フォーム下部のサマリー表示（成功・失敗共通の枠） */
.contact__form .wpcf7-response-output {
	margin: 24px 0 0 !important;
	padding: 16px 20px !important;
	border-radius: var(--radius-sm) !important;
	border: 0 !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.7;
}

/* 入力エラー時（赤） */
.contact__form .wpcf7 form.invalid .wpcf7-response-output,
.contact__form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact__form .wpcf7 form.payment-required .wpcf7-response-output {
	background: #fef2f2;
	color: #b91c1c;
	border-left: 4px solid #dc2626 !important;
}

/* 送信失敗時（黄） */
.contact__form .wpcf7 form.failed .wpcf7-response-output,
.contact__form .wpcf7 form.aborted .wpcf7-response-output,
.contact__form .wpcf7 form.spam .wpcf7-response-output {
	background: #fff8e1;
	color: #78350f;
	border-left: 4px solid #f59e0b !important;
}

/* 送信成功時（緑） */
.contact__form .wpcf7 form.sent .wpcf7-response-output {
	background: #ecfdf5;
	color: #065f46;
	border-left: 4px solid #10b981 !important;
}

/* 送信中スピナー */
.contact__form .wpcf7-spinner {
	background-color: var(--color-primary-light);
}

@keyframes cf7Shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-4px); }
	75% { transform: translateX(4px); }
}

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

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	background: #0b1220;
	color: #cbd5e1;
	padding: 60px 0 24px;
}
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 32px;
}
.site-footer__title {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	letter-spacing: .06em;
}
.site-footer__desc { font-size: 13px; line-height: 1.9; opacity: .8; margin: 0; }
.site-footer__info p { margin: 0 0 8px; font-size: 13px; }
.site-footer__info a { color: var(--color-accent); }
.site-footer__nav .footer-menu, .site-footer__nav .primary-menu {
	list-style: none;
	margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 10px;
}
.site-footer__nav a { font-size: 13px; color: #cbd5e1; }
.site-footer__nav a::after { display: none; }
.site-footer__copy {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 24px;
	text-align: center;
	font-size: 12px;
	opacity: .6;
	margin: 0;
}
@media (max-width: 700px) {
	.site-footer__inner { grid-template-columns: 1fr; }
}

.back-to-top {
	position: fixed;
	right: 20px; bottom: 20px;
	width: 48px; height: 48px;
	background: var(--color-primary);
	color: #fff !important;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	box-shadow: var(--shadow-md);
	font-size: 14px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
	z-index: 90;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary-light); opacity: 1 !important; }

/* =========================================================
   Reveal animation
   ========================================================= */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
	will-change: opacity, transform;
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.hero__slide { transition: opacity .3s linear; transform: none; }
	html { scroll-behavior: auto; }
}
