:root {
  color-scheme: light;
  --ink: #17241f;
  --muted: #68716a;
  --deep: #20392f;
  --leaf: #2f6b50;
  --rose: #8c3d3b;
  --clay: #b96944;
  --gold: #c9984a;
  --paper: #fbf8f1;
  --warm: #efe3d2;
  --mist: #e8efe6;
  --line: rgba(23, 36, 31, 0.14);
  --shadow: 0 20px 50px rgba(23, 36, 31, 0.16);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body.cart-open,
body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
button,
input,
textarea {
  overflow-wrap: anywhere;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.notice-bar {
  min-height: 38px;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 56px);
  align-items: center;
  padding: 8px 18px;
  background: var(--deep);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.brand-lockup strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}

.brand-lockup small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.8vw, 34px);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--rose);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.bag-button,
.icon-button {
  border: 1px solid var(--line);
  background: #fffaf2;
  color: var(--ink);
  border-radius: var(--radius);
}

.bag-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.bag-button strong {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 0.78rem;
}

.bag-icon {
  width: 14px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-top: 0;
  position: relative;
}

.bag-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -7px;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.hero {
  min-height: calc(100vh - var(--header-height) - 38px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 560px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 86px);
  background: linear-gradient(135deg, rgba(232, 239, 230, 0.82), rgba(251, 248, 241, 0.95));
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
  font-size: 1.4rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.hero-actions,
.contact-actions,
.product-actions,
.cms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--deep);
  color: #fff;
}

.button.secondary {
  background: var(--rose);
  color: #fff;
}

.button.ghost {
  border-color: var(--deep);
  color: var(--deep);
  background: transparent;
}

.button.full {
  width: 100%;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--deep);
  font-weight: 700;
  padding: 8px 0;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.trust-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-band span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

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

.concern-card,
.ingredient-card,
.faq-item,
.quote-panel,
.cart-panel,
.modal-card {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.concern-card,
.ingredient-card {
  padding: 22px;
}

.concern-card h3,
.ingredient-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.concern-card p,
.ingredient-card p,
.product-summary,
.about-copy p,
.contact-section p,
.faq-item p,
.step p,
.modal-card p,
.policy-list dd {
  color: var(--muted);
}

.shop-section {
  background: var(--mist);
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.shop-toolbar .section-heading {
  margin: 0;
  text-align: left;
}

.shop-controls {
  display: grid;
  gap: 14px;
}

.search-label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf2;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

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

.filter-tabs button {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
  color: var(--deep);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.88rem;
}

.filter-tabs button.active {
  background: var(--deep);
  color: #fff;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-image-button {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  background: var(--warm);
  overflow: hidden;
}

.product-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.product-category {
  margin: 0;
  color: var(--rose);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-summary {
  margin: 0;
  min-height: 3rem;
}

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

.price {
  font-weight: 800;
}

.stock {
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
}

.ritual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.ritual-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--deep);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
}

.ingredient-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.ingredient-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--deep);
  color: #fff;
}

.about-section .eyebrow,
.about-section p,
.about-section dd {
  color: rgba(255, 255, 255, 0.72);
}

.policy-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.policy-list div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.policy-list dt {
  font-weight: 800;
}

.policy-list dd {
  margin: 4px 0 0;
}

.quote-panel {
  align-self: start;
  padding: 28px;
  color: var(--ink);
}

.quote-panel blockquote {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.quote-panel cite {
  color: var(--rose);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.faq-item p {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--warm);
}

.contact-section h2 {
  max-width: 720px;
}

.cart-drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer {
  background: rgba(23, 36, 31, 0.44);
}

.cart-drawer.open,
.modal.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(460px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 0;
  transform: translateX(100%);
  transition: transform 220ms ease;
  overflow: auto;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 14px;
  padding: 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.checkout-note {
  margin: 0;
  color: var(--rose);
  font-size: 0.92rem;
  font-weight: 800;
}

.modal {
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 36, 31, 0.58);
}

.modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 24px;
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.modal.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
}

.product-detail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  background: #1f8f59;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  background: #fffaf2;
}

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

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

  .hero-media {
    min-height: 52vh;
  }

  .hero-copy {
    min-height: 42vh;
  }
}

@media (max-width: 860px) {
  .notice-bar {
    justify-content: start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .brand-lockup {
    min-width: 0;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-height) + 38px) 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .menu-toggle {
    display: block;
  }

  .product-grid,
  .concern-grid,
  .ingredient-grid,
  .shop-toolbar,
  .ritual-section,
  .about-section,
  .contact-section,
  .product-detail {
    grid-template-columns: 1fr;
  }

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

  .trust-band span:nth-child(2n) {
    border-right: 0;
  }

  .contact-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .brand-lockup strong {
    font-size: 0.95rem;
  }

  .brand-lockup small,
  .bag-button span:not(.bag-icon) {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.3rem);
  }

  .hero-copy,
  .section {
    padding-inline: 18px;
  }

  .hero-actions,
  .contact-actions,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button,
  .product-actions .button {
    width: 100%;
  }

  .hero-media {
    min-height: 44vh;
  }

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

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-band span {
    border-right: 0;
  }
}
