:root {
 --primary-color: #c5a47e;
 --bg-color: #f9f7f2;
 --text-main: #2d2d2d;
 --text-light: #6d6d6d;
 --accent-bg: #ece5d8;
 --dark-accent: #1a1a1a;
 --nav-height: 76px;
 --nav-max-width: 1200px;

  /* ===== Typography scale (readable) ===== */
  --fs-base: 16px;
 --fs-xs: 0.85rem;   /* ~13.6px */
 --fs-sm: 0.95rem;   /* ~15.2px */
 --fs-md: 1rem;      /* 16px */
 --fs-lg: 1.125rem;  /* 18px */
 --fs-xl: 1.25rem;   /* 20px */
 --fs-h2: clamp(2rem, 2.2vw + 1.2rem, 2.9rem);
 --fs-h3: clamp(1.5rem, 1.1vw + 1.2rem, 2rem);

  /* ===== i18n font stacks & tracking ===== */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,  "Helvetica Neue", Arial, "Noto Sans", sans-serif;
 --font-serif: "Playfair Display", "Times New Roman",  "Noto Serif", "Noto Serif SC", serif;
 --tracking-ui: 1px;
 --tracking-tag: 2px;
 --tracking-btn: 2px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: var(--fs-base);
	-webkit-text-size-adjust: 100%;
	scroll-padding-top: var(--nav-height);
}
body {
	font-family: var(--font-sans);
	background-color: var(--bg-color);
	color: var(--text-main);
	line-height: 1.65; /* tighter for readability vs 1.8 */
	font-size: var(--fs-md);
	overflow-x: hidden;
}
/* Fix: anchor jumps hidden by fixed nav */
section, footer {
	scroll-margin-top: calc(var(--nav-height) + 16px);
}
/* Headings keep luxe serif */
h1, h2, h3 {
	font-family: var(--font-serif);
	font-weight: 700;
}
/* ===== i18n-safe wrapping defaults ===== */
p, li, a, h1, h2, h3, h4, h5, span {
	overflow-wrap: anywhere;
	word-break: normal;
}

/* Latin languages: hyphenation for long words (DE/FR) */
:lang(en), :lang(de), :lang(fr), :lang(es) {
 hyphens: auto;
}

/* Japanese: better line breaking + better fonts */
:lang(ja) {
 font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",  "Yu Gothic", Meiryo, var(--font-sans);
 line-break: strict;
 word-break: keep-all;
}

/* Japanese headings: serif that supports JP if available */
:lang(ja) h1, :lang(ja) h2, :lang(ja) h3 {
 font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho",  "Noto Serif SC", serif;
}

/* Narrative justification often looks awkward in Japanese */
:lang(ja) .intro-text {
text-align: left;
}
/* ====== Navigation (fixed height + centered layout)====== */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--nav-height);
	z-index: 1000;
	background: rgba(249, 247, 242, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 0 5%;
	display: flex;
	align-items: center;
}
.nav-inner {
	width: 100%;
	max-width: var(--nav-max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.logo {
	font-size: 1.25rem; /* larger */
	letter-spacing: clamp(1px, 0.25vw + 1px, 3px);
	color: var(--dark-accent);
	text-decoration: none;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	padding: 10px 0;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 26px);
	flex-wrap: nowrap;
}
.nav-links a {
	text-decoration: none;
	color: var(--text-main);
	font-size: clamp(0.9rem, 0.25vw + 0.88rem, 1rem);
	font-weight: 500;
	transition: 0.25s;
	position: relative;
	padding: 8px 0;
	letter-spacing: var(--tracking-ui);
	white-space: nowrap;
	max-width: 10.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

:lang(de) .nav-links a, :lang(fr) .nav-links a, :lang(es) .nav-links a {
 letter-spacing: 0.5px;
}

:lang(ja) .nav-links a {
 letter-spacing: 0;
 max-width: 12rem;
}
 .nav-links a::after {
 content: "";
 position: absolute;
 left: 50%;
 bottom: 2px;
 width: 0;
 height: 1px;
 background: var(--primary-color);
 transform: translateX(-50%);
 transition: width 0.25s ease;
}
.nav-links a:hover {
	color: var(--primary-color);
}
.nav-links a:hover::after {
width: 100%;
}
.hero {
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10%;
	background: var(--accent-bg);
	position: relative;
	overflow: hidden;
	margin-top: var(--nav-height);
}
.hero-content {
	max-width: 800px;
	text-align: center;
	z-index: 2;
}
.hero-content h1 {
	font-size: clamp(3rem, 8vw, 5rem);
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--dark-accent);
}
.hero-content p {
	font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.25rem); /* more readable */
	color: var(--text-light);
	margin-bottom: 40px;
	font-style: italic;
	line-height: 1.7;
}
.cta-button {
	display: inline-block;
	padding: 18px 45px;
	padding-inline: clamp(26px, 4vw, 45px);
	background: var(--dark-accent);
	color: #fff;
	text-decoration: none;
	border-radius: 0;
	font-weight: 600;
	letter-spacing: var(--tracking-btn);
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 0;
	outline: none;
	text-align: center;
	white-space: nowrap;
	max-width: 100%;
}

