* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #231f20;
  background: #fbfaf7;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(14px);
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  font-size: 13px;
}

.nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #8f1f3b;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: clamp(24px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 17, 20, .82), rgba(35, 17, 20, .22) 58%, rgba(35, 17, 20, .12)),
    var(--hero-image) center / cover no-repeat;
}

.hero-inner {
  max-width: 760px;
  padding-bottom: clamp(24px, 7vh, 90px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f3d6b4;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.22;
}

h1 {
  font-size: clamp(34px, 6vw, 76px);
  max-width: 12em;
}

h2 {
  font-size: clamp(24px, 3.2vw, 42px);
}

h3 {
  font-size: 19px;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(16px, 2vw, 21px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  border-color: #8f1f3b;
  background: #8f1f3b;
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(16px, 4vw, 52px);
}

.section.alt {
  background: #f2eee8;
}

.section-head {
  max-width: 920px;
  margin: 0 auto 28px;
}

.section-head p {
  max-width: 740px;
  margin: 14px 0 0;
  color: #5c5556;
}

.grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.card {
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, .12);
  border-radius: 8px;
  background: #fff;
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-body p {
  margin: 9px 0 0;
  color: #5c5556;
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: #8f1f3b;
  font-weight: 700;
  text-decoration: none;
}

.feature {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.feature img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.panel {
  padding: clamp(20px, 4vw, 38px);
  border-left: 4px solid #8f1f3b;
  background: #fff;
}

.list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(35, 31, 32, .1);
}

.footer {
  padding: 34px clamp(16px, 4vw, 52px);
  background: #231f20;
  color: #fff;
  font-size: 13px;
}

.footer a {
  color: #f3d6b4;
}

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

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 68vh;
    background:
      linear-gradient(180deg, rgba(35, 17, 20, .22), rgba(35, 17, 20, .86)),
      var(--hero-image) center / cover no-repeat;
  }

  .grid,
  .grid.two,
  .feature {
    grid-template-columns: 1fr;
  }

  .feature {
    gap: 24px;
  }
}
