:root {
  --color-base: #fffdf9;
  --color-soft: #f7f3ee;
  --color-text: #49362b;
  --color-muted: #756558;
  --color-accent: #ae7541;
  --color-border: #e7ddd2;
  --color-white: #ffffff;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-logo: 'Cormorant Garamond', serif;
  --content-width: 1200px;
  --wide-width: 1280px;
  --section-space: 76px;
  --shadow-soft: 0 18px 45px rgba(73, 54, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-base);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.9;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(8px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  gap: 24px;
  width: min(var(--wide-width), calc(100% - 96px));
  min-height: 88px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 58px;
  color: var(--color-accent);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-kicker {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-name {
  margin-top: 5px;
  font-family: var(--font-logo);
  font-size: 3.4rem;
  font-weight: 600;
}

.brand-jp {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 1.4rem;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
}

.global-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  content: '';
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after,
.global-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 1.2rem;
  font-weight: 700;
}

.header-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.action-icon {
  font-size: 2rem;
  line-height: 1;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1rem;
}

.menu-toggle {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  height: min(100vh, 650px);
  min-height: 600px;
  overflow: hidden;
  background: var(--color-text);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.92) 0%, rgba(255, 253, 249, 0.78) 32%, rgba(255, 253, 249, 0.22) 58%, rgba(255, 253, 249, 0.04) 100%);
  content: '';
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--wide-width), calc(100% - 96px));
  margin: 0 auto;
  padding-top: 88px;
}

.hero h1 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero h1 span {
  white-space: nowrap;
}

.hero p {
  margin: 0 0 28px;
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-weight: 600;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 184px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid var(--color-accent);
  font-size: 1.4rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

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

.button-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.button-outline {
  background: transparent;
  color: var(--color-accent);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--color-accent);
  color: var(--color-white);
}

.button-light {
  min-width: 300px;
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}

.features {
  background: var(--color-soft);
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  width: min(var(--content-width), calc(100% - 96px));
  margin: 0 auto;
  padding: 42px 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
}

.feature-card > div {
  min-width: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-accent);
  font-size: 3.4rem;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.3rem;
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.section {
  width: min(var(--content-width), calc(100% - 96px));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 18px;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
}

.section-heading h2::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  content: '';
  transform: translateX(-50%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-info {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 96px;
  padding: 18px 48px 18px 18px;
}

.product-info h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
}

.product-info p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
}

.product-info span {
  color: var(--color-muted);
  font-size: 1.1rem;
  font-weight: 500;
}

.product-info button {
  position: absolute;
  right: 14px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  /* background: var(--color-accent); */
  color: var(--color-white);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-info button .material-symbols-outlined {
  font-size: 1.8rem;
}

.product-info button:hover,
.product-info button:focus-visible {
  background: var(--color-text);
  transform: translateY(-2px);
}

.center-action {
  margin-top: 38px;
  text-align: center;
}

.story {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) minmax(340px, 470px) minmax(520px, 760px) minmax(40px, 1fr);
  align-items: stretch;
  background: linear-gradient(90deg, var(--color-base) 0 50%, var(--color-soft) 50% 100%);
}

.story-copy {
  grid-column: 2;
  align-self: center;
  padding: 76px 72px 76px 0;
}

.eyebrow {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-weight: 500;
}

.story h2 {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.65;
}

.story p:not(.eyebrow) {
  margin: 0 0 36px;
  color: var(--color-muted);
  font-size: 1.4rem;
}

.story-image {
  grid-column: 3 / 5;
  min-height: 450px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(960px, 100%);
  margin: 0 auto;
}

.testimonial-card {
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.rating {
  margin: 0 0 16px;
  font-size: 1.3rem;
  font-weight: 700;
}

.rating span {
  color: #d5a04b;
  letter-spacing: 0.08em;
}

.testimonial-card p:not(.rating) {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 1.3rem;
  line-height: 1.9;
}

.customer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.customer span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7c2a0, #f4ede4);
}

.slider-arrow {
  position: absolute;
  top: 54%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-accent);
  font-size: 2.8rem;
  cursor: pointer;
}

.slider-arrow-left {
  left: 0;
}

.slider-arrow-right {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}

.slider-dots .is-active {
  background: var(--color-accent);
}

