:root {
  --ink: #172126;
  --muted: #5c6668;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ded8cb;
  --green: #183b32;
  --green-soft: #e7eee9;
  --gold: #a77a36;
  --wood: #8a6041;
  --shadow: 0 18px 48px rgba(23, 33, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.phone-link {
  color: var(--green);
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.99) 0%, rgba(251, 250, 246, 0.96) 43%, rgba(251, 250, 246, 0.42) 62%, rgba(251, 250, 246, 0.08) 78%),
    url("../img/hero-boutique.png") center right / cover no-repeat;
}

.hero__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
  display: grid;
  align-content: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 14px;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #374145;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
}

.hero__note {
  margin-top: 34px;
  max-width: 520px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
}

main {
  overflow: hidden;
}

.section {
  padding: 76px 0;
}

.section--green {
  background: var(--green);
  color: #fff;
}

.section__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section__head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: 0;
}

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

.section--green .section__head p,
.section--green .eyebrow {
  color: #dfe8df;
}

.promise-grid,
.category-grid,
.product-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promise,
.category,
.product-card,
.info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(23, 33, 38, 0.05);
}

.promise h3,
.category h3,
.product-card h3,
.info-panel h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.4;
}

.promise p,
.category p,
.product-card p,
.info-panel p {
  margin: 0;
  color: var(--muted);
}

.category {
  min-height: 168px;
  border-top: 5px solid var(--gold);
}

.product-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.product-card__meta span {
  background: var(--green-soft);
  color: var(--green);
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 800;
}

.online-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  color: var(--ink);
  padding: 34px;
  box-shadow: var(--shadow);
}

.online-box h2 {
  margin: 0 0 14px;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.3;
}

.online-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.online-list li {
  padding: 14px 16px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.info-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.store-table {
  width: 100%;
  border-collapse: collapse;
}

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

.store-table th {
  width: 6em;
  color: var(--green);
}

.map-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e7eee9, #f5ead8);
  border: 1px solid var(--line);
  padding: 24px;
  text-align: center;
}

.map-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}

.site-footer__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #cfd7d9;
}

.notice {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
}

@media (max-width: 880px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.9) 56%, rgba(251, 250, 246, 0.66) 100%),
      url("../img/hero-boutique.png") center / cover no-repeat;
  }

  .hero__inner {
    padding: 56px 0 44px;
  }

  .promise-grid,
  .category-grid,
  .product-grid,
  .info-grid,
  .online-box {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .nav {
    font-size: 13px;
    gap: 12px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .promise,
  .category,
  .product-card,
  .info-panel,
  .online-box {
    padding: 20px;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}
