:root {
  --paper: #f7f3ee;
  --paper-deep: #eee7df;
  --ink: #211e1b;
  --ink-soft: #564d46;
  --rose: #b77f7d;
  --rose-dark: #95605f;
  --sand: #c8ad95;
  --line: #d6ccc2;
  --white: #fffdfa;
  --content: 1240px;
  --gutter: clamp(22px, 5vw, 72px);
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 16px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, min-height .3s;
}
.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(247, 243, 238, .94);
  border-color: rgba(33, 30, 27, .12);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 25px; letter-spacing: .14em; }
.brand-note { font-size: 8px; letter-spacing: .28em; color: var(--rose-dark); }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.8vw, 42px); }
.site-nav a { position: relative; font-size: 12px; letter-spacing: .13em; }
.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 1px;
  background: var(--rose-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { padding: 10px 18px; border: 1px solid var(--ink); transition: .25s; }
.nav-contact:hover { background: var(--ink); color: var(--white); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px var(--gutter) 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(33,30,27,.07) 50%, transparent 50.06%),
    linear-gradient(0deg, transparent 49.94%, rgba(33,30,27,.04) 50%, transparent 50.06%);
  background-size: 19vw 19vw;
  mask-image: linear-gradient(to left, rgba(0,0,0,.85), transparent 72%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; width: min(850px, 80%); }
.eyebrow { margin: 0 0 25px; color: var(--rose-dark); font-size: 11px; letter-spacing: .28em; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7.1vw, 112px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: .04em;
}
.hero-lead {
  margin: clamp(34px, 5vw, 62px) 0 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.8;
}
.hero-description { margin: 22px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--rose-dark); }
.text-link, .card-link { display: inline-flex; gap: 12px; align-items: center; font-size: 13px; border-bottom: 1px solid currentColor; }
.hero-side {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-50%);
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--rose-dark);
}
.hero-side span { writing-mode: vertical-rl; }
.hero-orbit { position: absolute; border: 1px solid rgba(183,127,125,.34); border-radius: 50%; }
.orbit-one { width: 54vw; height: 54vw; right: -19vw; top: -9vw; }
.orbit-two { width: 30vw; height: 30vw; right: 7vw; bottom: -19vw; border-color: rgba(200,173,149,.38); }
.scroll-cue {
  position: absolute;
  bottom: 25px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 8px;
  letter-spacing: .25em;
}
.scroll-cue i { width: 54px; height: 1px; background: var(--ink); position: relative; }
.scroll-cue i::after { content:""; position:absolute; right:0; top:-2px; width:5px; height:5px; border-right:1px solid; border-bottom:1px solid; transform:rotate(-45deg); }

