:root {
  --bg: #f4efe7;
  --bg-soft: #f7f3ed;
  --surface: rgba(255, 255, 255, 0.42);
  --surface-strong: rgba(255, 251, 246, 0.8);
  --ink: #171513;
  --muted: #6e655b;
  --muted-strong: #4d453d;
  --line: rgba(23, 21, 19, 0.09);
  --line-soft: rgba(23, 21, 19, 0.05);
  --accent: #e7643f;
  --accent-soft: rgba(231, 100, 63, 0.1);
  --shadow-soft: 0 28px 80px rgba(43, 33, 24, 0.06);
  --radius-xl: 48px;
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 999px;
  --content-width: min(1460px, calc(100vw - 84px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "SF Pro Display", "Helvetica Neue", "Avenir Next", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 34%),
    radial-gradient(circle at right 12%, rgba(231, 100, 63, 0.1), transparent 26%),
    linear-gradient(180deg, #f7f2eb 0%, #f2ece2 100%);
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(92px);
  opacity: 0.24;
  z-index: -1;
}

.site-shell::before {
  top: -14rem;
  right: -11rem;
  background: rgba(255, 195, 174, 0.95);
}

.site-shell::after {
  bottom: -14rem;
  left: -11rem;
  background: rgba(220, 209, 191, 0.9);
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 22px 0 18px;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 231, 0.72);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 1.06rem;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-pill,
.cart-pill,
.button-primary,
.button-secondary,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.ghost-pill,
.button-secondary,
.filter-chip {
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 0 0 1px rgba(23, 21, 19, 0.08);
}

.cart-pill {
  background: var(--ink);
  color: #fff8ef;
  box-shadow: 0 18px 36px rgba(23, 21, 19, 0.12);
}

.cart-pill span {
  display: inline-flex;
  min-width: 2.2rem;
  justify-content: center;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button-primary {
  background: var(--accent);
  color: #fffaf5;
  box-shadow: 0 22px 34px rgba(231, 100, 63, 0.18);
}

.button-secondary.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff6ee;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.ghost-pill:hover,
.cart-pill:hover,
.button-primary:hover,
.button-secondary:hover,
.filter-chip:hover {
  transform: translateY(-2px);
}

.hero,
.catalog-hero,
.section {
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 88px;
  align-items: start;
}

.hero-copy,
.hero-panel,
.editorial-card,
.path-card,
.bento-card,
.benefit-card,
.process-card,
.detail-card,
.sidebar-card,
.cta-banner,
.product-summary,
.product-stage,
.thumb-card {
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-copy {
  padding-top: 12px;
}

.eyebrow,
.panel-kicker,
.footer-label,
.sidebar-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.eyebrow::before,
.panel-kicker::before,
.footer-label::before,
.sidebar-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(231, 100, 63, 0.12);
}

.hero-copy h1,
.page-hero h1,
.page-hero-compact h1,
.product-summary h1 {
  margin: 18px 0 24px;
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.8vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.catalog-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(2.6rem, 4.6vw, 4.5rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.hero-copy h1 em,
.catalog-hero h1 em,
.page-hero h1 em,
.page-hero-compact h1 em {
  color: var(--accent);
  font-style: normal;
}

.lead,
.section-title-row p,
.catalog-intro p,
.editorial-card p,
.path-card p,
.benefit-card p,
.process-card p,
.detail-card p,
.cta-banner p,
.product-summary .lead,
.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.hero-copy .lead {
  max-width: 40rem;
}

.hero-actions-group,
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel {
  display: grid;
  gap: 30px;
  align-content: start;
  padding-top: 10px;
}

.hero-highlight {
  display: grid;
  gap: 24px;
}

.highlight-media,
.product-media,
.product-stage,
.thumb-card,
.media-card,
.bento-card.image {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.94), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(246, 239, 228, 0.9));
  box-shadow: var(--shadow-soft);
}

.highlight-media {
  display: grid;
  place-items: center;
  min-height: 24rem;
  padding: 28px;
}

.highlight-media img {
  width: min(100%, 26rem);
}

.highlight-text h2,
.section-title-row h2,
.editorial-card h2,
.path-card h2,
.bento-card h2,
.benefit-card h2,
.process-card h2,
.detail-card h2,
.cta-banner h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.05em;
}

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

.meta-line {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-row,
.product-price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.price-row strong,
.product-price-line strong {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.price-row span,
.product-price-line span {
  color: var(--muted);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.metrics-grid article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.metrics-grid strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.metrics-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.category-ribbon {
  padding: 18px 0 42px;
}

.section-heading,
.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading span,
.section-heading a {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-heading a {
  color: var(--ink);
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 20px;
}

.category-cloud a {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: rgba(23, 21, 19, 0.88);
  transition: color 180ms ease, transform 180ms ease;
}

.category-cloud a.is-active,
.category-cloud a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.category-cloud-large {
  margin-top: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.7fr 0.88fr;
  gap: 56px;
  align-items: start;
}

.editorial-card {
  padding: 0;
}

.editorial-card-large h2 {
  max-width: 13ch;
}

.accent-card {
  align-self: end;
  padding: 34px 36px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 232, 224, 0.92), rgba(255, 244, 239, 0.9));
}

.accent-chip {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-strong);
}

.media-card {
  display: grid;
  place-items: center;
  min-height: 28rem;
  padding: 18px;
}

.media-card img {
  width: min(100%, 21rem);
}

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

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.section-title-row {
  margin-bottom: 38px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
  background: transparent;
  border: 0;
  overflow: visible;
  border-radius: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  background: transparent;
  transition: transform 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 24rem;
  padding: 30px;
}

.product-media img {
  width: min(100%, 20rem);
}

.product-meta {
  display: grid;
  gap: 10px;
  padding: 20px 8px 0;
}

.product-meta h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.product-meta p {
  margin: 0;
  font-size: 1.05rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tag.muted {
  background: rgba(23, 21, 19, 0.06);
  color: var(--muted);
}

.split-panels,
.benefit-grid,
.detail-grid {
  display: grid;
  gap: 56px;
}

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

.path-card,
.benefit-card,
.detail-card,
.cta-banner,
.process-card,
.sidebar-card,
.bento-card {
  padding: 0;
}

.path-card h2,
.benefit-card h2,
.detail-card h2,
.process-card h2 {
  max-width: 14ch;
}

.path-card.dark,
.cta-banner-dark {
  padding: 42px 44px;
  color: #fdf7ef;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #1c1917, #2a241e);
  box-shadow: 0 34px 72px rgba(18, 14, 11, 0.14);
}

.path-card.dark p,
.cta-banner-dark p,
.path-card.dark .eyebrow,
.cta-banner-dark .eyebrow {
  color: rgba(253, 247, 239, 0.76);
}

.path-card.dark .eyebrow::before,
.cta-banner-dark .eyebrow::before {
  box-shadow: 0 0 0 6px rgba(231, 100, 63, 0.18);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 70px;
  align-items: start;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 30px;
}

.sidebar-card {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.sidebar-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-chip {
  cursor: pointer;
  color: var(--muted);
}

.filter-chip.is-active {
  background: var(--ink);
  box-shadow: none;
  color: #fff8ef;
}

.catalog-grid .product-card.is-hidden {
  display: none;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 72px;
  align-items: start;
}

.gallery-column {
  display: grid;
  gap: 18px;
}

.product-stage {
  min-height: 40rem;
  display: grid;
  place-items: center;
  padding: 34px;
}

.product-stage img {
  width: min(100%, 34rem);
}

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

.thumb-card {
  min-height: 12rem;
  display: grid;
  place-items: center;
  padding: 18px;
}

.thumb-card img {
  width: min(100%, 10rem);
}

.product-summary {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.product-summary h1 {
  max-width: none;
  font-size: clamp(2.5rem, 4.4vw, 4.3rem);
  margin: 0;
}

.info-stack {
  display: grid;
  gap: 0;
  margin-top: 6px;
}

.info-stack article {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.info-stack span {
  color: var(--muted);
}

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

.detail-card {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.detail-card-wide {
  grid-column: 1 / -1;
}

.spec-grid,
.service-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.spec-grid div,
.service-grid div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.spec-grid span,
.service-grid p,
.process-card p,
.benefit-card p {
  color: var(--muted);
}

.spec-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.04rem;
  line-height: 1.5;
}

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

.service-grid strong,
.process-card strong {
  display: inline-flex;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--accent);
}

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

.process-card,
.benefit-card,
.bento-card:not(.image) {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.process-card h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.page-hero,
.page-hero-compact {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: end;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.bento-card.image {
  display: grid;
  place-items: center;
  min-height: 26rem;
  padding: 20px;
}

.bento-card.image img {
  width: min(100%, 20rem);
}

.bento-card.wide {
  grid-column: span 2;
}

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

.cta-banner {
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  align-items: end;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cta-banner-dark {
  border-top: 0;
}

.site-footer {
  padding: 58px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid a {
  display: block;
  margin-top: 10px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ink) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  :root {
    --content-width: min(100vw - 56px, 100%);
  }

  .hero-grid,
  .catalog-hero-grid,
  .product-layout,
  .page-hero,
  .page-hero-compact,
  .cta-banner,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar,
  .product-summary {
    position: static;
  }

  .editorial-grid,
  .benefit-grid,
  .detail-grid,
  .service-grid,
  .process-grid,
  .bento-grid,
  .split-panels,
  .footer-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .catalog-hero-grid,
  .product-layout,
  .page-hero,
  .page-hero-compact,
  .editorial-grid,
  .detail-grid,
  .benefit-grid,
  .split-panels {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  :root {
    --content-width: min(100vw - 32px, 100%);
  }

  .site-header {
    position: static;
    padding: 16px 0 12px;
  }

  .topbar,
  .main-nav,
  .header-actions,
  .section-heading,
  .section-title-row,
  .cta-banner,
  .price-row,
  .product-price-line,
  .info-stack article {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 14px;
  }

  .hero,
  .catalog-hero,
  .section {
    padding: 56px 0 48px;
  }

  .hero-copy h1,
  .page-hero h1,
  .page-hero-compact h1,
  .product-summary h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    max-width: none;
  }

  .catalog-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .metrics-grid,
  .editorial-grid,
  .benefit-grid,
  .detail-grid,
  .service-grid,
  .process-grid,
  .bento-grid,
  .split-panels,
  .footer-grid,
  .product-grid,
  .thumb-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .product-media,
  .product-stage,
  .highlight-media {
    min-height: 20rem;
  }

  .product-stage,
  .highlight-media,
  .product-media,
  .media-card,
  .bento-card.image {
    border-radius: 34px;
  }

  .category-cloud a {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .path-card.dark,
  .cta-banner-dark,
  .accent-card {
    padding: 28px;
  }
}