:lang(de) .cta-button, :lang(fr) .cta-button, :lang(es) .cta-button {
 letter-spacing: 1px;
}

:lang(ja) .cta-button {
 letter-spacing: 0.08em;
}
.cta-button:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(197, 164, 126, 0.4);
}
section {
	padding: 120px 10%;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
}
.section-tag {
	color: var(--primary-color);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: var(--tracking-tag);
	font-size: var(--fs-sm);
	margin-bottom: 15px;
	display: block;
	text-align: center;
}

:lang(ja) .section-tag {
 text-transform: none;
 letter-spacing: 0.12em;
}
.section-title {
	font-size: var(--fs-h2);
	margin-bottom: 60px;
	text-align: center;
	line-height: 1.15;
}
/* =========================
   Partners bar (restrained, luxe, low-saturation)
   ========================= */
.partners-bar {
	padding: 42px 10%;
	background: rgba(255, 255, 255, 0.55);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.partners-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.partners-title {
	text-align: center;
	margin-bottom: 18px;
	color: var(--text-light);
	font-size: var(--fs-md);
	letter-spacing: 1px;
}
.partner-logos {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	align-items: center;
}
.partner-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 10px;
	text-decoration: none;
	background: rgba(249, 247, 242, 0.65);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
	transition: 0.35s ease;
	color: var(--dark-accent);
	min-height: 52px;
}
.partner-icon {
	width: 14px;
	height: 14px;
	border: 1px solid rgba(26, 26, 26, 0.45);
	transform: rotate(45deg);
	opacity: 0.7;
	transition: 0.35s ease;
	flex: 0 0 auto;
}
.partner-name {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	letter-spacing: 2px;
	font-weight: 600;
	opacity: 0.78;
	white-space: nowrap;
	transition: 0.35s ease;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.partner-logo:hover {
	transform: translateY(-2px);
	border-color: rgba(197, 164, 126, 0.55);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
	background: rgba(255, 255, 255, 0.8);
}
.partner-logo:hover .partner-name {
	opacity: 1;
}
.partner-logo:hover .partner-icon {
	opacity: 1;
	border-color: rgba(197, 164, 126, 0.9);
}
/* =========================
   Profile card
   ========================= */
.profile-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.04);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.04);
	border-radius: 8px;
	overflow: hidden;
}
.profile-grid {
	display: grid;
	grid-template-columns: minmax(280px, 420px) 1fr;
	gap: 0;
	align-items: stretch;
}
.profile-image {
	position: relative;
	background: #eee;
	min-height: 520px;
}
.profile-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(18%);
	transform: scale(1.01);
}
.profile-details {
	padding: 38px 38px 34px;
}
.profile-details h3 {
	font-size: var(--fs-h3);
	margin-bottom: 22px;
	border-bottom: 2px solid var(--primary-color);
	display: inline-block;
	padding-bottom: 10px;
}
.info-list {
	list-style: none;
	margin-top: 6px;
}
.info-list li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	display: grid;
	grid-template-columns: minmax(110px, 32%) 1fr;
	gap: 14px;
	align-items: start;
}
.info-list li span:first-child {
	font-weight: 600;
	color: var(--primary-color);
	letter-spacing: 1px;
	font-size: var(--fs-sm);
}
.info-list li span:last-child {
	color: var(--text-main);
	word-break: break-word;
	font-size: var(--fs-md);
	line-height: 1.7;
}
.profile-details p {
	font-size: var(--fs-md);
	line-height: 1.75;
}
/* =========================
   Narrative: single column
   ========================= */
