:root {
  --font-brand: "Manrope", "Raleway", sans-serif;
  --font-display: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-numeral: "Inter", sans-serif;
  --ink: #1c1b18;
  --muted: #67635a;
  --line: #d9d1c3;
  --paper: #f6f1e7;
  --paper-2: #e8dfcf;
  --green: #556b45;
  --green-dark: #263522;
  --stone: #2a2925;
  --white: #fffaf0;
  --shadow: 0 22px 52px rgba(31, 28, 22, 0.12);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.82;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
  margin-inline: auto;
}

.brand-mark {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-mark, .site-logo { white-space: nowrap; word-break: keep-all; }

.brand-sub {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0;
  font-feature-settings: "palt" 1;
  word-break: auto-phrase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.numeral,
.tel,
.hours {
  font-family: var(--font-numeral);
  font-feature-settings: "tnum" 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 241, 231, 0.94);
  border-bottom: 1px solid rgba(217, 209, 195, 0.82);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-logo, .brand-mark, .header-cta, .btn { flex-shrink: 0; }

.site-logo .brand-mark {
  font-size: clamp(20px, 2.4vw, 28px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 13px;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
}

.btn,
.header-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--stone);
  overflow: hidden;
}

.hero--sub {
  min-height: 480px;
}

.hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 27, 24, 0.78), rgba(28, 27, 24, 0.34) 50%, rgba(28, 27, 24, 0.64));
}

.hero__pair {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  overflow: hidden;
}

.hero__pair img {
  height: 100%;
  min-width: 0;
  max-width: 100%;
  object-fit: cover;
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.hero__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 250, 240, 0.76);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  margin-inline: auto;
  padding: 104px 0 72px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 250, 240, 0.76);
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(38px, 5.7vw, 78px);
}

.hero--sub h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.hero__lead {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(15px, 1.4vw, 18px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn-row--center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.3;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn--ghost {
  color: inherit;
  background: transparent;
}

.section {
  width: 100%;
  max-width: 100%;
  padding: clamp(44px, 5vw, 80px) 0;
}

.section--muted {
  background: var(--paper-2);
}

.section--dark {
  color: var(--white);
  background: var(--stone);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.section__head h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.section__lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
}

.section--dark .section__lead,
.section--dark .card p,
.section--dark .note {
  color: rgba(255, 250, 240, 0.78);
}

.trust-grid,
.style-grid,
.principle-grid,
.works-grid,
.why-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.trust-grid > *,
.style-grid > *,
.principle-grid > *,
.works-grid > *,
.why-grid > *,
.about-grid > *,
.contact-grid > *,
.section__head > *,
.profile-band > * {
  min-width: 0;
}

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

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

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

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

.trust-card,
.card,
.work-card,
.why-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.74);
}

.trust-card,
.card,
.why-card,
.contact-card {
  padding: clamp(20px, 3vw, 30px);
}

.trust-card b,
.card h3,
.work-card h3,
.why-card h3,
.contact-card h3 {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 19px;
}

.trust-card p,
.card p,
.work-card p,
.why-card p,
.contact-card p,
.note {
  color: var(--muted);
  font-size: 14px;
}

.style-card,
.work-card {
  overflow: hidden;
}

.style-card figure,
.work-card figure,
.why-card figure,
.about-grid figure {
  margin: 0;
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(31, 28, 22, 0.12);
}

.style-card img,
.work-card img,
.why-card img,
.about-grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  object-fit: cover;
}

.style-card__body,
.work-card__body {
  padding: 20px;
}

.work-meta {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-family: var(--font-numeral);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.profile-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.profile-band figure {
  margin: 0;
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(31, 28, 22, 0.12);
}

.profile-band img {
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  object-fit: cover;
}

.profile-list div,
.info-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.6;
}

.image-figure {
  max-width: 100%;
  aspect-ratio: 4 / 3;
}

.split .image-figure,
.split--reverse .image-figure {
  aspect-ratio: 5 / 4;
  max-width: 480px;
}

.split-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(217, 209, 195, 0.76);
  color: var(--muted);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.tab[aria-current="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.license-box {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.map-frame {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.cta-band {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.cta-band p {
  max-width: 620px;
  margin: 18px auto 0;
  color: inherit;
}

