:root {
  --ink: #213026;
  --muted: #69746b;
  --paper: #fffdf7;
  --surface: #ffffff;
  --leaf: #3f6f49;
  --leaf-deep: #203f2e;
  --rose: #ad5363;
  --clay: #9a6444;
  --gold: #bd9237;
  --sage: #edf4e9;
  --blush: #fff3ef;
  --line: rgba(33, 48, 38, 0.13);
  --shadow: 0 24px 80px rgba(34, 47, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.hero-actions,
.product-bottom,
.modal-actions,
.order-total {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 250px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: conic-gradient(from 20deg, var(--leaf-deep), var(--leaf), var(--rose), var(--leaf-deep));
  font-size: 14px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 900;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--leaf-deep);
}

.nav a.active {
  color: var(--leaf-deep);
}

.header-actions {
  gap: 8px;
}

.icon-btn,
.cart-trigger {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.icon-btn {
  width: 42px;
}

.cart-trigger {
  padding: 0 12px;
  color: #fff;
  background: var(--leaf-deep);
}

.cart-trigger span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  place-items: center;
  border-radius: 999px;
  color: var(--leaf-deep);
  background: #fff;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 76px) 44px;
  background:
    linear-gradient(110deg, rgba(255, 253, 247, 1) 0%, rgba(255, 253, 247, 0.95) 42%, rgba(237, 244, 233, 0.85) 100%),
    linear-gradient(180deg, rgba(255, 243, 239, 0.8), transparent 48%);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.hero-text,
.section-heading p,
.quiz-section p,
.faq-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--leaf-deep);
  box-shadow: 0 12px 28px rgba(32, 63, 46, 0.22);
}

.btn-primary:hover {
  background: #183525;
}

.btn-secondary {
  color: var(--leaf-deep);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: min(68vh, 680px);
  min-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: min(210px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 44px rgba(34, 47, 38, 0.18);
  backdrop-filter: blur(16px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-card strong {
  display: block;
  margin: 4px 0;
  color: var(--clay);
  font-size: 42px;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff8eb;
}

.stats div {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  margin-bottom: 4px;
  color: var(--leaf-deep);
  font-size: 30px;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section,
.combo-section,
.quiz-section,
.guide-section,
.faq-section,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.anchor-target {
  display: block;
  height: 1px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(230px, 290px) 1fr;
  gap: 22px;
  align-items: start;
}

.shop-tools {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(34, 47, 38, 0.07);
}

.search-box,
.filter-group,
.delivery-box,
.quiz-panel label {
  display: grid;
  gap: 10px;
}

.search-box span,
.filter-group > span,
.delivery-box span,
.quiz-panel label span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.search-box input,
.search-box select,
.delivery-box select,
.quiz-panel select,
.modal-actions select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn,
.concern-btn {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover,
.concern-btn.active,
.concern-btn:hover {
  color: #fff;
  border-color: var(--leaf);
  background: var(--leaf);
}

.mini-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: var(--sage);
}

.mini-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  min-height: 390px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  border-color: rgba(63, 111, 73, 0.44);
  box-shadow: 0 18px 46px rgba(34, 47, 38, 0.1);
  transform: translateY(-2px);
}

.favorite-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  cursor: pointer;
}

.favorite-btn.active {
  color: #fff;
  background: var(--rose);
}

.product-image,
.combo-image,
.guide-grid img,
.modal-card > img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  background: var(--sage);
}

.product-image {
  height: 185px;
  margin-bottom: 14px;
}

.real-product-image {
  object-fit: contain;
  background: #fff;
}

.inner-hero img.real-product-image {
  object-fit: contain;
  background: #fff;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.category,
.tags span {
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--leaf-deep);
  background: var(--sage);
  font-size: 12px;
  font-weight: 900;
}

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

.product-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-bottom {
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--clay);
  font-size: 24px;
  font-weight: 950;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.add-btn,
.combo-add,
.copy-order,
.clear-order,
.quick-view,
.qty-controls button {
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.add-btn {
  min-width: 72px;
  min-height: 38px;
  color: #fff;
  background: var(--leaf);
}

.add-btn:hover {
  background: var(--leaf-deep);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: var(--leaf-deep);
  background: #fff;
  font-size: 14px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  text-align: center;
}

.combo-section {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-deep), #26362b 56%, #7a3f4e);
}

.combo-section .eyebrow {
  color: #f7d2c6;
}

.combo-grid,
.guide-grid,
.recommendation-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.combo-card,
.guide-grid article,
.recommend-card,
.contact-card,
.email-card {
  border-radius: 8px;
}

.combo-card {
  display: grid;
  min-height: 370px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.combo-image {
  height: 165px;
  margin-bottom: 16px;
}

.combo-card span {
  margin-bottom: 12px;
  color: #f7d48b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.combo-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.combo-add {
  align-self: end;
  min-height: 42px;
  color: var(--leaf-deep);
  background: #fff7e6;
}

.quiz-section {
  background: var(--sage);
}

.quiz-panel {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  max-width: 920px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.recommendation-grid {
  margin-top: 20px;
}

.recommend-card {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.recommend-card img {
  width: 82px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.recommend-card strong,
.recommend-card span {
  display: block;
}

.recommend-card span {
  color: var(--muted);
  font-size: 13px;
}

.guide-section {
  background: #fff;
}

.guide-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.guide-grid img {
  height: 170px;
  margin-bottom: 16px;
}

.guide-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  font-size: 15px;
}

.contact-section {
  background: var(--blush);
}

.contact-card,
.email-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(34, 47, 38, 0.08);
}

.contact-card.highlight {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--leaf-deep), var(--leaf));
}

.contact-card span,
.email-card > span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card.highlight span {
  color: #f7d48b;
}

.contact-card strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.email-list {
  display: grid;
  gap: 10px;
}

.email-list a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--leaf-deep);
  background: #fff;
  font-size: 14px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.cart-drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.cart-drawer.open,
