:root {
  --paper: #f8f5ef;
  --ink: #212121;
  --accent: #8a4f2f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.brand {
  font-weight: 700;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 80px) 72px;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.56);
}

.hero-inner {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 12em;
  font-size: 64px;
}

h2 {
  font-size: 40px;
}

.hero-copy {
  max-width: 34em;
  margin: 26px 0 32px;
  font-size: 20px;
  font-weight: 600;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--accent);
  color: var(--paper);
  border: 1px solid var(--accent);
  border-radius: 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.section,
.contact {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 80px);
  border-bottom: 1px solid var(--ink);
}

.section {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(28px, 6vw, 80px);
}

.body-text {
  max-width: 760px;
  margin: 0;
  font-size: 19px;
}

.business-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 19px;
}

.business-list li {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}

.info-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
}

dt {
  color: var(--accent);
  font-weight: 700;
}

dd {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  background: var(--ink);
  color: var(--paper);
}

.contact .eyebrow {
  color: var(--paper);
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
}

.contact-phone {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-panel p {
  margin: 0;
}

.site-footer {
  padding: 22px clamp(20px, 6vw, 80px);
}

.variant-0 .hero {
  background-position: center center;
}

.variant-1 .hero {
  justify-content: flex-end;
  background-position: left center;
}

.variant-1 .hero-inner {
  width: min(640px, 100%);
}

.variant-2 .hero {
  justify-content: center;
  text-align: center;
  background-position: center top;
}

.variant-2 .hero-inner {
  width: min(720px, 100%);
}

.variant-3 .hero {
  align-items: flex-end;
  background-position: right center;
  min-height: 78svh;
}

.variant-4 .hero {
  background-position: center center;
  min-height: 80svh;
}

.variant-4 .hero-inner {
  width: min(610px, 100%);
}

.variant-5 .hero {
  align-items: flex-end;
  justify-content: flex-end;
  background-position: left center;
}

.variant-5 .hero-inner {
  width: min(620px, 100%);
}

.variant-6 .hero {
  justify-content: center;
  text-align: center;
  background-position: center center;
}

.variant-7 .hero {
  justify-content: flex-end;
  background-position: center bottom;
  min-height: 76svh;
}

.variant-7 .hero-inner {
  width: min(600px, 100%);
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 68svh;
    padding-top: 56px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy,
  .body-text,
  .business-list {
    font-size: 16px;
  }

  .section,
  .contact,
  .info-row {
    grid-template-columns: 1fr;
  }

  .info-row {
    gap: 4px;
  }

  .contact-phone {
    font-size: 28px;
    overflow-wrap: anywhere;
  }
}
