:root {
  --bg: #f5efe3;
  --bg-deep: #e3d5b8;
  --surface: rgba(255, 249, 238, 0.72);
  --surface-strong: #fff8ec;
  --text: #2f2416;
  --text-soft: #6b5842;
  --accent: #c96f2d;
  --accent-deep: #a95218;
  --line: rgba(72, 49, 20, 0.1);
  --shadow: 0 24px 60px rgba(82, 48, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 232, 178, 0.95), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(232, 168, 104, 0.35), transparent 18%),
    linear-gradient(160deg, #f8f1e4 0%, #f2e5cf 52%, #ead7b1 100%);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea {
  cursor: none;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(224, 203, 255, 0.36) 58%, rgba(109, 67, 127, 0.16) 100%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 30px rgba(109, 67, 127, 0.16);
  backdrop-filter: blur(7px);
  transition:
    opacity 180ms ease,
    width 220ms ease,
    height 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.has-custom-cursor .cursor-glow {
  opacity: 1;
}

.cursor-glow.is-hovering {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(239, 222, 255, 0.42) 60%, rgba(109, 67, 127, 0.2) 100%);
  box-shadow: 0 0 36px rgba(109, 67, 127, 0.22);
}

.cursor-glow.is-active {
  width: 22px;
  height: 22px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 18px 22px;
  position: sticky;
  top: 16px;
  z-index: 10;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand,
.section-heading h2,
.hero h1,
.showcase-card h2,
.featured-panel h2,
.aside-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

.brand img {
  display: block;
  width: 170px;
  max-width: min(28vw, 170px);
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--text-soft);
}

.nav a:hover,
.section-heading a:hover {
  color: var(--accent-deep);
}

.nav-cta,
.button,
.product-footer button,
.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-cta,
.button-primary,
.product-footer button,
.product-action {
  background: var(--text);
  color: #fff8ef;
}

.nav-cta {
  padding: 12px 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: 56px 0 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  max-width: 10ch;
}

.hero-text,
.story p,
.featured-panel > p,
.product-copy > p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 54ch;
  margin: 20px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button:hover,
.nav-cta:hover,
.product-footer button:hover,
.product-action:hover {
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(47, 36, 22, 0.14);
  background: rgba(255, 255, 255, 0.25);
}

.hero-metrics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
}

.hero-metrics li {
  min-width: 150px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.hero-metrics span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-showcase {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: end;
}

.sun-orb {
  position: absolute;
  width: min(28vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  top: 28px;
  left: 20px;
  background:
    radial-gradient(circle at 35% 35%, #f0e3ff 0 12%, #c8a2dd 28%, #6d437f 62%, rgba(109, 67, 127, 0.24) 76%, transparent 77%);
  filter: blur(0.5px);
  box-shadow: 0 0 80px rgba(109, 67, 127, 0.22);
  animation: drift 8s ease-in-out infinite;
}

.showcase-card {
  position: relative;
  border: 1px solid rgba(111, 76, 31, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(247, 235, 213, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.showcase-card-large {
  width: min(100%, 430px);
  padding: 28px;
  margin-top: 84px;
}

.showcase-card-small {
  width: min(76%, 300px);
  padding: 20px;
  margin-top: 18px;
  margin-right: 38px;
}

.card-tag,
.mini-label,
.pill,
.product-category,
.aside-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-tag,
.mini-label,
.pill,
.aside-label {
  padding: 8px 12px;
}

.card-tag,
.mini-label,
.aside-label {
  color: var(--accent-deep);
  background: rgba(243, 171, 110, 0.16);
}

.showcase-card h2,
.section-heading h2,
.featured-panel h2 {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.showcase-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.price-row,
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-row {
  margin-top: 22px;
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
}

.pill {
  color: var(--text);
  background: rgba(47, 36, 22, 0.08);
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 12px 0 26px;
}

.promo-strip p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.6);
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
}

.catalog,
.featured,
.story {
  margin-top: 34px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading h2,
.section-heading a,
.section-heading .eyebrow {
  margin-top: 0;
  margin-bottom: 0;
}

.section-heading a {
  color: var(--text-soft);
  font-weight: 700;
}

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

.product-card,
.featured-panel,
.aside-card,
.story {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.product-card {
  overflow: hidden;
  border-radius: 24px;
}

.product-visual {
  min-height: 230px;
  background-size: cover;
  background-position: center;
}

.visual-1 {
  background:
    radial-gradient(circle at 38% 30%, #ead9f7 0 12%, transparent 13%),
    linear-gradient(135deg, #3b2546, #8a6aa0 55%, #d3b36d 100%);
}

.visual-2 {
  background:
    radial-gradient(circle at 50% 36%, rgba(231, 211, 246, 0.92) 0 15%, transparent 16%),
    linear-gradient(160deg, #4d2f5d, #b59bc6 48%, #d0ab58 100%);
}

.visual-3 {
  background:
    linear-gradient(145deg, rgba(238, 226, 247, 0.88), rgba(110, 67, 132, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 12px, rgba(86, 50, 106, 0.12) 12px 24px);
}

.visual-4 {
  background:
    radial-gradient(circle at 48% 28%, rgba(236, 223, 246, 0.95) 0 12%, transparent 13%),
    linear-gradient(180deg, #422752, #7a4d8f 62%, #d7b260 100%);
}

.product-copy {
  padding: 20px;
}

.product-category {
  padding: 0;
  background: none;
  color: var(--accent-deep);
  margin: 0 0 8px;
}

.product-copy h3,
.aside-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.product-copy > p {
  min-height: 82px;
  margin: 12px 0 18px;
}

.product-footer button {
  border: none;
  padding: 12px 16px;
}

.product-action {
  border: none;
  padding: 12px 16px;
  font-weight: 700;
}

.featured {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.featured-panel,
.aside-card,
.story {
  border-radius: 28px;
}

.featured-panel {
  padding: 30px;
}

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

.feature-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
}

.featured-aside {
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 24px;
}

.aside-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.aside-card h3 {
  margin: 16px 0 8px;
  font-size: 3rem;
}

.story {
  padding: 30px;
}

.inquiry-page {
  display: grid;
  gap: 34px;
}

.inquiry-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: 42px 0 0;
  align-items: center;
}

.inquiry-showcase {
  min-height: 320px;
}

.inquiry-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 30px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.field span {
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(72, 49, 20, 0.14);
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.7);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(122, 77, 143, 0.28);
  border-color: rgba(122, 77, 143, 0.45);
}

.field-full {
  grid-column: 1 / -1;
}

.inquiry-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(14px) scale(1.03);
  }
}

@media (max-width: 1024px) {
  .hero,
  .featured,
  .product-grid,
  .inquiry-hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: start;
  }

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

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

@media (max-width: 780px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .topbar,
  .nav,
  .section-heading,
  .promo-strip,
  .hero {
    display: grid;
  }

  .topbar {
    border-radius: 28px;
    padding: 18px;
    justify-content: start;
  }

  .brand img {
    width: min(170px, 100%);
    max-width: 100%;
  }

  .nav {
    grid-auto-flow: column;
    justify-content: start;
    gap: 16px;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .inquiry-hero,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 420px;
    justify-items: stretch;
  }

  .showcase-card-large,
  .showcase-card-small {
    width: 100%;
    margin-right: 0;
  }

  .promo-strip,
  .section-heading,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .product-grid {
    gap: 16px;
  }

  .hero-metrics {
    gap: 14px;
  }
}
