:root {
  --cream: #fffaf1;
  --paper: #fffdf9;
  --brown: #513c34;
  --pink: #ef8e91;
  --pink-dark: #d96f76;
  --yellow: #f4c85c;
  --green: #788b68;
  --line: #eadfd3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--brown);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.site-header {
  min-height: 76px;
  padding: 14px max(5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 253, 249, .96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  text-decoration: none;
  font-family: "Kiwi Maru", serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  letter-spacing: .08em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset -4px -5px 0 rgba(183, 128, 51, .12);
}

.brand-mark i {
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50%;
  background: #a66c41;
}

.brand-mark i:nth-child(1) { top: 10px; left: 12px; }
.brand-mark i:nth-child(2) { top: 19px; left: 20px; }
.brand-mark i:nth-child(3) { top: 11px; left: 25px; }

.header-note {
  color: #8a756b;
  font-size: 13px;
  letter-spacing: .08em;
}

.hero {
  min-height: min(660px, calc(100vh - 76px));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img { object-fit: cover; }

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 248, 235, .93) 0%, rgba(255, 248, 235, .79) 38%, rgba(255, 248, 235, .19) 72%, rgba(255, 248, 235, .08) 100%);
}

.hero-content {
  width: min(1180px, 90%);
  position: relative;
  z-index: 2;
}

.hero-label {
  margin: 0 0 15px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.hero h1 {
  margin: 0;
  color: var(--brown);
  font-family: "Kiwi Maru", serif;
  font-size: clamp(38px, 5.3vw, 72px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .06em;
  text-shadow: 0 2px 12px rgba(255, 255, 255, .35);
}

.hero-copy {
  margin: 24px 0 30px;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: .06em;
}

.hero-button {
  display: inline-flex;
  min-width: 190px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 8px 20px rgba(217, 111, 118, .25);
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.hero-deco {
  position: absolute;
  z-index: 2;
  color: var(--yellow);
  pointer-events: none;
}

.deco-one { top: 12%; left: 7%; font-size: 28px; }
.deco-two { right: 8%; bottom: 11%; font-size: 20px; opacity: .75; }

.news {
  width: min(1040px, 88%);
  margin: 0 auto;
  padding: 92px 0 105px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 60px;
}

.news-heading p {
  margin: 0 0 2px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.news-heading h2 {
  margin: 0;
  font-family: "Kiwi Maru", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: .08em;
}

.news-item {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 8px 8px 0 #f8e7e5;
}

.news-item time {
  padding-top: 3px;
  color: #8e786b;
  font-size: 13px;
}

.news-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  letter-spacing: .08em;
}

.news-item h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
}

.news-item p {
  margin: 0;
  color: #715e55;
  font-size: 14px;
}

.site-footer {
  padding: 30px 24px;
  text-align: center;
  background: #f9e9e4;
}

.site-footer p {
  margin: 0 0 3px;
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  letter-spacing: .08em;
}

.site-footer small {
  color: #917c72;
  font-size: 10px;
  letter-spacing: .12em;
}

@media (max-width: 720px) {
  .site-header { min-height: 66px; }
  .header-note { display: none; }
  .brand-mark { width: 34px; height: 34px; }

  .hero {
    min-height: 620px;
    place-items: end center;
  }

  .hero > img { object-position: 58% center; }

  .hero-shade {
    background: linear-gradient(0deg, rgba(255, 248, 235, .98) 0%, rgba(255, 248, 235, .88) 48%, rgba(255, 248, 235, .13) 88%);
  }

  .hero-content {
    width: 86%;
    padding-bottom: 68px;
  }

  .hero h1 { font-size: clamp(34px, 10vw, 48px); }
  .hero-copy br { display: none; }

  .news {
    padding: 65px 0 78px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-item {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-item time { padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-button { transition: none; }
}