.detailed-intro {
	background: white;
	padding: 100px 10%;
	margin: 50px 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.02);
}
.intro-text {
	column-count: 1;
	column-gap: 0;
	text-align: justify;
	color: var(--text-light);
	max-width: 820px;
	margin: 0 auto;
	font-size: var(--fs-lg);
	line-height: 1.85;
}
.intro-text p + p {
	margin-top: 20px;
}
.experience-item {
	margin-top: 40px;
	padding: 30px;
	border-left: 2px solid var(--primary-color);
	background: var(--bg-color);
}
.experience-item h4 {
	font-size: 1.1rem;
	line-height: 1.25;
}
.experience-item p {
	font-size: var(--fs-lg);
	line-height: 1.85;
}
/* Gallery: 4:5 */
.photo-spread {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.photo-card {
	position: relative;
	overflow: hidden;
	background: #eee;
	border-radius: 4px;
	aspect-ratio: 4 / 5;
}
.photo-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-card:hover img {
	transform: scale(1.05);
}
 .photo-card::after {
 content:"";
 position:absolute;
 inset:0;
 background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 55%);
 pointer-events:none;
}
.photo-info {
	position: absolute;
	left: 24px;
	bottom: 22px;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	max-width: 80%;
}
.photo-info h5 {
	font-size: 1.05rem;
	line-height: 1.2;
}
.photo-info p {
	font-size: var(--fs-sm);
	line-height: 1.35;
	opacity: 0.95;
}
.faq-grid {
	max-width: 800px;
	margin: 0 auto;
}
.faq-item {
	margin-bottom: 20px;
	background: #fff;
	padding: 30px;
	transition: 0.3s;
}
.faq-item:hover {
	transform: translateX(10px);
}
.faq-item h4 {
	font-size: var(--fs-lg);
	margin-bottom: 10px;
	color: var(--primary-color);
	line-height: 1.3;
}
.faq-item p {
	font-size: var(--fs-md);
	line-height: 1.75;
}
.footer-social {
	text-align: center;
	background: var(--dark-accent);
	color: #fff;
	padding: 80px 10%;
}
.footer-social h2 {
	color: var(--primary-color);
	margin-bottom: 40px;
	font-size: var(--fs-h3);
}
.footer-social p {
	font-size: var(--fs-md);
	line-height: 1.75;
}
.social-icons {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}
.social-icons a {
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 12px 30px;
	font-size: var(--fs-sm);
	letter-spacing: 1.5px;
	transition: 0.3s;
	text-align: center;
	white-space: nowrap;
	max-width: 100%;
}
.social-icons a:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

:lang(ja) .social-icons a {
 letter-spacing: 0.08em;
}
/* =========================
   Footer Language Switch
   ========================= */
.footer-lang {
	margin-top: 34px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.footer-lang-title {
	font-size: var(--fs-sm);
	letter-spacing: 2px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
}
.footer-lang-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.footer-lang-list a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.86);
	font-size: var(--fs-sm);
	letter-spacing: 1.5px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
	transition: 0.35s ease;
	-webkit-tap-highlight-color: transparent;
}
.footer-lang-list img {
	width: 26px;
	height: 18px;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.22);
	filter: sepia(12%);
}
.footer-lang-list a:hover {
	transform: translateY(-2px);
	background: rgba(197, 164, 126, 0.16);
	border-color: rgba(197, 164, 126, 0.55);
	color: #fff;
}
 .footer-lang-list a:focus-visible {
 outline: 2px solid rgba(197, 164, 126, 0.7);
 outline-offset: 3px;
}
.footer-lang-list a[aria-current="page"] {
	background: rgba(197, 164, 126, 0.22);
	border-color: rgba(197, 164, 126, 0.85);
	color: #fff;
}
.mobile-cta-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: white;
	padding: 15px;
	display: none;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	z-index: 1001;
}
 @media (max-width: 992px) {
 .profile-grid {
grid-template-columns: 1fr;
}
 .profile-image {
min-height: 420px;
}
 .profile-details {
padding: 26px 22px;
}
 .info-list li {
grid-template-columns: minmax(92px, 40%) 1fr;
}
 .photo-spread {
grid-template-columns: 1fr;
}

  /* Partners: tablet -> 3 columns */
  .partner-logos {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

  /* Social links: allow wrapping on smaller screens */
  .social-icons a {
white-space: normal;
}
}
 @media (max-width: 768px) {
 .hero {
height: 70vh;
}
 .nav-links {
display: none;
}
 .mobile-cta-bar {
display: block;
}
 section {
padding: 60px 5%;
}
 .detailed-intro {
padding: 70px 5%;
}
 .logo {
font-size: 1.15rem;
}
 .hero-content h1 {
font-size: clamp(2.4rem, 9vw, 3.6rem);
}
 .section-title {
 font-size: clamp(1.75rem, 6vw, 2.2rem);
 margin-bottom: 42px;
}

  /* Partners: phone -> 2 columns */
  .partners-bar {
padding: 34px 5%;
}
 .partner-logos {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
 .partner-name {
letter-spacing: 1.6px;
}

  /* Narrative on phone: slightly smaller than desktop 18px */
  .intro-text {
font-size: 1.05rem;
line-height: 1.85;
}

  /* Footer language switch slightly more tappable */
  .footer-lang {
margin-top: 28px;
gap: 12px;
}
 .footer-lang-list {
gap: 10px;
}
 .footer-lang-list a {
padding: 12px 14px;
}
}
/* Mobile bottom CTA: force background, remove borders/outlines */
.mobile-cta-bar .cta-button {
	background: var(--dark-accent) !important;
	color: #fff !important;
	display: block;
	text-align: center;
	padding: 12px !important;
	font-size: 0.95rem !important;
	border: 0 !important;
	outline: none !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
	-webkit-tap-highlight-color: transparent;
}
.mobile-cta-bar .cta-button:hover {
	background: var(--primary-color) !important;
}
.mobile-cta-bar .cta-button:focus, .mobile-cta-bar .cta-button:active {
	border: 0 !important;
	outline: none !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}