/* =========================================================
   WAKKA.W theme stylesheet
   Design width: 1366px / Breakpoints: 1024px, 600px
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Design tokens ---------- */
:root {
	--color-peach: #FCBA8A;
	--color-peach-deep: #C79069;
	--color-terracotta: #C79069;
	--color-brown: #AF6C3F;
	--color-cream: #FFF7F0;
	--color-beige: #E7DBD5;
	--color-dark: #322115;
	--color-white: #FFFFFF;
	--color-text: #322115;
	--color-text-soft: rgba(50, 33, 21, .65);

	--font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-en: "Poppins", var(--font-jp);

	--container-w: 1240px;
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 10px;
	--header-h: 116px;
}

body {
	font-family: var(--font-jp);
	font-weight: 500;
	color: var(--color-text);
	/* !important guards against Elementor's global "kit" styles (.elementor-kit-38),
	   which are also active on this site and set body { background-color } with
	   higher specificity than a bare element selector would normally have. */
	background: var(--color-cream) !important;
	line-height: 1.8;
	font-size: 16px;
	overflow-x: hidden;
}

.container {
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: 24px;
}

.section { padding-top: 56px; padding-bottom: 96px; }
.section--tight { padding-top: 139px; padding-bottom: 60px; background-color: var(--color-beige); }
.section--tight.related { padding-top: 0; padding-bottom: 0; }

@media (max-width: 1024px) {
	.section { padding-block: 64px; }
}
@media (max-width: 600px) {
	.section { padding-block: 48px; }
	.container { padding-inline: 20px; }
}

h1, h2, h3, h4 { font-weight: 500; line-height: 1.5; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute; top: -60px; left: 8px; z-index: 10000;
	background: var(--color-dark); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 8px; }

/* ---------- Eyebrow label (● Business) ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-en);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.1em;
}
.eyebrow::before {
	content: "";
	width: 8px; height: 8px; border-radius: 50%;
	background: currentColor;
}
.eyebrow--dark { color: var(--color-dark); }
.eyebrow--white { color: #fff; }

.section-heading { font-size: 47px; margin-top: 2px; letter-spacing: .02em; }
@media (max-width: 820px) {
	.section-heading { font-size: 39px; }
}
@media (max-width: 600px) {
	.section-heading { font-size: 28px; }
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 16px;
	padding: 6px 8px 6px 28px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.1em;
	background: #fff;
	color: var(--color-dark);
	transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.btn__icon {
	width: 34px; height: 34px;
	flex-shrink: 0;
	position: relative;
}
.btn__icon::before {
	content: "";
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
	border-radius: 50%;
	background: var(--color-peach);
	opacity: 1;
}
.btn__icon::after {
	content: "";
	position: absolute; right: 0; top: 20%;
	width: 62%; height: 62%;
	border-radius: 50%;
	background: var(--color-terracotta);
	opacity: .55;
}
.btn--dark { background: var(--color-dark); color: #fff; }
.btn--submit {
	display: inline-flex; align-items: center; gap: 20px;
	padding: 10px 10px 10px 32px;
	border-radius: 999px;
	background: var(--color-beige) !important;
	color: var(--color-dark);
	font-weight: 500;
	font-size: 12px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 300;
	padding: 20px 0;
	background: transparent;
}
.site-header__inner {
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: 24px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
}
.site-logo {
	width: 60px; height: 60px; border-radius: 50%;
	display: block; overflow: hidden;
	flex-shrink: 0;
}
.site-logo img { width: 100%; height: 100%; object-fit: cover; }

.site-nav { }
.nav-menu {
	display: flex; align-items: center; gap: 36px;
	background: rgba(255, 247, 240, 1);
	border-radius: 999px;
	padding: 18px 36px;
	font-size: 13px;
	font-weight: 500;
}
.nav-menu a { white-space: nowrap; }
.nav-menu a:hover { color: var(--color-peach-deep); }

.menu-toggle {
	display: none;
	flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(255,247,240,.9) !important;
	z-index: 200;
}
.menu-toggle__bar {
	width: 20px; height: 2px; background: var(--color-dark);
	margin-inline: auto;
	transition: transform .25s ease, opacity .25s ease;
}
body.nav-open .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
	.menu-toggle { width: 60px; height: 60px; }
}
@media (max-width: 900px) {
	.menu-toggle { display: flex; }
	.site-nav {
		position: fixed; inset: 0; left: auto;
		width: min(320px, 84vw);
		background: var(--color-cream);
		transform: translateX(100%);
		transition: transform .3s ease;
		padding: 120px 32px 32px;
		box-shadow: -10px 0 30px rgba(0,0,0,.1);
	}
	body.nav-open .site-nav { transform: translateX(0); }
	.nav-menu {
		flex-direction: column; align-items: flex-start;
		background: none; padding: 0; gap: 24px;
		font-size: 18px;
	}
	body.nav-open::after {
		content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: 150;
	}
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--color-dark); color: #fff; }
.site-footer__inner {
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 41px 24px 49px;
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 40px;
}
.footer-nav { display: flex; flex-direction: column; gap: 28px; }
.footer-nav a { display: block; }
.footer-nav__en { display: block; font-family: var(--font-en); font-weight: 400; font-size: 22px; letter-spacing: 0.1em; }
.footer-nav__ja { display: block; font-size: 13px; opacity: .7; margin-top: 4px; }

.footer-contact-card {
	background: var(--color-beige);
	color: var(--color-dark);
	border-radius: var(--radius-lg);
	padding: 26px 38px 30px;
	position: relative;
	display: block;
}
.footer-contact-card__en { font-family: var(--font-en); font-weight: 600; font-size: 28px; margin-right: 12px; }
.footer-contact-card__ja { font-size: 14px; }
.footer-contact-card__body { margin-top: 14px; display: flex; gap: 16px; flex-wrap: wrap; }
.footer-contact-card__ja-text { font-size: 12px; max-width: 168px; font-weight: 500; }
.footer-contact-card__en-text { font-size: 11px; color: var(--color-text-soft); max-width: 195px; font-weight: 400; }
.footer-contact-card__arrow {
	position: absolute; right: 10px; bottom: 9px;
	width: 41px; height: 41px;
}
.footer-contact-card__arrow::before {
	content: ""; position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
	border-radius: 50%;
	background: var(--color-peach);
	opacity: .5;
}
.footer-contact-card__arrow::after {
	content: ""; position: absolute; right: 0; top: 20%;
	width: 62%; height: 62%;
	border-radius: 50%;
	background: var(--color-terracotta);
	opacity: .55;
}

.site-footer__bottom { margin-top: 118px; }
.site-footer__bottom-inner {
	display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 38px;
	font-size: 11px; opacity: 1; font-weight: 300;
}
.site-footer__links { display: flex; gap: 38px; }

@media (max-width: 700px) {
	.site-footer__inner { flex-direction: column; }
}
@media (max-width: 480px) {
	.footer-contact-card { padding: 26px 26px 30px; }
	.site-footer__bottom { margin-top: 48px; }
	.site-footer__bottom-inner { justify-content: center; }
	.footer-contact-card__ja-text { width: 100%; }
	.footer-contact-card__en-text { max-width: 225px; }
}

/* =========================================================
   Sharehouse card (shared: top list / archive / related)
   ========================================================= */
