:root {
  color-scheme: only light;
  --amber: #c38b3a;
  --bamboo: #d7b37c;
  --leaf: #4b6a50;
  --soil: #2e2017;
  --sand: #f7f1e6;
  --clay: #f0e2cf;
  --ink: #1f160f;
  --ghost: rgba(46, 32, 23, 0.08);
  --shadow: 0 20px 40px rgba(34, 24, 16, 0.2);
}

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

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f7e9d3 0%, #f8f2ea 45%, #f4eadb 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(0,0,0,0.05)'/%3E%3Ccircle cx='45' cy='28' r='1' fill='rgba(0,0,0,0.04)'/%3E%3Ccircle cx='110' cy='120' r='1' fill='rgba(0,0,0,0.05)'/%3E%3Ccircle cx='90' cy='70' r='1' fill='rgba(0,0,0,0.03)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7vw;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 56px;
  height: 56px;
}

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(30, 20, 12, 0.25);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(46, 32, 23, 0.4);
  color: var(--ink);
  box-shadow: none;
}

.lang-toggle {
  display: flex;
  gap: 8px;
  background: var(--ghost);
  border-radius: 999px;
  padding: 6px;
}

.chip {
  background: transparent;
  border: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s ease;
}

.chip.active {
  background: var(--ink);
  color: var(--sand);
}

main {
  position: relative;
  z-index: 2;
}

section {
  padding: 80px 7vw;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding-top: 40px;
}

.hero-text {
  display: grid;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--leaf);
  font-weight: 700;
}

h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(31, 22, 15, 0.7);
}

.hero-visual {
  position: relative;
  height: 360px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.woven-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: repeating-linear-gradient(
      45deg,
      rgba(195, 139, 58, 0.25),
      rgba(195, 139, 58, 0.25) 10px,
      rgba(215, 179, 124, 0.3) 10px,
      rgba(215, 179, 124, 0.3) 20px
    ),
    linear-gradient(135deg, #f3debf, #e4c492);
  box-shadow: var(--shadow);
}

.woven-card.offset {
  inset: 18px;
  transform: rotate(-3deg);
  opacity: 0.7;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--sand);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.story-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}


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

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

.metric-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.metric-card h3 {
  font-size: 2rem;
  color: var(--leaf);
}

.map-card {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  background: var(--clay);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.map-visual {
  min-height: 180px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(75, 106, 80, 0.4), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(195, 139, 58, 0.4), transparent 55%),
    linear-gradient(135deg, #e9d2b4, #d8b284);
  position: relative;
  overflow: hidden;
}

.map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.4) 6px,
    rgba(255, 255, 255, 0.2) 6px,
    rgba(255, 255, 255, 0.2) 12px
  );
  opacity: 0.6;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(75, 106, 80, 0.18);
}

.dot-jakarta {
  top: 52%;
  left: 46%;
}

.dot-bandung {
  top: 56%;
  left: 50%;
}

.dot-surabaya {
  top: 54%;
  left: 62%;
}

.dot-denpasar {
  top: 66%;
  left: 70%;
}

.dot-medan {
  top: 30%;
  left: 34%;
}

.map-tags {
  margin-top: 12px;
  font-weight: 600;
  color: var(--leaf);
}

.product-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.product-image {
  background: linear-gradient(135deg, #e9d2b4, #d8b284);
  border-radius: 14px;
  height: 140px;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.4) 8px,
    rgba(255, 255, 255, 0.2) 8px,
    rgba(255, 255, 255, 0.2) 16px
  );
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.benefit {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--clay);
  box-shadow: var(--shadow);
  font-style: italic;
}

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

.gallery-item {
  background: linear-gradient(135deg, #e9d2b4, #d8b284);
  border-radius: 16px;
  height: 160px;
  overflow: hidden;
}

.gallery-item.tall {
  height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

details {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.contact-card {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  background: var(--ink);
  color: var(--sand);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cta-column {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.contact-note {
  color: rgba(247, 241, 230, 0.7);
  font-size: 0.9rem;
}

.site-footer {
  padding: 40px 7vw 60px;
  text-align: center;
  color: rgba(31, 22, 15, 0.6);
}

.shop-page,
.product-page,
.site-page {
  padding: 0;
}

.shop-hero {
  padding: 60px 7vw 24px;
}

.shop-hero-text {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.shop-grid {
  padding: 0 7vw 80px;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.products,
.woocommerce ul.products {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch;
}

.products li.product,
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 12px;
  text-align: left;
  float: none;
  width: auto;
  margin: 0;
}

.products li.product img,
.woocommerce ul.products li.product img {
  border-radius: 14px;
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.products li.product .price,
.woocommerce ul.products li.product .price {
  color: var(--leaf);
  font-weight: 700;
  margin: 0;
}

.products li.product .button,
.woocommerce ul.products li.product .button {
  background: var(--leaf);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-self: start;
}

.woocommerce ul.products li.product .woocommerce-Price-amount {
  font-weight: 700;
}

.woocommerce ul.products li.product .price del {
  opacity: 0.6;
  margin-right: 6px;
}

.woocommerce-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ghost);
  text-decoration: none;
  color: var(--ink);
}

.woocommerce-pagination .page-numbers .current {
  background: var(--ink);
  color: var(--sand);
}

.product-page {
  padding: 60px 7vw 80px;
}

.product-hero {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.product-summary h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.product-summary .price {
  color: var(--leaf);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 12px 0;
}

.product-summary .cart {
  margin: 18px 0;
}

.product-summary .button {
  background: var(--leaf);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
}

.product-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.woocommerce-product-gallery__wrapper {
  display: grid;
  gap: 12px;
}

.woocommerce-product-gallery__image {
  margin: 0;
}

.woocommerce-product-gallery .flex-control-nav {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.woocommerce-product-gallery .flex-control-nav li {
  list-style: none;
}

.woocommerce-product-gallery .flex-control-nav img {
  border-radius: 10px;
}

.product-details {
  margin-top: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 12px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.woocommerce-tabs ul.tabs li a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ghost);
  color: var(--ink);
  font-weight: 600;
}

.woocommerce-tabs ul.tabs li.active a {
  background: var(--ink);
  color: var(--sand);
}

.product-related {
  margin-top: 40px;
}

.product-related .products {
  margin-top: 16px;
}

.woocommerce .related,
.woocommerce .upsells {
  margin-top: 32px;
}

@media (max-width: 720px) {
  .product-toolbar {
    align-items: flex-start;
  }

  .product-page {
    padding: 40px 6vw 70px;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-visual {
    height: 280px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  section,
  .site-header,
  .hero-visual {
    animation: rise 0.8s ease both;
  }

  section:nth-of-type(2) {
    animation-delay: 0.1s;
  }

  section:nth-of-type(3) {
    animation-delay: 0.2s;
  }

  section:nth-of-type(4) {
    animation-delay: 0.3s;
  }

  section:nth-of-type(5) {
    animation-delay: 0.4s;
  }

  section:nth-of-type(6) {
    animation-delay: 0.5s;
  }

  section:nth-of-type(7) {
    animation-delay: 0.6s;
  }

  section:nth-of-type(8) {
    animation-delay: 0.7s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
