:root {
  --bg: #f7f1eb;
  --paper: #fbf8f4;
  --ink: #28241f;
  --muted: #756f66;
  --line: #ddd2c6;
  --accent: #9b6b3f;
  --accent-soft: #efe3d5;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-weight: 300;
  line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  background: rgba(247,241,235,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,210,198,.45);
}
.brand { font-size: .95rem; letter-spacing: .05em; font-weight: 400; }
.nav { display: flex; gap: 1.6rem; font-size: .78rem; letter-spacing: .08em; }
.nav a { color: var(--muted); transition: color .2s ease; }
.nav a:hover { color: var(--accent); }
.section { padding: 115px 8vw; }
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}
.eyebrow, .section-number {
  color: var(--accent);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 400;
}
.hero h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.08;
  margin: .25em 0 .55em;
}
.hero h1 { font-size: clamp(4rem, 12vw, 10rem); letter-spacing: -.05em; }
.hero em { font-style: italic; color: var(--accent); }
h2 { font-size: clamp(2.3rem, 5vw, 5rem); }
.lead { font-size: clamp(1.1rem, 2vw, 1.55rem); color: var(--ink); }
.intro { color: var(--muted); margin-bottom: 2rem; }
.cta {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  padding: .9rem 1.5rem;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  letter-spacing: .08em;
}
.scroll-note { position: absolute; bottom: 36px; color: var(--muted); font-size: .8rem; letter-spacing: .14em; }
.grid-section {
  display: grid;
  grid-template-columns: .25fr 1fr .9fr;
  gap: 5vw;
  align-items: center;
}
.section-text p, .centered-section p, .profile-text p, .contact-section p { color: var(--muted); }
.audience-list { margin-top: 3rem; border-top: 1px solid var(--line); }
.audience-list div { padding: 1.15rem 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.audience-list span { display: inline-block; min-width: 3.5rem; color: var(--accent); font-size: .78rem; letter-spacing: .15em; }
.section-image img, .profile-image img { border-radius: 2px; box-shadow: 0 22px 60px rgba(45,35,25,.12); }
.centered-section { text-align: center; max-width: 920px; margin: 0 auto; }
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.3vw, 3.2rem);
  color: var(--accent);
  line-height: 1.45;
  margin: 3rem auto 0;
}
.services-section { text-align: center; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.2rem;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 400; margin: 0 0 .3rem; }
.jp-title { color: var(--accent); margin: 0 0 1.2rem; font-size: .88rem; }
.service-card p:not(.jp-title) { color: var(--muted); }
.service-card span { margin-top: auto; color: var(--accent); font-size: .85rem; letter-spacing: .08em; }
.note { margin-top: 2rem; color: var(--muted); }
.profile-section {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 6vw;
  align-items: center;
}
.profile-text h3 { font-size: 1.4rem; font-weight: 400; margin-top: -.5rem; }
.contact-section { background: var(--paper); }
.contact-inner {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 6vw;
  max-width: 1120px;
  margin: 0 auto;
}
.contact-form { display: grid; gap: 1.4rem; }
.contact-form label {
  display: grid;
  gap: .3rem;
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: .8rem 0;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--accent); }
.contact-form button {
  justify-self: start;
  border: 0;
  background: var(--ink);
  color: white;
  padding: .95rem 2.4rem;
  font: inherit;
  font-size: .8rem;
  letter-spacing: .14em;
  cursor: pointer;
  transition: background .2s ease;
}
.contact-form button:hover { background: var(--accent); }
.hidden { display: none; }
.site-footer {
  padding: 42px 8vw;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .82rem;
  border-top: 1px solid var(--line);
}
.thank-you-page { min-height: 100vh; display: grid; place-items: center; }
.thank-you { text-align: center; padding: 4rem 2rem; }
.thank-you h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 400; }
@media (max-width: 900px) {
  .site-header { position: static; display: block; padding: 22px 6vw; }
  .nav { flex-wrap: wrap; gap: .7rem 1.1rem; margin-top: .8rem; }
  .section { padding: 80px 6vw; }
  .grid-section, .profile-section, .contact-inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero { min-height: calc(100vh - 130px); }
  .site-footer { display: block; }
}


/* Added styles for bilingual and MC layout */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(247,241,235,0.95) 0%, rgba(247,241,235,0.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
.hero { text-align: left; place-items: center start; padding-left: 10vw; }
.hero h1 { text-align: left; }
.en-lead { font-size: 0.8em; color: var(--muted); display: block; margin-top: 0.5rem; font-family: 'DM Sans', sans-serif; }
.hero-cta { background: var(--ink); color: white; border: none; padding: 1rem 2rem; margin-top: 1rem; }
.hero-cta:hover { background: var(--accent); color: white; }

.en-text { font-size: 0.9rem; color: var(--muted); margin-top: 1.5rem; font-family: 'DM Sans', sans-serif; }
.en-text-small { font-size: 0.85rem; color: var(--muted); margin-top: 0.8rem; font-family: 'DM Sans', sans-serif; }
.en-note { font-size: 0.85rem; display: block; margin-top: 0.3rem; }
.en-profile { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); font-size: 0.9rem; }

.experience-section { background: var(--paper); }
.experience-list { max-width: 900px; margin: 3rem auto 0; }
.exp-item { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.exp-item:first-child { border-top: 1px solid var(--line); }
.exp-year { font-family: 'Playfair Display', serif; color: var(--accent); font-size: 1.2rem; font-weight: 500; }
.exp-desc p { margin: 0 0 0.8rem; color: var(--ink); font-size: 0.95rem; }
.exp-desc strong { font-weight: 500; }

@media (max-width: 900px) {
  .hero { padding-left: 6vw; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(247,241,235,0.9) 0%, rgba(247,241,235,0.85) 100%); }
  .exp-item { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; }
}