.sh-card { display: block; background: #fff; }
.sh-card__media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.sh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sh-card:hover .sh-card__media img { transform: scale(1.05); }
.sh-card__badges { position: absolute; inset: 14px 14px auto 14px; display: flex; justify-content: space-between; align-items: flex-start; }

.badge {
	display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
	font-family: var(--font-en); font-weight: 700;
	border-radius: 999px;
	text-align: center;
	line-height: 1.2;
}
.badge--status {
	width: 56px; height: 56px;
	background: #fff;
	color: var(--color-dark);
}
.badge--status .badge__ja { font-family: var(--font-jp); font-size: 11px; }
.badge--status .badge__en { font-size: 8px; opacity: .8; text-transform: lowercase; }
.badge--accent {
	background: var(--color-peach);
	color: var(--color-dark);
	padding: 5px 10px;
	border-radius: 8px;
}
.badge--accent .badge__ja { font-family: var(--font-jp); font-size: 12px; font-weight: 500; }
.badge--accent .badge__en { font-size: 10px; font-weight: 400; text-transform: none; }

.sh-card__body { padding: 24px 28px 20px; border: 1px solid #322115; font-weight: 500; }
.sh-card__title { font-size: 21px; font-weight: 500; }
.sh-card__title-en { display: block; font-family: var(--font-en); font-size: 12px; color: var(--color-text-soft); margin-top: 4px; font-weight: 500; }
.sh-card__price { font-size: 26px; font-weight: 500; margin-top: 14px; }
.sh-card__price small { font-size: 14px; font-weight: 500; }
.sh-card__fees { margin-top: 10px; font-size: 12px; color: var(--color-text-soft); }
.sh-card__fees li { padding-left: 12px; border-left: 1px solid currentColor; margin-top: 4px; }
.sh-card__fee-en { display: block; font-size: 10px; margin-top: 2px; }
.sh-card__address { margin-top: 12px; font-size: 12px; color: var(--color-peach-deep); }

.sh-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
	width: 100vw; margin-left: 50%; transform: translateX(-50%);
	margin-top: 48px;
}
@media (max-width: 1024px) { .sh-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sh-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
	.sh-grid { margin-top: 28px; }
	.sh-card__body { padding: 24px 20px 20px; }
}

/* =========================================================
   Utility: circular photo frame
   ========================================================= */
.circle-photo { position: absolute; }
.business .circle-photo, .vacant-home .circle-photo { position: relative; }
.circle-photo img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   TOP: Hero
   ========================================================= */
.hero {
	position: relative;
	z-index: 0;
	background: var(--color-peach);
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

/* Circles are absolutely positioned (relative to .hero's top edge, i.e. the
   very top of the page) and negative-z-indexed so the plain, unpositioned
   .hero__heading naturally paints above them without needing its own
   position/z-index. */
.hero__circle {
	position: absolute;
	width: 48%;
	aspect-ratio: 1 / 1;
	z-index: -1;
	overflow: hidden;
}
.hero__circle img { width: 100%; height: 100%; object-fit: cover; }
.hero__circle--left { left: 18px; bottom: 16px; }
.hero__circle--right { top: -23px; right: 18px; }

/* Kept outside .hero__circle so the corner text is not affected by it. */
.hero__tagline {
	position: absolute; top: 20%; left: 10%; max-width: 380px;
	color: #fff; font-weight: 500; font-size: 16px; line-height: 1.6;
	letter-spacing: 0.1em;
}

.hero__heading {
	position: absolute;
	bottom: 41px;
	right: 0;
	font-size: 92px;
	color: #fff;
	line-height: 1.3;
}
.hero__scroll {
	position: absolute; left: 40px; bottom: 60px;
	display: flex; flex-direction: column; align-items: center; gap: 14px;
	color: #fff;
}
.hero__scroll-label {
	writing-mode: vertical-rl;
	font-family: var(--font-en); font-size: 12px; letter-spacing: .1em;
}
.hero__scroll-dots { display: flex; flex-direction: column; gap: 6px; }
.hero__scroll-dots i {
	width: 6px; height: 6px; border-radius: 50%;
	background: #fff; display: block; opacity: 1;
	animation: hero-scroll-dot 1.5s linear infinite;
}
.hero__scroll-dots i:nth-child(1) { animation-delay: 0s; }
.hero__scroll-dots i:nth-child(2) { animation-delay: .5s; }
.hero__scroll-dots i:nth-child(3) { animation-delay: 1s; }

@keyframes hero-scroll-dot {
	0% { background: #C79069; }
	33.333% { background: #C79069; }
	33.334% { background: #fff; }
	100% { background: #fff; }
}

@media (max-width: 1024px) {
	.hero { padding-top: 460px; }
	.hero__circle { width: 65%; }
	.hero__heading { bottom: 91px; font-size: 86px; }
}
@media (max-width: 820px) {
	.hero__circle { width: 65%; }
}
@media (max-width: 700px) {
	.hero { padding: calc(var(--header-h) + 20px) 20px 80px; overflow: visible; }
	.hero__circle {
		position: static; display: block; width: 70%; margin-inline: auto;
		z-index: auto;
	}
	.hero__circle--left { margin-bottom: -20%; }
	.hero__circle--right { margin-left: 24%; }
	.hero__tagline { top: calc(var(--header-h) + 36px); left: 15%; max-width: 60%; font-size: 13px; }
	.hero__heading { margin: 24px 0 0; width: auto; font-size: 32px; text-align: left; }
	.hero__scroll { display: none; }
}
@media (max-width: 480px) {
	.hero { padding-top: 0; }
	.hero__circle { width: 100%; }
	.hero__circle--left { margin-bottom: -20%; }
	.hero__circle--right { margin-left: 0; }
	.hero__heading { font-size: 45px; }
	.hero__tagline { left: 7%; }
}

/* =========================================================
   TOP: Philosophy teaser
   ========================================================= */
.philosophy-teaser {
	background: var(--color-peach);
	padding-block: 100px;
	color: #fff;
	overflow: hidden;
}
.philosophy-teaser__inner { position: relative; z-index: 0; min-height: 680px; }
.philosophy-teaser__eyebrow { position: absolute; top: 0; right: 0; }

.philosophy-teaser__heading { font-size: 52px; line-height: 1.5; }
.philosophy-teaser__en { margin-top: 24px; font-size: 12px; opacity: 1; font-weight: 400; }

.philosophy-teaser__aside {
	position: absolute; top: 40%; right: 0; width: 387px;
}
.philosophy-teaser__jp { font-size: 14px; }
.philosophy-teaser__desc-en { font-size: 12px; opacity: 1; margin-top: 29px; margin-bottom: 43px; }

.philosophy-teaser__photo {
	position: absolute; top: 16%; left: 20%;
	width: 500px;
	z-index: -1;
}

@media (max-width: 1200px) {
	.philosophy-teaser__aside { width: 300px; }
	.philosophy-teaser__photo { width: 380px; right: 0; }
}

@media (max-width: 1024px) {
	.philosophy-teaser { padding-block: 90px 60px; }
	.philosophy-teaser__inner { display: flex; flex-direction: column; min-height: auto; }
	.philosophy-teaser__eyebrow { position: static; align-self: flex-end; }
	.philosophy-teaser__heading { max-width: 100%; margin-top: 20px; }
	.philosophy-teaser__en { font-size: 24px; }
	.philosophy-teaser__jp .responsive-br { display: none; }
	.philosophy-teaser__aside { position: static; width: 100%; margin-top: 32px; }
	.philosophy-teaser__btn { position: static; margin-top: 28px; font-size: 16px; }
	.philosophy-teaser__photo { position: static; width: 500px; margin: 40px auto 0; }
}
@media (max-width: 480px) {
	.philosophy-teaser__heading { font-size: 30px; }
	.philosophy-teaser__en { font-size: 18px; margin-top: 14px; line-height: 1.5; }
	.philosophy-teaser__btn { margin-top: 0; }
	.philosophy-teaser__photo { width: 100%; }
}

/* =========================================================
   TOP: Business cards
   ========================================================= */
.business { background-color: #E7DBD5; }

.business__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.business-card {
	background: #fff; border-radius: var(--radius-lg);
	padding: 18px 34px 25px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.business-card__no { font-family: var(--font-en); font-size: 12px; font-weight: 500; color: var(--color-brown); }
.business-card__no-slash { color: var(--color-peach-deep); }
.business-card__text h3 { font-size: 28px; margin-top: 21px; font-weight: 500; }
.business-card__en { display: block; font-family: var(--font-en); font-size: 11px; color: var(--color-peach-deep); font-weight: 500; margin-top: 6px; }
.business-card__text p { margin-top: 25px; font-size: 13px; font-weight: 400; }
.business-card__text .business-card__desc-en { font-size: 11px; color: var(--color-text-soft); margin-top: 6px; font-weight: 400; }
.business-card__photo { width: 210px; max-width: 249px; flex-shrink: 0; }

@media (max-width: 1024px) {
	.business__grid { grid-template-columns: 1fr; }
	.business-card__text .responsive-br { display: none; }
	.business-card__photo { width: 270px; }
}
@media (max-width: 600px) {
	.business-card { flex-direction: column; text-align: center; padding: 32px 24px; }
	.business-card__photo { width: 160px; }
}
@media (max-width: 480px) {
	.business { padding-bottom: 40px; }
	.business__grid { margin-top: 28px; }
	.business-card__text h3 { margin-top: 12px; }
	.business-card__text p { margin-top: 20px; }
}

/* =========================================================
   TOP: Marquee banner
   ========================================================= */
.marquee {
	background: var(--color-beige);
	overflow: hidden;
}
.marquee__track {
	display: flex; align-items: center; gap: 60px;
	white-space: nowrap;
	width: max-content;
	font-size: 122px; font-weight: 500; font-family: var(--font-en);
	color: #fff;
	animation: marquee 30s linear infinite;
}
.marquee__photo { width: 90px; flex-shrink: 0; position: relative; }
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (max-width: 600px) {
	.marquee__track { font-size: 32px; gap: 30px; }
	.marquee__photo { width: 56px; }
}
@media (max-width: 480px) {
	.marquee__track { font-size: 72px; }
}

/* =========================================================
   TOP: Sharehouse list
   ========================================================= */
.sharehouse-list { background: var(--color-beige); padding-bottom: 0; }

/* =========================================================
   TOP: Vacant home proposal
   ========================================================= */
.vacant-home { background: var(--color-cream); padding: 0; display: flow-root; }
.vacant-home__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.vacant-home__text { padding-top: 55px; }
.vacant-home__lead { font-weight: 500; margin-top: 20px; }
.vacant-home__desc { margin-top: 67px; font-size: 14px; font-weight: 400; line-height: 2; }
.vacant-home__en { font-size: 12px; line-height: 2; margin-top: 29px; color: var(--color-text-soft); }
.vacant-home__photo {
	height: 100%;
	overflow: hidden;
	border-radius: 0 0 0 var(--radius-lg);
	margin-right: -24px;
}
.vacant-home__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1240px) {
	.vacant-home__photo { margin-right: calc(-1 * ((100vw - var(--container-w)) / 2 + 24px)); }
}

.problem-panel { background: #fff; border-radius: var(--radius-lg); padding: 56px; margin-top: 80px; }
.problem-panel__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.problem-panel__head h3 { font-size: 28px; }
.problem-panel__en { font-size: 12px; font-weight: 500; color: var(--color-text-soft); max-width: 280px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 43px 36px; margin-top: 40px; }
.problem-grid__item { display: flex; align-items: center; gap: 14px; width: 380px; }
.problem-grid__item:nth-child(1), .problem-grid__item:nth-child(4) { width: 267px; }
.problem-grid__item .icon { width: 57px; flex-shrink: 0; }
.problem-grid__item strong { display: block; font-size: 20px; font-weight: 500; letter-spacing: 0.1em; }
.problem-grid__item span { display: block; font-size: 11px; color: var(--color-text-soft); margin-top: 2px; }

@media (max-width: 1024px) {
	.vacant-home__intro { grid-template-columns: 1fr; }
	.vacant-home__desc .responsive-br { display: none; }
	.vacant-home__photo { margin-right: 0; border-radius: var(--radius-lg); }
	.problem-grid { grid-template-columns: repeat(2, 1fr); }
	.problem-panel { padding: 32px; }
}
@media (max-width: 820px) {
	.problem-grid { grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 600px) {
	.problem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.vacant-home__intro { gap: 40px; }
	.vacant-home__text { padding-top: 36px; }
	.vacant-home__lead { margin-top: 10px; }
	.vacant-home__desc { margin-top: 37px; }
	.vacant-home__en { margin-top: 20px; }
	.problem-panel { margin-top: 50px; padding: 32px 20px; }
	.problem-panel__head { gap: 12px; }
	.problem-panel__head h3 { font-size: 19px; }
	.problem-grid { gap: 25px 36px; }
	.problem-grid__item { width: auto; }
	.problem-grid__item .icon { width: 47px; }
	.problem-grid__item strong { font-size: 16px; }
}

.reuse-block { margin-top: 81px; }
.reuse-block__en { font-size: 12px; color: var(--color-text-soft); margin-top: 8px; }
.reuse-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.reuse-row__text { width: 54%; }
.reuse-row__photo { width: 100%; max-width: 409px; }
.reuse-row__jp { font-size: 13px; font-weight: 400; line-height: 2; max-width: 339px; }
.reuse-row__en { font-size: 11px; color: var(--color-text-soft); max-width: 339px; margin-top: 44px; margin-left: 30%; }
.reuse-row__media { display: flex; align-items: center; gap: 0; }
.reuse-row__label {
	align-self: self-end;
	width: 41%;
	font-size: 26px; font-weight: 700; text-align: right;
}
.reuse-row__label small { display: block; font-family: var(--font-en); font-size: 12px; font-weight: 500; margin-top: 6px; }
.reuse-row--reverse { direction: rtl; }
.reuse-row--reverse > * { direction: ltr; }
.reuse-row--reverse .reuse-row__label { text-align: left; }
.reuse-row--reverse .reuse-row__text { margin-left: 24px; }

@media (max-width: 1024px) {
	.reuse-row { text-align: center; direction: ltr !important; margin: 64px 0; justify-content: space-around; }
	.reuse-row__text { width: 50%; }
	.reuse-row__jp, .reuse-row__en { text-align: left; }
	.reuse-row__en { margin-left: 0; margin-top: 34px; }
	.reuse-row__photo { width: 260px; margin-inline: auto; }
	.reuse-row__label { margin-top: 12px; text-align: center !important; }
}
@media (max-width: 820px) {
	.reuse-row { flex-direction: column-reverse; }
	.reuse-row__text { width: 100%; margin-top: 34px; }
	.reuse-row__jp, .reuse-row__en { max-width: none; }
	.reuse-row__en { margin-top: 24px; }
	.reuse-row--reverse .reuse-row__text { margin-left: 0; }
}
@media (max-width: 480px) {
	.reuse-block { margin-top: 42px; }
	.reuse-row { margin: 44px 0; }
	.reuse-row__en { margin-top: 14px; }
	.reuse-row__label { font-size: 18px; }
	.reuse-row__label small { margin-top: 0; }
}

.owner-benefits {
	margin-top: 44px;
	margin-bottom: 60px;
	margin-left: 0;
	padding-left: 0;
	display: grid;
	grid-template-columns: 377px 1fr;
	gap: 40px;
	align-items: stretch;
}
.owner-benefits__badge {
	background: var(--color-peach-deep);
	color: #fff;
	border-top-right-radius: var(--radius-lg);
	border-bottom-right-radius: var(--radius-lg);
	padding: 74px 74px 54px 25%;
	display: flex; flex-direction: column; justify-content: center;
}
.owner-benefits__badge h3 { font-size: 34px; }
.owner-benefits__badge span { font-family: var(--font-en); font-size: 11px; margin-top: 19px; display: block; opacity: .9; }
.owner-benefits__list { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
.owner-benefits__list li { display: flex; gap: 19px; align-items: center; }
.owner-benefits__list li:first-child { gap: 43px; }
.owner-benefits__list .owner-benefits__num { font-family: "tt-commons-pro", var(--font-en); font-size: 141px; font-weight: 400; color: rgba(231, 219, 213, .6); line-height: 1; margin-top: 0; }
.owner-benefits__list li:first-child .owner-benefits__num { margin-left: 6px; }
.owner-benefits__list strong { display: block; font-size: 16px; font-weight: 400; line-height: 1.6; }
.owner-benefits__list span { display: block; font-size: 11px; font-weight: 300; color: var(--color-text-soft); margin-top: 8px; max-width: 248px; }

@media (max-width: 1024px) {
	.owner-benefits { grid-template-columns: 1fr; }
	.owner-benefits__badge { padding: 24px 32px; }
	.owner-benefits__badge .responsive-br { display: none; }
	.owner-benefits__list { padding: 0 32px; }
}
@media (max-width: 480px) {
	.owner-benefits__list { grid-template-columns: 1fr; padding: 0 22px; }
	.owner-benefits__badge h3 { font-size: 24px; }
	.owner-benefits__badge span { margin-top: 9px; }
	.owner-benefits__list strong { font-size: 14px; }
}

/* Large screens (~1920px+): keep full-bleed elements from drifting too far
   off-center. Scoped to this breakpoint only — no effect below it. */
@media (min-width: 1920px) {
	.vacant-home__photo { margin-right: 0; }
	.owner-benefits { margin-left: auto; padding-left: 24px; }
}

/* =========================================================
   Company page
   ========================================================= */
.company-hero {
	position: relative;
	background: var(--color-peach);
	overflow: hidden;
	padding-block: calc(var(--header-h) + 40px) 120px;
}
.company-hero__circle { position: absolute; border-radius: 50%; }
.company-hero__circle--a { width: 915px; height: 915px; right: -66px; bottom: -136px; background: var(--color-peach-deep); opacity: .5; mix-blend-mode: normal; }
.company-hero__circle--b { width: 651px; height: 651px; bottom: -177px; left: -30px; background: var(--color-terracotta); opacity: .55; mix-blend-mode: darken; }
.company-hero__inner { position: relative; }
.company-hero__title { font-size: 52px; color: #fff; margin-top: 14px; }
.company-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; margin-top: 64px; }
.company-hero__heading { font-size: 40px; color: #fff; line-height: 1.5; }
.company-hero__en { color: #fff; font-size: 12px; opacity: .85; margin-top: 20px; max-width: 320px; }
.company-hero__desc { padding-top: 68px; color: #fff; font-size: 14px; }
.company-hero__desc p:first-child { font-weight: 400; line-height: 2; }
.company-hero__desc-en { font-size: 12px; color: #fff; margin-top: 29px; line-height: 2; max-width: 387px; }

@media (max-width: 1024px) {
	.company-hero__grid { grid-template-columns: 0.7fr .8fr; }
	.company-hero__title { font-size: 38px; }
	.company-hero__heading { font-size: 24px; }
}

.policy { background: var(--color-beige); }
.policy .container { display: flex; justify-content: space-between; }
.policy__lead { margin-top: 78px; max-width: 640px; font-size: 14px; line-height: 2; }
.policy__lead-en { font-size: 11px; color: var(--color-text-soft); margin-top: 33px; max-width: 387px; }

.policy-list { width: 54%; display: flex; flex-direction: column; gap: 24px; }
.policy-item {
	background: #fff; border-radius: var(--radius-lg);
	padding: 45px 24px 40px;
	position: relative;
	overflow: hidden;
	display: flex; align-items: center; gap: 32px;
}
.policy-item__no { position: absolute; top: 9px; right: 21px; font-family: var(--font-en); font-size: 11px; font-weight: 500; color: var(--color-dark); }
.policy-item__text { flex: 1; position: relative; z-index: 2; }
.policy-item__text h3 { font-size: 28px; }
.policy-item__en { display: block; font-family: var(--font-en); font-size: 11px; color: var(--color-peach-deep); font-weight: 500; margin-top: 6px; }
.policy-item:nth-child(1) .circle-photo:nth-child(3) { top: -87px; left: 43%; width: 185px; }
.policy-item:nth-child(1) .circle-photo:nth-child(4) { bottom: -74px; right: 4%; width: 185px; }
.policy-item:nth-child(2) .circle-photo:nth-child(3) { bottom: -78px; right: 39%; width: 157px; }
.policy-item:nth-child(2) .circle-photo:nth-child(4) { top: -20px; right: 6%; width: 197px; }
.policy-item:nth-child(3) .circle-photo:nth-child(3) { right: 25%; top: -20px; width: 157px; }
.policy-item:nth-child(3) .circle-photo:nth-child(4) { bottom: -98px; right: -23px; width: 197px; }

@media (max-width: 700px) {
	.policy-item { flex-direction: column; text-align: center; padding: 32px 24px; }
}

.message { background: var(--color-cream); }
.message__grid { gap: 40px; }
.message__jp { line-height: 2; margin-right: 63px; }
.message__jp p + p { margin-top: 1em; }
.message__body { font-size: 14px; margin-top: 52px; display: flex; justify-content: space-between; gap: 3%; }
.message__en { font-size: 11px; color: var(--color-text-soft); margin-top: 24px; }
.message__sign { margin-top: 32px; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.message__sign strong:first-child { font-size: 18px; }
.message__sign strong:last-child { font-size: 12px; font-weight: 500; color: var(--color-text-soft); }

@media (max-width: 820px) {
	.company-hero { padding-bottom: 92px; }
	.company-hero__grid { grid-template-columns: 1fr; }
	.company-hero__desc { padding-top: 28px; }
	.company-hero__desc .responsive-br { display: none; }
	.company-hero__desc-en { max-width: none; }
	.policy .container { flex-direction: column; }
	.policy__lead { max-width: none; margin-top: 48px; }
	.policy__lead .responsive-br { display: none; }
	.policy__lead-en { max-width: none; }
	.policy-list { width: 100%; margin-top: 34px; }
	.message__body { flex-direction: column; }
	.message__jp { margin-right: 0; }
}
@media (max-width: 480px) {
	.company-hero { padding-top: 100px; padding-bottom: 52px; }
	.company-hero__grid { margin-top: 44px; gap: 20px; }
	.company-hero__desc-en { margin-top: 15px; }
	.policy { padding-block: 28px; }
	.policy__lead { margin-top: 28px; }
	.policy__lead-en { margin-top: 23px; max-width: 100%; }
	.policy-list { width: 100%; }
	.policy-item { text-align: left; align-items: flex-start; }
	.policy-item__text h3 { font-size: 22px; }
	.policy-item .circle-photo { width: 32% !important; }
	.message__jp { margin-right: 0; }
	.message__body { margin-top: 22px; }
}

/* =========================================================
   Sharehouse archive
   ========================================================= */
.archive-hero { background: var(--color-peach); padding-block: calc(var(--header-h) + 40px) 90px; }
.archive-hero__title { font-size: 44px; color: #fff; margin-top: 14px; }
.archive-hero__en { font-family: var(--font-en); font-size: 13px; color: #fff; opacity: .85; margin-top: 10px; }

.archive-list__pagination { margin-top: 56px; display: flex; justify-content: center; gap: 16px; }
.archive-list__pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding-inline: 12px;
	border-radius: 999px; background: #fff; font-size: 14px;
}
.archive-list__pagination .page-numbers.current { background: var(--color-peach-deep); color: #fff; }

/* =========================================================
   Sharehouse single: photo gallery header
   ========================================================= */
.sh-single { background: var(--color-beige); }
.property-gallery {
	--gallery-h: 500px;
	display: grid; grid-template-columns: 2fr 1fr; gap: 12px; height: var(--gallery-h);
	overflow: hidden;
}
.property-gallery__main { border-radius: var(--radius-lg); overflow: hidden; height: var(--gallery-h); }
.property-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.property-gallery__thumbs {
	display: grid; grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(3, calc((var(--gallery-h) - 24px) / 3));
	gap: 12px; height: var(--gallery-h);
}
.property-gallery__thumb { border-radius: var(--radius-sm); overflow: hidden; padding: 0; display: block; height: 100%; background-color: transparent !important; }
.property-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
	.property-gallery { --gallery-h: auto; height: auto; }
	.property-gallery__main { height: 320px; }
	.property-gallery__thumbs { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; height: 100px; }
}
@media (max-width: 820px) {
	.property-gallery__main { height: 100%; }
	.property-gallery__thumbs { grid-template-columns: repeat(2, 1fr); height: 100%; }
}

/* =========================================================
   Sharehouse single: summary + spec
   ========================================================= */
.property-summary { display: grid; grid-template-columns: 1fr 448px; gap: 56px; margin-top: 48px; align-items: start; }
.property-summary__address { color: var(--color-dark); font-size: 12px; }
.property-summary__title { font-size: 38px; margin-top: 16px; letter-spacing: 0.1em; }
.property-summary__title-en { font-family: var(--font-en); font-size: 13px; color: var(--color-text-soft); margin-top: 6px; }

.property-summary__boxes { display: flex; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.pill-box { position: relative; background: var(--color-cream); border-radius: var(--radius-md); padding: 34px 24px 12px; flex: 1; min-width: 160px; }
.pill-box--price { flex: 1.4; }
.pill-box-group { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 16px; }
.pill-box-group .pill-box { flex: 1; text-align: center; }
.pill-box__label {
	position: absolute; top: 0; left: 0;
	background: #fff; border-radius: var(--radius-md) 0 0 0; padding: 6px 14px;
	font-size: 12px; font-weight: 500; color: var(--color-dark);
}
.pill-box__value { font-size: 28px; font-weight: 500; margin-top: 8px; }
.pill-box__value-num { font-family: "tt-commons-pro", var(--font-en); font-size: 29px; letter-spacing: 0.05em; font-weight: 400; }
.pill-box__value--sm { font-size: 21px; margin-top: 14px; }
.pill-box__value small { font-size: 13px; font-weight: 500; }
.pill-box__en { display: block; font-size: 11px; color: var(--color-text-soft); margin-top: 0; }
.pill-box__fees { margin-top: 10px; font-size: 11px; color: var(--color-text-soft); }
.pill-box__fees li { padding-left: 10px; border-left: 1px solid currentColor; margin-top: 10px; }
.pill-box__fee-jp { display: block; font-size: 13px; color: var(--color-text); }
.pill-box__fee-en { display: block; font-size: 11px; color: var(--color-text-soft); margin-top: 2px; }

.amenity-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.amenity-tag { background: var(--color-peach); color: var(--color-dark); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 8px; text-align: center; }
.amenity-tag__en { display: block; font-size: 9px; font-weight: 400; text-transform: none; margin-top: 2px; }

.property-summary__heading { font-size: 22px; margin-top: 48px; display: flex; align-items: center; gap: 23px; }
.property-summary__heading span { font-family: var(--font-en); font-size: 11px; color: var(--color-text-soft); font-weight: 500; }
.property-summary__content { margin-top: 20px; font-size: 14px; line-height: 2; }
.property-summary__content-en { margin-top: 20px; font-size: 12px; line-height: 2; color: var(--color-text-soft); }

.property-spec { background: #fff; border-radius: var(--radius-lg); padding: 26px 35px; }
.property-spec .eyebrow { font-size: 16px; }
.property-spec .eyebrow__en { font-family: var(--font-en); font-size: 12px; color: var(--color-text-soft); margin-left: 8px; }
.property-spec__list { margin-top: 24px; }
.property-spec__row { display: flex; justify-content: flex-start; gap: 0; padding-block: 14px; border-bottom: 1px solid var(--color-beige); font-size: 13px; }
.property-spec__row dt { min-width: 109px; color: var(--color-peach-deep); flex-shrink: 0; }
.property-spec__row-en { display: block; font-size: 11px; color: var(--color-peach-deep); margin-top: 2px; }

@media (max-width: 1024px) {
	.property-summary { grid-template-columns: 1fr; }
	.property-summary__boxes { flex-direction: column; }
	.pill-box-group { flex-direction: row; }
}
@media (max-width: 480px) {
	.property-summary { margin-top: 28px; }
	.property-summary__title { margin-top: 8px; font-size: 32px; }
	.pill-box { padding: 30px 24px 12px; }
	.property-spec { padding: 26px 23px; }
}

.property-map { margin-top: 12px; }
.property-map__frame { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.property-map__frame iframe { display: block; }

/* =========================================================
   Sharehouse single: gallery slider
   ========================================================= */
.gallery-section { background: var(--color-cream); padding-top: 52px; padding-bottom: 74px; }
.gallery-slider { margin-top: 32px; max-width: 760px; margin-inline: auto; }
.gallery-slider__viewport { position: relative; }
.gallery-slider__main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; }
.gallery-slider__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-slider__arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 41px; height: 41px;
	z-index: 5;
	background-color: transparent !important;
}
.gallery-slider__arrow::before {
	content: ""; position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; border-radius: 50%;
	background: var(--color-peach); opacity: 1;
}
.gallery-slider__arrow::after {
	content: ""; position: absolute; right: 0; top: 20%;
	width: 62%; height: 62%; border-radius: 50%;
	background: var(--color-terracotta); opacity: .55;
}
.gallery-slider__prev { left: -21px; transform: translateY(-50%) scaleX(-1); }
.gallery-slider__next { right: -21px; }
.gallery-slider__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.gallery-slider__thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; opacity: 1; padding: 0; background-color: transparent !important; }
.gallery-slider__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slider__thumb.is-active { opacity: 1; outline: 2px solid var(--color-peach-deep); outline-offset: 2px; }

@media (max-width: 900px) {
	.gallery-slider__arrow { display: none; }
	.gallery-slider__thumbs { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 820px) {
	.gallery-slider__arrow { display: block; }
}
@media (max-width: 480px) {
	.gallery-section { padding-top: 32px; padding-bottom: 44px; }
	.gallery-slider__arrow { width: 31px; height: 31px; }
	.gallery-slider__prev { left: -13px; }
	.gallery-slider__next { right: -13px; }
	.gallery-slider__thumbs { gap: 11px; }
}

/* =========================================================
   Sharehouse single: facilities
   ========================================================= */
.facilities { background: var(--color-beige); }
.facility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.facility-card { background: #fff; border-radius: var(--radius-lg); padding: 17px 10px; text-align: center; }
.facility-card h3 { font-size: 22px; }
.facility-card__en { display: block; font-size: 12px; font-weight: 400; color: var(--color-text-soft); margin-top: 4px; }
.facility-card__icon {
	width: 113px; height: 113px;
	display: flex; align-items: center; justify-content: center;
	margin: 20px auto;
}
.facility-card__icon img { width: 100%; }
.facility-card p { font-size: 12px; color: var(--color-text-soft); line-height: 1.8; }
.facility-card__desc-en { margin-top: 6px; }

@media (max-width: 1024px) { .facility-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .facility-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
	.facilities { padding-top: 28px; }
	.facility-grid { margin-top: 28px; grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.facility-card__icon { width: 93px; height: 93px; margin: 10px auto; }
	.facility-card p { font-size: 11px; }
}

/* =========================================================
   Sharehouse single: move-in flow
   ========================================================= */
.flow { background: var(--color-cream); }
.flow-list { display: flex; justify-content: space-between; margin-top: 64px; }
.flow-list__pair { position: relative; width: 33%; height: 346px; flex-shrink: 0; }
.flow-list__item {
	position: absolute;
	width: 201px; height: 201px; border-radius: 50%;
	background: #fff;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
	text-align: center;
	color: var(--color-dark);
}
.flow-list__pair .flow-list__item:first-child { top: 0; left: 0; }
.flow-list__pair .flow-list__item:last-child { bottom: 0; right: 0; }
.flow-list__no {
	position: absolute; top: 0; left: 10px;
	width: 56px; height: 56px; border-radius: 50%; background: var(--color-beige);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-en); font-size: 18px; font-weight: 500;
}
.flow-list__item strong { font-size: 17px; font-weight: 500; }
.flow-list__item .flow-list__en { font-size: 12px; color: var(--color-dark); font-family: var(--font-en); letter-spacing: .04em; }

@media (max-width: 1024px) {
	.flow-list__pair { height: 426px; }
}
@media (max-width: 900px) {
	.flow-list { flex-wrap: wrap; justify-content: center; gap: 32px; }
	.flow-list__pair { width: 260px; }
}
@media (max-width: 820px) {
	.flow-list { flex-direction: column; flex-wrap: nowrap; gap: 24px; }
	.flow-list__pair {
		position: static; width: 100%; height: auto;
		display: flex; justify-content: center; align-items: flex-start; gap: 24px;
	}
	.flow-list__item { position: relative; width: 241px; height: 241px; }
}
@media (max-width: 500px) {
	.flow-list__pair { width: 260px; height: 275px; }
	.flow-list__item { width: 150px; height: 150px; }
	.flow-list__pair .flow-list__item:last-child { left: 110px; }
}
@media (max-width: 480px) {
	.flow-list__pair { width: 100%; height: auto; }
	.flow-list__item { position: relative; }
	.flow-list__pair .flow-list__item:last-child { left: auto; }
	.flow-list__no { top: -12px; left: -10px; }
}

/* =========================================================
   Sharehouse single: related slider
   ========================================================= */
.related { position: relative; overflow: hidden; }
.related .container { position: relative; }
.related-slider { display: flex; gap: 40px; align-items: flex-start; margin-top: 0; }
.related-slider__intro { width: 30%; flex-shrink: 0; padding-top: 55px; }
.related-slider__viewport {
	flex: 1; min-width: 0; overflow: hidden;
	margin-right: calc(-24px - 72px);
}
@media (min-width: 1240px) {
	.related-slider__viewport { margin-right: calc(-1 * ((100vw - var(--container-w)) / 2 + 24px) - 72px); }
}
.related-slider__track { display: flex; gap: 0; transition: transform .4s ease; }
.related-slider__track > * { flex: 0 0 50%; }
.related-slider__nav { position: absolute; left: 3%; bottom: 46px; display: flex; align-items: center; gap: 16px; }
.related-slider__counter { font-family: var(--font-en); font-size: 23px; color: var(--color-text-soft); }
.related-slider__counter-sep,
.related-slider__counter-total { color: var(--color-peach-deep); }
.related-slider__prev, .related-slider__next {
	width: 40px; height: 40px; position: relative;
	background-color: transparent !important;
}
.related-slider__prev::before, .related-slider__next::before {
	content: ""; position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; border-radius: 50%;
	background: var(--color-peach); opacity: 1;
}
.related-slider__prev::after, .related-slider__next::after {
	content: ""; position: absolute; right: 0; top: 20%;
	width: 62%; height: 62%; border-radius: 50%;
	background: var(--color-terracotta); opacity: .55;
}
.related-slider__prev { transform: scaleX(-1); }
@media (max-width: 900px) {
	.related-slider { flex-direction: column; }
	.related-slider__nav { position: static; margin-top: 32px; }
	.related-slider__intro { width: 100%; }
	.related-slider__viewport { margin-right: 0; }
}
@media (max-width: 600px) { .related-slider__track > * { flex-basis: 100%; } }
@media (max-width: 480px) {
	.related-slider__counter { font-size: 17px; }
	.related-slider__prev, .related-slider__next { width: 30px; height: 30px; }
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-hero { background: var(--color-peach); padding: 162px 24px 53px; }
.contact-hero__title { font-size: 92px; color: #fff; margin-top: 14px; }

.container--narrow { max-width: 860px; }
.contact-section { margin-top: -80px; padding-top: 39px; background: var(--color-peach); }
.contact-section .container--narrow { max-width: 1228px; margin-top: 53px; padding-bottom: 65px; }

@media (max-width: 820px) {
	.contact-hero__title { font-size: 38px; }
	.contact-section { padding-top: 9px; padding-bottom: 24px; }
}

.form-notice { border-radius: var(--radius-sm); padding: 18px 24px; font-size: 14px; margin-bottom: 24px; }
.form-notice--success { background: #E4F3E6; color: #1E5C2A; }
.form-notice--error { background: #FBE3E0; color: #8C2C22; }

.contact-form-card { background: #fff; border-radius: var(--radius-lg); padding: 56px; }
.contact-form-card__note { font-size: 12px; color: var(--color-text-soft); }
.contact-form-card__note .required { color: #C0392B; }
.contact-form-card__note .en { display: block; margin-top: 2px; }

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-row { margin-top: 32px; display: flex; }
.form-label { display: block; min-width: 161px; font-weight: 700; font-size: 14px; line-height: 1.6; }
.form-label__en { font-weight: 500; font-size: 11px; color: var(--color-text-soft); }
.required { color: #C0392B; }

.form-radios { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 12px; }
.form-radio { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.form-radio input { accent-color: var(--color-peach-deep); width: 16px; height: 16px; }

.form-input {
	width: 100%; margin-top: 12px;
	border: 1px solid var(--color-terracotta);
	border-radius: var(--radius-sm);
	padding: 14px 18px;
	background: #fff;
}
.form-input:focus { outline: 2px solid var(--color-peach-deep); outline-offset: 1px; }
.form-textarea { resize: vertical; }

.form-privacy-note { text-align: center; font-size: 12px; color: var(--color-text-soft); margin-top: 40px; }
.form-privacy-note .en { font-size: 11px; }

.form-checkbox { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; font-size: 13px; font-weight: 400; }
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--color-peach-deep); }
.form-checkbox .en { color: var(--color-text-soft); }

.contact-form .btn--submit { display: flex; margin: 32px auto 0; }

@media (max-width: 700px) {
	.contact-form-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
	.contact-hero { padding: 82px 20px 43px; }
	.contact-hero .container { padding: 0; }
	.contact-form-card { padding: 32px 20px; }
	.form-row { flex-direction: column; }
	.form-input { margin-top: 8px; }
	.form-checkbox { gap: 6px; flex-direction: column; }
}