.modal.open {
  display: block;
}

.drawer-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 31, 25, 0.5);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  gap: 14px;
  width: min(460px, 100%);
  height: 100%;
  padding: 22px;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.2);
  overflow: auto;
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.drawer-header h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.order-items {
  display: grid;
  gap: 10px;
  max-height: 45vh;
  overflow: auto;
}

.empty-order {
  padding: 18px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}

.order-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.order-row img {
  width: 64px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.order-row strong,
.order-row span {
  display: block;
}

.order-row strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.order-row span {
  color: var(--muted);
  font-size: 13px;
}

.qty-controls {
  display: grid;
  grid-template-columns: 32px 28px 32px;
  align-items: center;
  gap: 4px;
}

.qty-controls button {
  width: 32px;
  height: 32px;
  background: var(--sage);
}

.qty-controls span {
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.order-total {
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--line);
}

.order-total span,
.discount-note {
  color: var(--muted);
  font-weight: 800;
}

.order-total strong {
  color: var(--clay);
  font-size: 30px;
}

.discount-note {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

.copy-order,
.clear-order {
  min-height: 42px;
  color: var(--muted);
  background: #fff;
}

.modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 24px;
  width: min(940px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.modal-card > img {
  height: 100%;
  min-height: 390px;
  object-fit: contain;
}

.modal-content {
  padding: 18px 12px 8px 0;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.detail-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list strong {
  margin-bottom: 5px;
}

.detail-list span,
.safety-note {
  color: var(--muted);
  line-height: 1.55;
}

.modal-actions {
  gap: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 76px);
  background: linear-gradient(110deg, #fffdf7, #edf4e9);
}

.inner-hero > div {
  max-width: 760px;
}

.inner-hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.inner-hero img {
  width: 100%;
  max-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.shop-page-tools {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 12px;
  margin-bottom: 22px;
}

.shop-page-tools input,
.shop-page-tools select {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-detail-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.detail-page-grid,
.story-grid,
.policy-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 76px);
}

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

.detail-page-grid article,
.story-grid article,
.policy-layout article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(34, 47, 38, 0.07);
}

.detail-page-grid span,
.story-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-page-grid strong {
  color: var(--clay);
  font-size: 30px;
}

.detail-page-grid p,
.story-grid p,
.policy-layout p {
  color: var(--muted);
  line-height: 1.7;
}

.inner-contact {
  padding-top: clamp(42px, 6vw, 76px);
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .email-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header,
  .footer,
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .shop-layout,
  .modal-card,
  .inner-hero,
  .shop-page-tools,
  .detail-page-grid,
  .story-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    height: 460px;
    min-height: 0;
  }

  .shop-tools {
    position: static;
  }

  .stats,
  .combo-grid,
  .guide-grid,
  .recommendation-grid,
  .contact-layout,
  .quiz-panel {
    grid-template-columns: 1fr;
  }

  .modal-card > img {
    min-height: 260px;
    height: 300px;
  }

  .modal-content {
    padding: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .hero-actions,
  .modal-actions {
    display: grid;
  }

  .hero-visual img {
    height: 330px;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

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

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .order-row {
    grid-template-columns: 54px 1fr;
  }

  .qty-controls {
    grid-column: 1 / -1;
    justify-content: end;
  }
}
