:root {
  --bg: #fff9f4;
  --surface: #ffffff;
  --surface-2: #fff1e8;
  --text: #2b1a16;
  --muted: #6f564f;
  --brand: #7d1f19;
  --brand-2: #b8472c;
  --line: rgba(125, 31, 25, 0.12);
  --shadow: 0 18px 60px rgba(125, 31, 25, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 71, 44, 0.09), transparent 26%),
    radial-gradient(circle at top right, rgba(125, 31, 25, 0.1), transparent 28%),
    var(--bg);
  line-height: 1.75;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 249, 244, 0.78);
  border-bottom: 1px solid rgba(125, 31, 25, 0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(125, 31, 25, 0.08);
  color: var(--brand);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 241, 232, 0.75));
  border-block: 1px solid rgba(125, 31, 25, 0.08);
}

.hero {
  padding-top: 72px;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.83rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.lead,
.section-heading p,
.store-note p,
.cta-card p,
.feature-card p,
.service-card p,
.gallery-card figcaption,
.faq-list p,
.info-item strong,
.info-item span {
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 30px rgba(125, 31, 25, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero-badges li,
.service-tag {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(125, 31, 25, 0.08);
  color: var(--brand);
}

.hero-card {
  background: linear-gradient(180deg, #fff, #fff7f1);
  border: 1px solid rgba(125, 31, 25, 0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card__top,
.hero-card__bottom,
.info-grid,
.feature-grid,
.service-grid,
.gallery-grid,
.faq-list,
.cta-card,
.footer-inner {
  display: grid;
  gap: 16px;
}

.hero-card__top {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
}

.hero-card__top p,
.hero-card__top span {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card__art {
  position: relative;
  min-height: 290px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(180deg, rgba(125, 31, 25, 0.1), rgba(184, 71, 44, 0.16));
}

.art-bowl {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: min(82%, 390px);
  height: 170px;
  transform: translateX(-50%);
  border-radius: 0 0 200px 200px;
  background: linear-gradient(180deg, #f6d2bf, #ce765d);
  box-shadow: inset 0 -24px 0 rgba(125, 31, 25, 0.18);
}

.art-bowl::before {
  content: "";
  position: absolute;
  inset: 14px 22px 32px;
  border-radius: 0 0 180px 180px;
  background: linear-gradient(180deg, #5c120e, #8c231d 62%, #c74a2f 100%);
  box-shadow: inset 0 8px 24px rgba(255, 255, 255, 0.08);
}

.art-steam {
  position: absolute;
  bottom: 170px;
  width: 14px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.8));
  filter: blur(1px);
  animation: float 3.8s ease-in-out infinite;
}

.art-steam--one { left: 38%; }
.art-steam--two { left: 49%; animation-delay: 0.6s; }
.art-steam--three { left: 60%; animation-delay: 1.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.72; }
  50% { transform: translateY(-12px); opacity: 1; }
}

.hero-card__bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-card__bottom div,
.feature-card,
.service-card,
.gallery-card,
.info-item,
.store-note,
.faq-list details,
.cta-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(125, 31, 25, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(125, 31, 25, 0.06);
}

.hero-card__bottom div {
  padding: 14px;
}

.hero-card__bottom strong,
.info-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading.align-left {
  max-width: none;
}

.feature-grid,
.service-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card {
  padding: 22px;
}

.feature-number {
  margin-bottom: 12px;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.gallery-card {
  padding: 14px;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(125, 31, 25, 0.9), rgba(184, 71, 44, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 30%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gallery-card figcaption {
  padding: 12px 4px 2px;
}

.menu-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.info-item {
  padding: 18px;
}

.info-item span {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.store-note {
  padding: 24px;
  height: 100%;
}

.store-note ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.store-note li + li {
  margin-top: 8px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
}

.cta-section {
  padding-top: 24px;
}

.cta-card {
  grid-template-columns: 1.2fr auto;
  align-items: center;
  padding: 28px;
}

.site-footer {
  padding: 28px 0 48px;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  color: var(--muted);
  border-top: 1px solid rgba(125, 31, 25, 0.12);
  padding-top: 18px;
}

@media (max-width: 920px) {
  .hero-grid,
  .two-column,
  .feature-grid,
  .service-grid,
  .gallery-grid,
  .cta-card,
  .footer-inner,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    display: none;
    padding: 8px 0 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .hero {
    padding-top: 54px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card__bottom {
    grid-template-columns: 1fr;
  }

  .hero-card__art {
    min-height: 240px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}
