:root {
  --color-text: #4f514b;
  --color-muted: #777a6f;
  --color-cream: #fbfaf6;
  --color-panel: #f7f4ee;
  --color-line: #ddd8ca;
  --color-sage: #a3ad8b;
  --color-sage-dark: #7f886b;
  --color-white: #fff;
  --font-serif: 'Yu Mincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Noto Serif JP', 'Times New Roman', serif;
  --font-sans: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  --max-width: 1180px;
  --header-height: 86px;
  --section-space: 92px;
  --gutter: max(4vw, 20px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-cream);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 216, 202, 0.6);
  backdrop-filter: blur(12px);
}

.site-logo {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  min-width: 0;
  white-space: nowrap;
}

.site-logo span {
  margin-left: 0.28em;
  font-size: 1.2em;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 54px);
  color: #55594f;
  font-size: 1.6rem;
  font-weight: 600;
}

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

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  content: '';
  background: var(--color-sage-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-left: 18px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--color-text);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--header-height)));
  overflow: hidden;
  background: #edf0e8;
}

.hero-image {
  width: 100%;
  height: min(720px, calc(100vh - var(--header-height)));
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.64) 25%, rgba(255, 255, 255, 0.18) 52%, rgba(255, 255, 255, 0) 100%);
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: max(var(--gutter), calc((100vw - var(--max-width)) / 2));
  top: 50%;
  width: min(520px, calc(100% - 44px));
  transform: translateY(-45%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--color-sage-dark);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.concept h2,
.split-copy h2,
.cta h2 {
  margin: 0;
  color: #555750;
  font-weight: 500;
  line-height: 1.55;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 66px);
  white-space: nowrap;
}

.hero-copy p:not(.eyebrow) {
  margin: 20px 0 24px;
  color: #64675f;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.button::after {
  margin-left: 18px;
  content: '→';
}

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

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

.button-primary:hover {
  background: var(--color-sage-dark);
}

.button-outline {
  color: var(--color-sage-dark);
  border-color: var(--color-sage);
  background: rgba(255, 255, 255, 0.58);
}

.button-outline:hover {
  color: var(--color-white);
  background: var(--color-sage);
}

.section {
  padding: var(--section-space) var(--gutter);
}

.concept-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.concept-text h2,
.split-copy h2,
.cta h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.concept-text h2 {
  white-space: nowrap;
}

.concept-text p:not(.section-kicker),
.split-copy p,
.cta p {
  color: var(--color-muted);
  font-size: 1.6rem;
  font-weight: 600;
}

.concept-art {
  display: flex;
  justify-content: center;
  opacity: 0.86;
}

.concept-art img {
  width: min(100%, 390px);
}

.section-title-with-lines {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 38px;
}

.section-title-with-lines span {
  height: 1px;
  background: var(--color-line);
}

.section-title-with-lines h2,
.center-heading h2 {
  margin: 0;
  color: #555750;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 500;
  text-align: center;
}

.feature-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  min-height: 210px;
  padding: 36px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(127, 136, 107, 0.08);
}

.feature-card h3,
.product-card h3 {
  margin: 18px 0 10px;
  color: #53564f;
  font-size: 18px;
  font-weight: 500;
}

.feature-card p,
.product-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.6rem;
  font-weight: 600;
}

.feature-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  color: var(--color-sage);
}

.flower-icon::before {
  position: absolute;
  inset: 12px 19px 6px;
  content: '';
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewX(-12deg);
}

.flower-icon::after {
  position: absolute;
  left: 14px;
  top: 6px;
  width: 26px;
  height: 26px;
  content: '';
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow:
    -12px 10px 0 -8px currentColor,
    12px 10px 0 -8px currentColor;
}

.gift-icon {
  border: 2px solid currentColor;
  border-top-width: 10px;
}

.gift-icon::before,
.gift-icon::after {
  position: absolute;
  content: '';
  background: currentColor;
}

.gift-icon::before {
  left: 25px;
  top: -10px;
  width: 2px;
  height: 54px;
}

.gift-icon::after {
  left: 9px;
  top: -20px;
  width: 34px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom: 0;
  background: transparent;
  border-radius: 18px 18px 0 0;
}

.truck-icon::before {
  position: absolute;
  left: 5px;
  top: 17px;
  width: 30px;
  height: 19px;
  content: '';
  border: 2px solid currentColor;
}

.truck-icon::after {
  position: absolute;
  right: 4px;
  top: 23px;
  width: 16px;
  height: 13px;
  content: '';
  border: 2px solid currentColor;
  border-left: 0;
}

.truck-icon {
  box-shadow:
    12px 41px 0 -23px currentColor,
    -12px 41px 0 -23px currentColor;
}

.center-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.product-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(221, 216, 202, 0.75);
  box-shadow: 0 16px 32px rgba(127, 136, 107, 0.08);
}

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

.product-card > div {
  padding: 22px 24px 24px;
}