.news {
  padding-top: 42px;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.news-item {
  display: grid;
  grid-template-columns: 84px 112px 1fr 28px;
  gap: 22px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.news-item:first-child {
  border-top: 1px solid var(--color-border);
}

.news-item img {
  width: 84px;
  height: 58px;
  object-fit: cover;
}

.news-item time {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.news-item h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}

.news-item a {
  color: var(--color-accent);
  font-size: 1.8rem;
}

.news-list > .button {
  margin-top: 36px;
  margin-left: auto;
}

.news-image img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.shop-banner {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

.shop-banner::after {
  position: absolute;
  inset: 0;
  background: rgba(112, 62, 21, 0.47);
  content: '';
}

.shop-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 34px 20px;
}

.shop-banner-copy p {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.shop-banner-copy h2 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
}

.site-footer {
  position: relative;
  padding: 42px 0 28px;
  background: var(--color-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr 120px;
  gap: 56px;
  align-items: start;
  width: min(var(--content-width), calc(100% - 96px));
  margin: 0 auto;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 50px;
}

.footer-brand .brand-name {
  font-size: 2.8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 8px 40px;
  color: var(--color-muted);
  font-size: 1.3rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: var(--color-accent);
  font-size: 2.8rem;
  font-weight: 700;
}

.copyright {
  margin: 28px 0 0;
  color: var(--color-muted);
  font-family: var(--font-logo);
  font-size: 1.2rem;
  text-align: center;
}

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 210px auto 140px;
    width: min(var(--wide-width), calc(100% - 48px));
  }

  .global-nav {
    gap: 18px;
    font-size: 1.3rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-layout {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }
}

@media (max-width: 1199px) {
  :root {
    --section-space: 72px;
  }

  .site-header {
    position: sticky;
    background: rgba(255, 253, 249, 0.96);
  }

  .header-inner {
    display: flex;
    gap: 16px;
    min-height: 76px;
    width: calc(100% - 32px);
  }

  .brand-mark {
    width: 36px;
    height: 44px;
  }

  .brand-kicker {
    font-size: 1rem;
  }

  .brand-name {
    font-size: 2.7rem;
  }

  .brand-jp {
    margin-top: 6px;
    font-size: 1rem;
  }

  .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 30;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-white);
    cursor: pointer;
  }

  .global-nav {
    position: fixed;
    top: 76px;
    left: 0;
    display: none;
    width: 100%;
    padding: 18px 24px 24px;
    background: rgba(255, 253, 249, 0.98);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

  body.menu-open .global-nav {
    display: grid;
    gap: 4px;
  }

  .global-nav a {
    padding: 12px 4px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    height: min(82svh, 650px);
    min-height: 560px;
  }

  .hero-copy {
    width: calc(100% - 48px);
    padding: 72px 0 40px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: 3.6rem;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.95) 0%, rgba(255, 253, 249, 0.82) 42%, rgba(255, 253, 249, 0.28) 74%, rgba(255, 253, 249, 0.08) 100%);
  }

  .hero-image img {
    object-position: 62% center;
  }

  .features-inner,
  .section,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .features-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .feature-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 2.6rem;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 2.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-info {
    min-height: 116px;
    padding: 14px 42px 16px 14px;
  }

  .product-info h3 {
    font-size: 1.4rem;
  }

  .story {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--color-base);
  }

  .story-copy {
    grid-column: auto;
    padding: 64px 4%;
  }

  .story h2 {
    font-size: 3rem;
  }

  .story-image {
    grid-column: auto;
    min-height: 320px;
  }

  .testimonial-grid {
    display: flex;
    gap: 18px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px 12px;
  }

  .testimonial-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .slider-arrow {
    display: none;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-item {
    grid-template-columns: 76px 1fr 26px;
    gap: 14px;
  }

  .news-item time {
    grid-column: 2;
    align-self: end;
    font-size: 1.2rem;
  }

  .news-item h3 {
    grid-column: 2;
    font-size: 1.3rem;
  }

  .news-item a {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .news-item img {
    grid-row: 1 / span 2;
    width: 76px;
    height: 76px;
  }

  .news-list > .button {
    margin-right: auto;
  }

  .shop-banner-copy h2 {
    font-size: 2.4rem;
    line-height: 1.6;
  }

  .button-light {
    min-width: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --section-space: 60px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    background: var(--color-base);
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    width: 92%;
    padding: 64px 0 48px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 48vw;
    min-height: 240px;
  }

  .hero-image img {
    object-position: center;
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 4%;
  }

  .feature-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    text-align: left;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .news-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 10px;
    width: calc(100% - 24px);
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 40px;
  }

  .brand-name {
    font-size: 2.5rem;
  }

  .menu-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 92%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
