:root {
  --bg: #f4f2ed;
  --paper: #fbfaf7;
  --ink: #1b1e1c;
  --muted: #6c716d;
  --line: #d9d8d2;
  --dark: #171a18;
  --dark-2: #232824;
  --accent: #6f897a;
  --accent-light: #dce4df;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.8;
  letter-spacing: .015em;
}

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 26, 24, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.brand-name {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .055em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #d5d8d5;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.nav-contact {
  padding: 8px 15px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(111,137,122,.19), transparent 26%),
    linear-gradient(135deg, #171a18 0%, #202520 72%, #151715 100%);
}

.hero-inner {
  padding-top: 70px;
  padding-bottom: 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero .eyebrow { color: #a9b8ae; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -.028em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: #c5cac6;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.outline {
  color: var(--ink);
  border: 1px solid #aeb4af;
  background: transparent;
}

.text-link {
  color: #d8ddd9;
  text-decoration: none;
  font-weight: 650;
}

.text-link span { margin-left: 7px; }

.mobile-only { display: none; }

.section { padding: 104px 0; }

.intro { background: var(--paper); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.intro-copy {
  max-width: 680px;
  padding-top: 42px;
}

.intro-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
}

.section-muted { background: #e9e7e1; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: #c9cbc7;
  border: 1px solid #c9cbc7;
}

.service-card {
  min-height: 390px;
  padding: 34px 32px;
  background: var(--paper);
}

.service-no {
  display: block;
  margin-bottom: 64px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.service-card p,
.service-card li { color: var(--muted); }

.service-card ul {
  padding-left: 18px;
  margin: 22px 0 0;
}

.steps {
  max-width: 880px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-strip {
  color: var(--white);
  background: var(--dark-2);
}

.article-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.article-inner h2 { margin-bottom: 16px; }
.article-inner p { max-width: 650px; margin-bottom: 0; color: #c4c9c5; }

.article-strip .button.outline {
  flex: 0 0 auto;
  color: var(--white);
  border-color: rgba(255,255,255,.28);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-intro p { color: var(--muted); }

.contact-alt {
  margin-top: 28px;
  font-size: 14px;
}

.contact-alt a { text-underline-offset: 4px; }

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  background: #f7f6f2;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form b {
  margin-left: 7px;
  color: #8f4b48;
  font-size: 10px;
}

.contact-form em {
  margin-left: 7px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd1cc;
  border-radius: 0;
  outline: none;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea { resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(111,137,122,.13);
}

.privacy-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.privacy-check input { width: 16px; height: 16px; }
.privacy-check span { margin: 0 !important; font-weight: 500 !important; }
.privacy-check a { text-underline-offset: 3px; }

.submit-button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.business-strip {
  padding: 34px 0;
  color: #d8ddd9;
  background: var(--dark);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.business-grid div { display: grid; gap: 6px; }
.business-grid span { color: #8f9892; font-size: 10px; letter-spacing: .1em; }
.business-grid strong { font-size: 13px; }
.business-grid a { text-decoration: none; }

.site-footer {
  padding: 58px 0 34px;
  color: #b7bdb9;
  background: #111311;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: start;
}

.footer-brand { margin-bottom: 14px; }
.footer-grid p { color: #7d857f; font-size: 12px; }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #bcc2be;
  font-size: 12px;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.subpage-hero {
  padding: 105px 0 72px;
  color: var(--white);
  background: var(--dark);
}

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

.content-page {
  padding: 80px 0 110px;
  background: var(--paper);
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 60px;
  font-size: 30px;
}

.prose h3 {
  margin-top: 32px;
}

.prose p,
.prose li { color: #555d58; }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
}

.prose th,
.prose td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  width: 180px;
  color: var(--muted);
  font-size: 12px;
}

.notice {
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: #eeeee9;
  color: #555d58;
}

.form-errors {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-left: 3px solid #985e5a;
  background: #f6eceb;
}

.form-errors ul { margin: 0; padding-left: 20px; }

.confirm-list {
  border-top: 1px solid var(--line);
}

.confirm-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.confirm-row dt { color: var(--muted); font-size: 12px; }
.confirm-row dd { margin: 0; white-space: pre-wrap; word-break: break-word; }

.confirm-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button.secondary {
  color: var(--ink);
  background: #dedfd9;
  cursor: pointer;
}

.center-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.center-card p { color: var(--muted); }


.desktop-line {
  display: block;
  white-space: nowrap;
}

.hero-title {
  max-width: none;
}

.intro-title {
  font-size: clamp(34px, 3.7vw, 48px);
}

.contact-cta {
  padding: 78px 0;
  color: var(--white);
  background: #202420;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.contact-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 50px);
}

.contact-cta p:last-child {
  margin-bottom: 0;
  color: #aeb5b0;
}

.contact-hero {
  padding-bottom: 86px;
}

.subpage-title {
  max-width: none;
  font-size: clamp(46px, 5.6vw, 70px) !important;
}

.contact-page {
  padding-top: 90px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.contact-side {
  position: sticky;
  top: 120px;
}

.contact-side h2 {
  font-size: clamp(32px, 3.6vw, 46px);
}

.contact-side > p {
  color: var(--muted);
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-direct span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.contact-direct a {
  font-size: 14px;
  text-underline-offset: 4px;
}

.contact-form-page {
  margin: 0;
}

@media (max-width: 860px) {
  .desktop-line {
    white-space: normal;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-side {
    position: static;
  }

  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav a:not(.nav-contact) { display: none; }

  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-copy { padding-top: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-no { margin-bottom: 30px; }

  .article-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }

  .form-row.two { grid-template-columns: 1fr; }

  .confirm-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 30px, 1120px); }
  .header-inner { min-height: 66px; }
  .brand-name { font-size: 13px; }
  .nav-contact { padding: 7px 11px; }

  .hero { min-height: 590px; }
  .hero-inner { padding-top: 54px; padding-bottom: 60px; }

  h1 { font-size: 43px; }
  h2 { font-size: 36px; }


  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }

  .section { padding: 74px 0; }

  .contact-form { padding: 24px 18px; }
  .business-grid { grid-template-columns: 1fr; }

  .confirm-actions { flex-direction: column; }
  .center-card { padding: 30px 20px; }
}