.site-footer {
  width: 100%;
  max-width: 100%;
  padding: 44px 0 52px;
  color: rgba(255, 250, 240, 0.82);
  background: var(--stone);
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.site-footer p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand-sub {
    display: none;
  }

  .site-logo .brand-mark {
    font-size: 20px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: 620px;
  }

  .hero--sub {
    min-height: 420px;
  }

  .hero__pair {
    grid-template-columns: 1fr;
  }

  .hero__pair img + img {
    display: none;
  }

  .hero__content {
    padding: 92px 0 54px;
  }

  .section__head,
  .style-grid,
  .principle-grid,
  .profile-band,
  .contact-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .works-grid,
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero--sub h1 {
    font-size: 31px;
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
  }
}

/* Reference alignment: modern natural exterior studio */
.home {
  background: #f7f4ed;
}

.home .site-header {
  background: rgba(255, 255, 250, 0.98);
  border-bottom: 1px solid #d9d8ce;
}

.home .site-header__inner {
  min-height: 76px;
}

.home .site-logo::before {
  content: "";
  width: 28px;
  height: 28px;
  border-left: 2px solid #4f6244;
  border-bottom: 2px solid #4f6244;
  transform: rotate(-45deg);
}

.home .site-logo .brand-mark {
  color: #2d3928;
  font-size: clamp(17px, 1.6vw, 24px);
}

.home .header-cta {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: #34442f;
  color: #fffaf0;
}

.home .hero {
  min-height: 620px;
  align-items: center;
}

.home .hero__pair {
  display: block;
}

.home .hero__pair img:first-child {
  height: 100%;
  object-fit: cover;
}

.home .hero__pair img + img {
  display: none;
}

.home .hero__media::after {
  background: linear-gradient(90deg, rgba(18, 24, 16, 0.74), rgba(18, 24, 16, 0.28) 48%, rgba(18, 24, 16, 0.1));
}

.home .hero__content {
  padding: clamp(96px, 12vw, 150px) 0 118px;
}

.home .hero h1 {
  max-width: 650px;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.22;
}

.home .hero__lead {
  max-width: 520px;
}

.home main > .section:first-of-type {
  position: relative;
  z-index: 3;
  margin-top: -108px;
  padding: 0 0 64px;
  background: transparent;
}

.home .trust-grid {
  max-width: 780px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home .trust-card:nth-child(n+4) {
  display: none;
}

.home .trust-card {
  border: 1px solid rgba(255, 250, 240, 0.7);
  background: rgba(23, 32, 20, 0.58);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.home .trust-card p {
  color: rgba(255, 250, 240, 0.82);
}

.home .section {
  padding: clamp(52px, 5.6vw, 80px) 0;
}

.home .section__head {
  display: block;
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.home .section__head h2 {
  font-size: clamp(26px, 2.7vw, 38px);
}

.home .style-grid {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 120px);
}

.home .style-grid::before {
  content: "×";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(38, 53, 34, 0.35);
  font-size: 64px;
  transform: translate(-50%, -50%);
}

.home .style-card {
  border: 0;
  background: #fffaf0;
  box-shadow: 0 18px 44px rgba(36, 43, 30, 0.08);
}

.home .style-card h3 {
  margin: -20px -20px 16px;
  padding: 16px 20px;
  background: #2f332f;
  color: #fffaf0;
  font-family: var(--font-brand);
  text-align: center;
  text-transform: uppercase;
}

.home .style-card:nth-child(2) h3 {
  background: #526247;
}

.home .works-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home .work-card {
  border: 0;
  background: transparent;
}

.home .work-card__body {
  padding: 14px 0 0;
}

.home .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.home .why-card {
  border: 0;
  border-left: 1px solid #d4d0c2;
  background: transparent;
  text-align: center;
}

.home .why-card:first-child {
  border-left: 0;
}

.home .why-card figure {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 999px;
}

.home .cta-band {
  background: #34442f;
  color: var(--white);
  text-align: left;
}

.home .cta-band .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.home .cta-band .container::after {
  content: "";
  min-height: 260px;
  background: url("images/works-01.png") center / cover no-repeat;
}

@media (max-width: 768px) {
  .home .trust-grid,
  .home .style-grid,
  .home .works-grid,
  .home .why-grid,
  .home .cta-band .container {
    grid-template-columns: 1fr;
  }

  .home .style-grid::before,
  .home .trust-card:nth-child(n+4) {
    display: none;
  }

  .home .why-card {
    border-left: 0;
    border-top: 1px solid #d4d0c2;
  }
}