.section { max-width: var(--content); margin: 0 auto; padding: clamp(95px, 12vw, 180px) var(--gutter); }
.section-index { display: flex; gap: 18px; align-items: center; margin-bottom: clamp(65px, 8vw, 110px); font-size: 10px; letter-spacing: .26em; color: var(--rose-dark); }
.section-index span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; }
.display-title { margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 70px); font-weight: 500; line-height: 1.45; letter-spacing: .035em; }
.statement-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: clamp(50px, 10vw, 140px); align-items: start; }
.statement-body { padding-top: 13px; color: var(--ink-soft); }
.statement-body p { margin: 0 0 28px; }
.statement-body p:first-child { color: var(--ink); font-family: var(--serif); font-size: 19px; line-height: 2; }
.beliefs { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(80px, 11vw, 150px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.belief { min-height: 370px; padding: 32px clamp(22px, 3vw, 42px) 40px; border-right: 1px solid var(--line); }
.belief:last-child { border-right: 0; }
.belief-number { color: var(--rose-dark); font-family: Georgia, serif; font-size: 12px; }
.belief h3 { margin: 55px 0 28px; font-family: var(--serif); font-size: clamp(24px, 2.5vw, 34px); font-weight: 500; line-height: 1.55; }
.belief p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.section-dark { max-width: none; background: var(--ink); color: var(--white); padding-left: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter))); }
.section-index-light { color: #d9aaa7; }
.approach-intro { display: grid; grid-template-columns: 1.1fr .75fr; gap: 70px; align-items: end; }
.approach-intro > p { color: #c8c0b9; margin: 0 0 10px; }
.approach-list { list-style: none; padding: 0; margin: 100px 0 0; border-top: 1px solid rgba(255,255,255,.22); }
.approach-list li { display: grid; grid-template-columns: 70px 1fr 1.35fr; gap: 40px; align-items: center; min-height: 148px; border-bottom: 1px solid rgba(255,255,255,.18); }
.approach-number { font-family: Georgia, serif; font-size: 12px; color: #d9aaa7; }
.approach-en { display: block; font-size: 9px; letter-spacing: .25em; color: #d9aaa7; }
.approach-list h3 { display: inline; margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.approach-list p { margin: 0; color: #c8c0b9; font-size: 14px; }

.services-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.services-heading > p { width: 34%; margin: 0 0 10px; color: var(--ink-soft); }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 90px; border: 1px solid var(--line); }
.service-card { position: relative; min-height: 510px; padding: 36px clamp(24px, 3vw, 42px); border-right: 1px solid var(--line); }
.service-card:last-child { border: 0; }
.service-card.featured { background: var(--white); }
.service-label { color: var(--rose-dark); font-size: 9px; letter-spacing: .22em; }
.service-count { position: absolute; top: 24px; right: 28px; margin: 0; font-family: Georgia, serif; font-size: 42px; color: rgba(183,127,125,.25); }
.service-card h3 { margin: 80px 0 28px; font-family: var(--serif); font-size: clamp(25px, 2.4vw, 34px); font-weight: 500; line-height: 1.55; }
.service-card > p:not(.service-count) { color: var(--ink-soft); font-size: 14px; }
.card-link, .coming-label { position: absolute; left: clamp(24px, 3vw, 42px); bottom: 38px; }
.coming-label { color: var(--ink-soft); font-size: 11px; letter-spacing: .12em; }

.vision-strip { position: relative; min-height: 780px; display: grid; place-items: center; overflow: hidden; padding: 100px var(--gutter); background: var(--paper-deep); }
.vision-strip::after { content:""; position:absolute; inset: 50% auto auto 50%; width: 560px; height: 560px; border: 1px solid rgba(183,127,125,.4); border-radius: 50%; transform: translate(-50%,-50%); }
.vision-word { position: absolute; top: 50%; left: 50%; color: transparent; -webkit-text-stroke: 1px rgba(33,30,27,.1); font-family: Georgia, serif; font-size: clamp(80px, 13vw, 200px); white-space: nowrap; transform: translate(-50%,-50%); }
.vision-copy { position: relative; z-index: 2; max-width: 670px; text-align: center; }
.vision-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 66px); font-weight: 500; line-height: 1.5; }
.vision-copy > p:last-child { max-width: 570px; margin: 38px auto 0; color: var(--ink-soft); }

.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 10vw, 135px); align-items: start; }
.portrait { position: relative; aspect-ratio: 4 / 5; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #d8c2b6, #b77f7d 65%, #7c5756); color: var(--white); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.about-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(39px, 5vw, 64px); font-weight: 500; letter-spacing: .08em; }
.about-role { margin: 12px 0 48px; color: var(--rose-dark); font-size: 13px; letter-spacing: .08em; }
.about-story { color: var(--ink-soft); }
.about-story p { margin: 0 0 22px; }
.career-list { margin: 48px 0 0; border-top: 1px solid var(--line); }
.career-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.career-list dt { color: var(--rose-dark); font-size: 9px; letter-spacing: .2em; }
.career-list dd { margin: 0; font-size: 13px; color: var(--ink-soft); }

.section-accent { max-width: none; background: var(--rose); color: var(--white); display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: center; padding-left: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter))); }
.section-accent .eyebrow { color: #2f2723; }
.contact-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.2vw, 58px); font-weight: 500; line-height: 1.5; }
.contact-copy > p:last-child { max-width: 650px; margin: 28px 0 0; color: #fff3ee; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.button-dark { width: 100%; background: var(--ink); color: var(--white); }
.button-dark:hover { background: #3b3430; }
.mail-link { border-bottom: 1px solid currentColor; font-family: Georgia, serif; letter-spacing: .04em; }
.contact-actions small { color: #fff3ee; font-size: 11px; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding: 70px var(--gutter) 35px; background: var(--ink); color: var(--white); }
.footer-brand { margin-bottom: 18px; }
.site-footer > div > p { margin: 0; color: #a99f97; font-family: var(--serif); }
.site-footer nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer nav a { color: #c4bbb4; font-size: 11px; }
.copyright { grid-column: 1 / -1; margin: 35px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #817972; font-size: 10px; letter-spacing: .12em; }

.legal-main { min-height: 75vh; padding: 150px var(--gutter) 100px; }
.legal-wrap { max-width: 920px; margin: 0 auto; }
.legal-header { margin-bottom: 70px; padding-bottom: 45px; border-bottom: 1px solid var(--line); }
.legal-header h1 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(34px, 5vw, 58px); font-weight: 500; }
.legal-section { margin: 55px 0; }
.legal-section h2 { margin: 0 0 22px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.legal-section p, .legal-section li { color: var(--ink-soft); font-size: 14px; }
.legal-section ul { padding-left: 1.4em; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td { padding: 18px 16px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { width: 30%; font-weight: 500; color: var(--rose-dark); }
.back-link { display: inline-flex; margin-top: 35px; border-bottom: 1px solid; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 850px) {
  .site-header { min-height: 70px; }
  .menu-button { display: flex; position: relative; z-index: 52; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; border: 0; background: transparent; }
  .menu-button span:not(.sr-only) { width: 24px; height: 1px; background: var(--ink); transition: .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 51; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 25px; padding: 100px var(--gutter); background: var(--paper); transform: translateX(100%); transition: transform .35s ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-family: var(--serif); font-size: 28px; letter-spacing: .04em; }
  .nav-contact { border: 0; padding: 0; }
  body.menu-open { overflow: hidden; }
  .hero { padding-top: 115px; }
  .hero-copy { width: 100%; }
  .hero-side { display: none; }
  .orbit-one { width: 90vw; height: 90vw; right: -53vw; top: 5vh; }
  .orbit-two { width: 62vw; height: 62vw; right: -4vw; bottom: -37vw; }
  .statement-grid, .approach-intro, .about-grid, .section-accent { grid-template-columns: 1fr; }
  .beliefs { grid-template-columns: 1fr; }
  .belief { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .belief:last-child { border-bottom: 0; }
  .belief h3 { margin-top: 32px; }
  .approach-list { margin-top: 65px; }
  .approach-list li { grid-template-columns: 45px 1fr; gap: 20px; padding: 28px 0; }
  .approach-list li > p { grid-column: 2; }
  .services-heading { display: block; }
  .services-heading > p { width: auto; margin-top: 30px; }
  .service-cards { grid-template-columns: 1fr; margin-top: 60px; }
  .service-card { min-height: 420px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .vision-strip { min-height: 690px; }
  .portrait { width: min(100%, 480px); }
  .section-accent { gap: 50px; }
  .contact-actions { max-width: 480px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { justify-content: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 560px) {
  :root { --gutter: 22px; }
  .brand-name { font-size: 21px; }
  .brand-note { font-size: 7px; }
  .hero { min-height: 800px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-description { font-size: 13px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .desktop-only { display: none; }
  .scroll-cue { left: var(--gutter); right: auto; }
  .section-index { margin-bottom: 52px; }
  .display-title { font-size: 35px; }
  .statement-body { padding-top: 0; }
  .belief { padding-left: 10px; padding-right: 10px; }
  .section-dark { padding-left: var(--gutter); padding-right: var(--gutter); }
  .approach-list li { grid-template-columns: 34px 1fr; gap: 14px; }
  .approach-list h3 { font-size: 25px; }
  .service-card { padding: 30px 24px; }
  .service-count { right: 20px; }
  .card-link, .coming-label { left: 24px; }
  .vision-strip::after { width: 88vw; height: 88vw; }
  .vision-copy h2 { font-size: 35px; }
  .career-list > div { grid-template-columns: 1fr; gap: 8px; }
  .section-accent { padding-left: var(--gutter); padding-right: var(--gutter); }
  .contact-copy h2 { font-size: 33px; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table tr { padding: 15px 0; border-top: 1px solid var(--line); }
  .legal-table th, .legal-table td { padding: 2px 0; border: 0; }
}
