:root {
  --bg: #f9f6ef;
  --paper: #fffdf8;
  --paper-soft: #f0eadf;
  --sage-50: #edf4eb;
  --sage-100: #dce8d7;
  --sage-200: #c7d8bf;
  --sage-300: #a9c09f;
  --sage-500: #6f8b64;
  --sage-700: #425b3d;
  --sage-900: #243624;
  --olive: #7d8869;
  --moss: #536847;
  --gold: #b8a778;
  --clay: #c7a68f;
  --text: #263324;
  --muted: #6e786c;
  --line: rgba(66, 91, 61, 0.16);
  --shadow: 0 24px 70px rgba(36, 54, 36, 0.13);
  --shadow-soft: 0 14px 40px rgba(36, 54, 36, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(169, 192, 159, 0.34), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(199, 216, 191, 0.52), transparent 32rem),
    linear-gradient(180deg, #fbf8f2, var(--bg));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.page {
  overflow: hidden;
}

.announcement {
  min-height: 42px;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  padding: 9px 16px;
  background: var(--sage-900);
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
}

.announcement strong {
  color: white;
  font-weight: 750;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 246, 239, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sage-900);
  font-weight: 850;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--sage-900);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-link,
.cart-button,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 750;
}

.icon-link {
  color: var(--muted);
  padding: 0 8px;
}

.cart-button {
  padding: 0 18px;
  color: white;
  background: var(--sage-900);
  box-shadow: 0 14px 36px rgba(36, 54, 36, 0.18);
}

.btn {
  padding: 0 22px;
  border: 1px solid var(--line);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

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

.btn-primary {
  background: var(--sage-900);
  color: white;
  border-color: var(--sage-900);
  box-shadow: 0 16px 42px rgba(36, 54, 36, 0.22);
}

.btn-soft {
  background: rgba(255,255,255,0.72);
  color: var(--sage-900);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero-shop {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--sage-500);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-title h2,
.about-text h2,
.closing h2,
.intro-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--sage-900);
  letter-spacing: -0.065em;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.9;
}

.hero-copy > p:not(.kicker) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.85;
}

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

.hero-buttons.center {
  justify-content: center;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 50px 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(169,192,159,0.42), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(220,232,215,0.62));
  filter: blur(0.5px);
}

.hero-logo-card {
  position: relative;
  z-index: 2;
  width: min(460px, 86vw);
  border: 1px solid rgba(66,91,61,0.18);
  border-radius: 50%;
  padding: 18px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 220px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sage-900);
}

.floating-card span {
  color: var(--muted);
  line-height: 1.45;
}

.floating-card-top {
  top: 64px;
  right: 0;
}

.floating-card-bottom {
  left: 0;
  bottom: 86px;
}

.intro-section {
  padding-top: 34px;
}

.intro-box {
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(237,244,235,0.92), rgba(255,253,248,0.92)),
    var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.intro-box h2 {
  margin: 0 auto 14px;
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.intro-box p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 0.96;
}

.section-title p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.row-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.row-title p:last-child {
  max-width: 390px;
}

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

.category-card {
  min-height: 370px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(36,54,36,0.66)),
    linear-gradient(135deg, var(--sage-200), var(--sage-50));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -72px;
  top: -72px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card span {
  color: rgba(255,255,255,0.84);
  font-weight: 850;
}

.category-card h3 {
  margin: 150px 0 10px;
  color: white;
  font-size: 1.5rem;
  letter-spacing: -0.045em;
}

.category-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.62;
}

.category-card a {
  width: max-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--sage-900);
  font-weight: 800;
}

.category-card.plant {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(36,54,36,0.68)),
    radial-gradient(circle at 30% 20%, #dce8d7, transparent 42%),
    linear-gradient(135deg, #7f9f77, #c7d8bf);
}

.category-card.handmade {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(36,54,36,0.64)),
    linear-gradient(135deg, #c7d8bf, #e9dfcc);
}

.category-card.fimo {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(36,54,36,0.62)),
    linear-gradient(135deg, #bccdae, #c7a68f);
}

.category-card.resin {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(36,54,36,0.64)),
    linear-gradient(135deg, #9eb792, #dce8d7);
}

.product-section {
  padding-top: 48px;
}

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

.product-card {
  padding: 14px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,0.82);
  box-shadow: var(--shadow-soft);
}

.product-image {
  height: 250px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,0.76), transparent 28%),
    linear-gradient(135deg, var(--sage-200), var(--sage-50));
}

.product-image.botanical {
  background:
    radial-gradient(circle at 55% 22%, rgba(255,255,255,0.72), transparent 28%),
    linear-gradient(135deg, #789470, #dce8d7);
}

.product-image.clay {
  background:
    radial-gradient(circle at 45% 24%, rgba(255,255,255,0.74), transparent 28%),
    linear-gradient(135deg, #c7a68f, #e8ddd0);
}

.product-image.resin {
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,0.78), transparent 28%),
    linear-gradient(135deg, #7d8869, #dce8d7);
}

.product-image.handmade {
  background:
    radial-gradient(circle at 42% 24%, rgba(255,255,255,0.72), transparent 28%),
    linear-gradient(135deg, #b8a778, #edf4eb);
}

.product-meta {
  padding: 16px 8px 6px;
}

.product-meta span {
  color: var(--sage-500);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 8px 0 6px;
  color: var(--sage-900);
  font-size: 1.08rem;
  letter-spacing: -0.035em;
}

.product-meta p {
  margin: 0 0 12px;
  color: var(--muted);
}

.product-meta strong {
  color: var(--sage-900);
}

.about-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.about-image {
  border-radius: 50%;
  padding: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-image img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-text {
  padding: 12px 0;
}

.about-text h2 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.97;
}

.about-text p {
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.04rem;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-band article {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255,253,248,0.76);
  box-shadow: var(--shadow-soft);
}

.service-band h3 {
  margin: 0 0 10px;
  color: var(--sage-900);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.service-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.closing {
  text-align: center;
  padding-bottom: 96px;
}

.closing h2 {
  max-width: 870px;
  margin: 0 auto 18px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.96;
}

.closing > p:not(.kicker) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.78;
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 52px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--sage-900);
  margin-bottom: 8px;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer a:hover {
  color: var(--sage-900);
}

@media (max-width: 1040px) {
  .hero-shop,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 40px 0;
  }

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

  .row-title {
    display: block;
  }
}

@media (max-width: 760px) {
  .announcement {
    flex-direction: column;
    gap: 4px;
  }

  .nav-links,
  .icon-link {
    display: none;
  }

  .brand span {
    display: none;
  }

  .hero-shop,
  .section {
    width: min(100% - 24px, var(--max));
  }

  .category-grid,
  .product-grid,
  .service-band {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual {
    display: block;
  }

  .hero-logo-card {
    margin: 0 auto;
  }

  .footer {
    display: block;
  }

  .footer nav {
    justify-content: flex-start;
    margin-top: 18px;
  }
}
