:root {
  --ink: #1f2d25;
  --deep: #243f32;
  --green: #5f7e55;
  --sage: #dfe8d5;
  --cream: #f6f0e6;
  --paper: #fffaf1;
  --gold: #d6a94a;
  --line: rgba(36, 63, 50, .16);
  --shadow: 0 26px 70px rgba(31, 45, 37, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 241, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.brand strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  letter-spacing: .12em;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--green);
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}
.nav-cta {
  border: 1px solid var(--deep);
  border-radius: 999px;
  padding: 12px 22px;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-btn span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--deep);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 170px 5vw 80px;
  display: grid;
  grid-template-columns: minmax(360px, 45%) 1fr;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: -12vw;
  bottom: -28vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: var(--sage);
}
.hero-bg {
  position: absolute;
  top: 86px;
  right: 0;
  width: 64%;
  height: calc(100% - 86px);
  border-bottom-left-radius: 240px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246,240,230,.9), rgba(246,240,230,.14) 45%, rgba(36,63,50,.18));
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.eyebrow,
.section-head p,
.section-title > p,
.label {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--green);
}
.hero h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 1.12;
  letter-spacing: .04em;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero .lead {
  width: min(560px, 100%);
  margin: 34px 0 0;
  font-size: 18px;
  font-weight: 500;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em;
}
.btn.primary {
  background: var(--deep);
  color: #fff;
}
.btn.secondary {
  background: var(--paper);
  border: 1px solid var(--line);
}
.hero-card {
  position: absolute;
  right: 5vw;
  bottom: 70px;
  z-index: 2;
  width: min(360px, 32vw);
  padding: 26px;
  background: rgba(255, 250, 241, .9);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-card span,
.hero-card small {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.hero-card strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.section {
  padding: 120px 5vw;
}
.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.section-head h2,
.section-title h2,
.contact h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.18;
  letter-spacing: .05em;
}

.two-line-heading span {
  display: block;
  white-space: nowrap;
}

.section-title h2.two-line-heading {
  font-size: clamp(34px, 4.6vw, 66px);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-text {
  padding: 44px;
  background: var(--paper);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.intro-photo {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  max-height: none;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.services {
  background: var(--deep);
  color: #fff;
}
.services .section-head p { color: var(--gold); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #111;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,24,.08), rgba(20,30,24,.88));
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-card div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 34px;
}
.service-card span {
  color: var(--gold);
  font-weight: 900;
}
.service-card h3 {
  margin: 12px 0;
  font-size: 30px;
}

.price-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 36px;
  padding: 24px;
  margin-bottom: 26px;
  background: var(--paper);
  border-radius: 32px;
}
.price-intro img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 55, 45, .16);
}
.price-block {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  margin-top: 24px;
}
.price-block.reverse {
  grid-template-columns: 1.15fr .85fr;
}
.price-copy,
.table-wrap,
.moving-card,
.profile-card,
.license {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.price-copy {
  padding: 38px;
}
.price-copy h3,
.moving-card h3 {
  margin: 0 0 18px;
  font-size: 30px;
}
.price-copy strong,
.moving-card strong {
  font-size: 42px;
  color: var(--green);
}
.table-wrap {
  overflow: hidden;
}
table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  background: #fff;
}
th, td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
th {
  color: var(--green);
  font-size: 13px;
}
td:last-child {
  font-weight: 900;
}
.moving-card {
  margin-top: 24px;
  padding: 42px;
}
.moving-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.moving-grid li { margin-bottom: 10px; }
.moving-grid dl { margin: 0; }
.moving-grid dl div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.moving-grid dt { color: var(--green); font-weight: 900; }
.moving-grid dd { margin: 4px 0 0; font-weight: 700; }

.works {
  background: #fbf7ee;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work-card {
  overflow: hidden;
  background: var(--paper);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.work-card div {
  padding: 24px;
}
.work-card time {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.work-card h3 {
  margin: 8px 0;
  font-size: 22px;
}

.commitment {
  background: var(--deep);
  color: #fff;
}
.commitment-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.commitment figure {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
}
.commit-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.commit-list article {
  padding: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
}
.commit-list span { color: var(--gold); font-weight: 900; }
.commit-list h3 { font-size: 22px; }
blockquote {
  grid-column: 1 / -1;
  margin: 0;
  padding: 38px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.5;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 24px;
  align-items: stretch;
}
.profile-card {
  padding: 42px;
}
.profile-card dl { margin: 28px 0 0; }
.profile-card dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.profile-card dt {
  color: var(--green);
  font-weight: 900;
}
.profile-card dd { margin: 0; }
.license {
  margin: 0;
  padding: 22px;
  display: grid;
  place-items: center;
}
.license img {
  width: 100%;
  border-radius: 20px;
}

.faq {
  background: #fffaf1;
}
.faq-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.faq-group {
  padding: 26px;
  background: var(--cream);
  border-radius: 28px;
}
.faq-group h3 { margin-top: 0; color: var(--green); }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-item p {
  display: none;
  margin: 0 0 18px;
}
.faq-item.open p { display: block; }

.contact {
  padding: 120px 5vw;
  color: #fff;
  background:
    linear-gradient(rgba(36,63,50,.82), rgba(36,63,50,.88)),
    url("assets/img-20.jpg") center/cover;
}
.contact-inner {
  text-align: center;
}
.contact-inner > p:first-child {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--gold);
}
.contact h2 {
  color: #fff;
}
.contact-actions {
  justify-content: center;
}
.contact .btn.primary { background: var(--gold); color: var(--ink); }
.contact .btn.secondary { color: var(--ink); }
.contact-note {
  max-width: 760px;
  margin: 28px auto 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 5vw;
  background: #17231c;
  color: rgba(255,255,255,.78);
}
.site-footer strong { color: #fff; }

.mobile-contact {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header { height: 72px; }
  .global-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 5vw 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .global-nav.is-open { display: flex; }
  .global-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: block; }
  .hero {
    min-height: auto;
    padding: 108px 4vw 44px;
    display: block;
  }
  .hero-bg {
    position: relative;
    top: auto;
    width: 100%;
    height: 420px;
    border-radius: 32px;
    margin-top: 28px;
  }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(42px, 13vw, 72px); }
  .hero h1 span { white-space: normal; }
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }
  .section { padding: 78px 4vw; }
  .intro-grid,
  .price-intro,
  .price-block,
  .price-block.reverse,
  .moving-grid,
  .commitment-grid,
  .profile-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .works-grid,
  .commit-list {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: 430px; }
  .section-head {
    display: block;
  }
  .profile-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .site-footer {
    display: block;
    padding-bottom: 86px;
  }
  .mobile-contact {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(0,0,0,.14);
  }
  .mobile-contact a {
    padding: 16px;
    text-align: center;
    font-weight: 900;
  }
  .mobile-contact a:last-child {
    background: var(--deep);
    color: #fff;
  }
}

