* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: only light;
  --bg: #f5f1ea;
  --bg-dark: #1b1a16;
  --text: #1f1b16;
  --text-soft: #5d5448;
  --accent: #c5671f;
  --accent-dark: #8e4516;
  --accent-soft: #f1d1b2;
  --pine: #2a3c35;
  --sun: #f1c16b;
  --cream: #fffaf3;
  --slate: #2d2a25;
  --border: #e5d9c9;
  --shadow: 0 22px 50px rgba(26, 22, 17, 0.18);
  --radius: 20px;
  --page-max: 1200px;
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg) 40%, #efe2d0 100%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background: radial-gradient(circle at 15% 12%, rgba(197, 103, 31, 0.16), transparent 42%),
    radial-gradient(circle at 82% 8%, rgba(42, 60, 53, 0.14), transparent 45%),
    radial-gradient(circle at 70% 78%, rgba(241, 193, 107, 0.2), transparent 50%);
}

body::after {
  background-image: linear-gradient(transparent 0%, transparent 96%, rgba(28, 24, 18, 0.08) 100%),
    linear-gradient(90deg, transparent 0%, transparent 96%, rgba(28, 24, 18, 0.08) 100%);
  background-size: 130px 130px;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 235, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(28, 24, 18, 0.08);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 6vw;
  font-size: 0.85rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Fraunces", "Times New Roman", serif;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  font-size: 1.25rem;
  display: block;
}

.brand small {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav__toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #d97b32);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 12px 30px rgba(197, 103, 31, 0.25);
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 16px 35px rgba(197, 103, 31, 0.3);
}

.button:active {
  transform: translateY(0);
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  box-shadow: none;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: rgba(197, 103, 31, 0.25);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.button--ghost:hover {
  background: #fff;
}

main {
  flex: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 70px 6vw 50px;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 233, 220, 0.92));
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(197, 103, 31, 0.35), transparent 70%);
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(42, 60, 53, 0.3), transparent 70%);
  opacity: 0.6;
}

.hero__content,
.hero__media {
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.7rem, 3.6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero__badges div {
  background: var(--cream);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.hero__badges strong {
  display: block;
  font-size: 1.2rem;
}

.hero__badges span {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero__media {
  display: grid;
  gap: 20px;
}

.hero__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(29, 27, 22, 0.9), rgba(29, 27, 22, 0));
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  font-size: 0.85rem;
}

.hero__overlay strong {
  display: block;
  font-size: 1rem;
}

.hero__note {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 25px rgba(28, 24, 18, 0.08);
}

.section {
  padding: 60px 6vw;
  position: relative;
}

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

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

.section__header {
  max-width: 640px;
  margin-bottom: 32px;
}

.section__header h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  margin-bottom: 12px;
  color: var(--pine);
}

.section__header p {
  color: var(--text-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.grid--catalog {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: stretch;
}

.grid--tight {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(34, 29, 22, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog__controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(34, 29, 22, 0.08);
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.field {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  font-weight: 600;
}

.field input,
.field select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 103, 31, 0.18);
}

.catalog__status {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 12px 0 20px;
}

.catalog__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: 26px;
  align-items: start;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(32, 27, 20, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(32, 27, 20, 0.12);
}

.product-card__media {
  background: linear-gradient(135deg, #f7e7d6, #f1d2b7);
  padding: 18px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-card__placeholder {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.6);
}

.product-card__body {
  padding: 18px 18px 0;
  display: grid;
  gap: 10px;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.product-card__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.product-card__meta {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.product-card__footer {
  margin-top: auto;
  padding: 16px 18px 18px;
  display: grid;
  gap: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.price--compare {
  font-size: 0.9rem;
  color: var(--text-soft);
  text-decoration: line-through;
  margin-left: 8px;
}

.product-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-card__actions button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--cream);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-card__actions button:hover {
  border-color: rgba(197, 103, 31, 0.35);
  background: rgba(241, 209, 178, 0.6);
}

.cart {
  position: sticky;
  top: 120px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf4ea 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 16px;
}

.cart__header h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.cart__header p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cart__empty {
  padding: 18px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cart__items {
  list-style: none;
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cart-item__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__title {
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-item__sku {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__controls button {
  border: 1px solid var(--border);
  background: var(--cream);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 600;
  cursor: pointer;
}

.cart__summary {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.cart__summary div {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.cart__actions {
  display: grid;
  gap: 10px;
}

.cart__note {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(34, 29, 22, 0.12);
}

.card h3,
.service h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p,
.service p {
  color: var(--text-soft);
}

.section--accent {
  background: linear-gradient(120deg, #fff1de 0%, #f2ddc6 100%);
}

.service {
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(196, 106, 42, 0.2);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.callout {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.callout div {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.callout strong {
  display: block;
}

.stats {
  display: grid;
  gap: 16px;
}

.stats div {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 25px rgba(30, 26, 20, 0.08);
}

.stats span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 6px;
}

.section--dark {
  background: linear-gradient(160deg, #1a1916 0%, #2b2620 100%);
  color: #fff;
}

.section--dark .section__header p,
.section--dark span {
  color: rgba(255, 255, 255, 0.7);
}

.quote {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote p {
  font-size: 1rem;
  margin-bottom: 14px;
}

.cta {
  background: #fff;
  border-radius: 26px;
  padding: 30px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(32, 28, 22, 0.12);
}

.cta h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin-bottom: 8px;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  background: #13110f;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  padding: 40px 6vw;
}

.footer span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    right: 6vw;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.2s ease;
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__toggle {
    display: inline-flex;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cart {
    position: static;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 40px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout {
    flex-direction: column;
  }
}