.product-card h3 {
  margin-top: 0;
  font-size: 19px;
}

.product-name {
  margin-bottom: 12px !important;
  color: #62665e !important;
}

.product-card strong {
  display: block;
  margin-top: 18px;
  color: #65685f;
  font-size: 18px;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  background: var(--color-white);
}

.split-section-reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  background: var(--color-cream);
}

.split-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.craft .split-image img {
  object-position: center;
}

.shop .split-image img {
  object-position: center;
}

.split-copy {
  max-width: 580px;
  padding: clamp(44px, 7vw, 92px) var(--gutter);
}

.split-section:not(.split-section-reverse) .split-copy {
  margin-right: auto;
}

.split-section-reverse .split-copy {
  margin-left: auto;
}

.gallery {
  position: relative;
  padding: 10px 0 0;
  background: var(--color-white);
  overflow: hidden;
}

.gallery .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery:not(.swiper-initialized) .swiper-slide {
  width: auto !important;
}

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

.gallery-button {
  display: none;
}

.cta {
  display: grid;
  grid-template-columns: 41% 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: calc(var(--max-width) + 80px);
  margin: 44px auto 0;
  padding: 0 clamp(28px, 5vw, 72px) 0 0;
  background: linear-gradient(90deg, #eef1e8 0%, #f8f7f2 100%);
}

.cta img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.cta-copy {
  padding: 34px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 1fr 1.1fr;
  gap: 28px;
  max-width: calc(var(--max-width) + 80px);
  margin: 0 auto;
  padding: 46px var(--gutter) 26px;
  color: #666960;
  font-family: var(--font-serif);
}

.site-footer > div:not(:first-child) {
  border-left: 1px solid var(--color-line);
  padding-left: 28px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.site-footer p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.site-footer .button {
  min-width: 0;
  min-height: 40px;
  margin-top: 12px;
  padding: 9px 16px;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 8px !important;
  text-align: center;
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --section-space: 70px;
  }

  .hero,
  .hero-image {
    min-height: 580px;
    height: calc(100vh - var(--header-height));
  }

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

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 56%, rgba(255, 255, 255, 0.15) 100%);
  }

  .hero-copy {
    left: var(--gutter);
    transform: translateY(-40%);
  }

  .concept-inner,
  .split-section,
  .split-section-reverse,
  .cta {
    grid-template-columns: 1fr;
  }

  .concept-inner {
    gap: 26px;
  }

  .concept-art img {
    width: min(78%, 340px);
  }

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

  .feature-card {
    min-height: 0;
  }

  .split-section-reverse .split-copy {
    order: 2;
  }

  .split-section-reverse .split-image {
    order: 1;
  }

  .split-image img {
    min-height: 360px;
  }

  .split-copy,
  .split-section-reverse .split-copy {
    max-width: none;
    margin: 0;
  }

  .gallery {
    padding-top: 8px;
  }

  .gallery .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery.swiper-initialized {
    padding-inline: 52px;
  }

  .gallery.swiper-initialized .swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .gallery-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: var(--color-sage-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-line);
    box-shadow: 0 8px 18px rgba(127, 136, 107, 0.14);
  }

  .gallery-button::after {
    font-size: 17px;
    font-weight: 700;
  }

  .gallery-button-prev {
    left: 10px;
  }

  .gallery-button-next {
    right: 10px;
  }

  .cta {
    margin: 28px var(--gutter) 0;
    padding: 0 0 34px;
  }

  .cta img {
    height: 260px;
  }

  .cta-copy {
    padding: 0 24px;
  }

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

  .site-footer > div:not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 0 var(--gutter);
    gap: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px var(--gutter) 26px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(221, 216, 202, 0.7);
  }
}

@media (max-width: 560px) {
  :root {
    --section-space: 58px;
  }

  body {
    line-height: 1.85;
  }

  .site-logo {
    font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header {
    justify-content: space-between;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .site-logo span {
    font-size: 1.1em;
  }

  .hero,
  .hero-image {
    min-height: 520px;
  }

  .hero-copy {
    top: 55%;
    left: var(--gutter);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1.6rem;
  }

  .hero h1 {
    white-space: normal;
  }

  .concept-text h2 {
    white-space: normal;
  }

  .button {
    min-width: 160px;
    min-height: 44px;
    padding: 10px 18px;
  }

  .section-title-with-lines {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title-with-lines span {
    display: none;
  }

  .product-card > div,
  .feature-card {
    padding: 22px 20px;
  }

  .split-image img {
    min-height: 280px;
  }

  .gallery {
    padding-top: 6px;
  }

  .gallery img {
    aspect-ratio: 1.1 / 1;
  }

  .gallery.swiper-initialized {
    padding-inline: 42px;
  }

  .gallery-button {
    width: 38px;
    height: 38px;
  }

  .cta {
    margin-inline: 20px;
  }

  .cta img {
    height: 210px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }
}