@media (max-width: 560px) {
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 19px; }
  .brand small { font-size: 9px; letter-spacing: .16em; }
  .hero-bg { height: 330px; }
  .hero .lead { font-size: 15px; }
  .section-title h2.two-line-heading {
    font-size: clamp(31px, 8.4vw, 44px);
    letter-spacing: .01em;
  }
  .btn { width: 100%; }
  .intro-text,
  .price-copy,
  .moving-card,
  .profile-card,
  blockquote {
    padding: 26px;
  }
  th, td { padding: 14px 10px; font-size: 13px; }
  .price-copy strong,
  .moving-card strong { font-size: 34px; }
}

/* Yasuraku QA refinements */
.nowrap-heading {
  white-space: nowrap;
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(31, 45, 37, 0.68);
  font-weight: 700;
  line-height: 1.9;
}

.works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(36, 63, 50, 0.12);
  background: linear-gradient(145deg, #fffaf1 0%, #f2eadc 100%);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--green, #52785f), #2a8f8e);
}

.work-card img {
  display: none;
}

.work-card div {
  position: relative;
  height: 100%;
  padding: 32px 32px 34px 38px;
}

.work-card time {
  display: block;
  margin-bottom: 16px;
}

.work-card h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
}

.work-card p {
  margin: 0;
  color: rgba(31, 45, 37, 0.76);
  font-weight: 700;
  line-height: 1.95;
}

.commitment figure img,
.license img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 28px auto 0;
  text-align: left;
}

.contact-methods a,
.contact-methods div {
  display: block;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink, #1f2d25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.contact-methods span {
  display: block;
  color: var(--green, #52785f);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.contact-methods strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-methods small {
  display: block;
  margin-top: 8px;
  color: rgba(31, 45, 37, 0.64);
  font-weight: 700;
}

@media (max-width: 980px) {
  .works-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-head h2.nowrap-heading,
  .section-title h2.nowrap-heading {
    font-size: clamp(32px, 10vw, 48px);
  }

  .work-card {
    min-height: auto;
  }

  .work-card div {
    padding: 28px 24px 30px 32px;
  }
}
