:root {
  --bg: #f7f5ef;
  --paper: #ffffff;
  --ink: #1f2a21;
  --muted: #5d675f;
  --line: #d9d2c2;
  --field: #fbfaf7;
  --accent: #536b49;
  --accent-dark: #31402f;
  --soft: #ebe6d8;
  --warning: #70592e;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.58;
}
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.97);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { color: var(--ink); text-decoration: none; display: grid; gap: 1px; min-width: 230px; }
.brand-main { font-size: 1.14rem; font-weight: 700; letter-spacing: .01em; }
.brand-sub { font-size: .86rem; color: var(--muted); }
.site-nav { display: flex; gap: 12px 16px; flex-wrap: wrap; justify-content: flex-end; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .92rem; }
.site-nav a { text-decoration: none; color: var(--muted); border-bottom: 1px solid transparent; }
.site-nav a.active, .site-nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.hero { padding: 74px 0 58px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--soft), var(--bg)); }
.kicker { text-transform: uppercase; letter-spacing: .14em; color: var(--accent-dark); font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .78rem; font-weight: 700; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.15rem, 5vw, 4.35rem); max-width: 900px; margin-bottom: 20px; }
h2 { font-size: clamp(1.65rem, 3vw, 2.55rem); margin-bottom: 16px; }
h3 { font-size: 1.28rem; margin-bottom: 8px; }
.lede { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 820px; color: var(--muted); margin-bottom: 28px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button, button {
  display: inline-block;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.button.secondary { background: transparent; color: var(--accent-dark); }
.button:hover, button:hover { opacity: .88; color: white; }
.button.secondary:hover { color: var(--accent-dark); }
.section { padding: 54px 0; }
.section.tight { padding: 34px 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.two-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.card, .notice, .form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(46, 39, 24, .05);
}
.card p:last-child, .notice p:last-child { margin-bottom: 0; }
.notice { background: #fffdf7; }
.notice.strong { border-left: 5px solid var(--accent); }
.notice.warning { border-left: 5px solid var(--warning); }
.meta-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.meta-list li { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.meta-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.label { display: block; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; }
.value { display: block; font-size: 1.08rem; font-weight: 700; }
.page-header { padding: 48px 0 34px; border-bottom: 1px solid var(--line); background: var(--soft); }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.content { max-width: 860px; }
.content p, .content li { font-size: 1.04rem; }
.callout-list { display: grid; gap: 16px; margin-top: 22px; }
blockquote { margin: 24px 0; padding: 18px 22px; border-left: 5px solid var(--accent); background: var(--paper); }
.form-panel { margin-top: 24px; }
.inquiry-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
label, legend { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--field);
  padding: 11px 12px;
  border-radius: 10px;
  font: inherit;
}
textarea { min-height: 145px; resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: 14px; padding: 16px; background: var(--field); }
.options { display: grid; gap: 9px; margin-top: 8px; }
.options label { font-weight: 500; font-family: inherit; display: flex; align-items: flex-start; gap: 9px; }
.options input { width: auto; margin-top: .35em; }
.hidden { display: none; }
.small { font-size: .92rem; color: var(--muted); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
.site-footer { padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); background: #eee8dc; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.2fr .8fr; gap: 22px; font-size: .94rem; }
@media (max-width: 860px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .card-grid, .two-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}

/* Homepage v0.1.1 mobile-first hero update */
.home-hero {
  padding: 46px 0 48px;
}
.home-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  max-width: 940px;
  margin-bottom: 18px;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 20px;
  max-width: 960px;
}
.hero-fact {
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  box-shadow: 0 10px 24px rgba(46, 39, 24, .045);
}
.hero-fact strong,
.hero-fact span {
  display: block;
}
.hero-fact strong {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.15;
  color: var(--ink);
}
.hero-fact span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.25;
}
.hero-actions {
  align-items: center;
  margin: 6px 0 18px;
}
.overview-link {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.hero-note {
  margin-top: 16px;
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .home-hero {
    padding-top: 34px;
    padding-bottom: 38px;
  }
  .home-hero .kicker {
    font-size: .72rem;
    letter-spacing: .13em;
    margin-bottom: 12px;
  }
  .home-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.85rem);
    line-height: 1.06;
    margin-bottom: 16px;
  }
  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 14px 0 16px;
  }
  .hero-fact {
    padding: 10px 11px;
    border-radius: 14px;
  }
  .hero-fact strong {
    font-size: .92rem;
  }
  .hero-fact span {
    font-size: .78rem;
    line-height: 1.2;
  }
  .hero-actions {
    gap: 9px;
    margin: 4px 0 14px;
  }
  .hero-actions .button {
    padding: 10px 14px;
    font-size: .95rem;
  }
  .overview-link {
    font-size: .94rem;
    padding: 4px 2px;
  }
  .hero-note {
    font-size: 1rem;
    line-height: 1.48;
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .home-hero {
    padding-top: 28px;
  }
  .home-hero h1 {
    font-size: clamp(1.82rem, 8.1vw, 2.35rem);
  }
  .hero-actions .button {
    width: auto;
  }
  .hero-actions .button:first-child,
  .hero-actions .map-button {
    display: block;
    width: 100%;
    text-align: center;
  }
}
