*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #faf7f2;
  --cream-light: #fdf9f5;
  --cream-dark: #f0ebe2;
  --dark: #2a2a2a;
  --dark-soft: #4a4a4a;
  --lavender: #c8a2c8;
  --lavender-light: #e8d5e8;
  --lavender-dark: #9b6e9b;
  --green-soft: #a8c898;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-display: "Shippori Mincho", serif;
  --font-body: "Noto Serif JP", serif;
  --font-accent: "Cormorant Garamond", serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--lavender) var(--cream-light);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--lavender-light),
    var(--lavender-dark)
  );
  border-radius: 10px;
  border: 1px solid var(--cream-light);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--lavender), var(--lavender-dark));
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 0 8px 48px;
}

.navbar-logo img {
  display: block;
  max-height: 56px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 18px 0;
}

.navbar-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 13px;
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.navbar-links a.active {
  font-weight: 600;
}

.navbar-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lavender-dark);
}

.navbar-links a:hover {
  color: var(--lavender-dark);
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 48px 18px 0;
}

.navbar-icons button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.navbar-icons button:hover {
  color: var(--lavender-dark);
}

/* ========== HERO ========== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.3;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero-title .em {
  color: var(--lavender-dark);
  font-style: normal;
}

.hero-desc {
  font-size: 14px;
  line-height: 2.1;
  color: var(--dark-soft);
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  background: var(--lavender-dark);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  width: fit-content;
  font-family: var(--font-body);
  letter-spacing: 1px;
}

.hero-btn:hover {
  background: #8a5c8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155, 110, 155, 0.3);
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-badge-tag {
  padding: 8px 16px;
  border: 1px solid var(--lavender-light);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 400;
  color: var(--dark-soft);
  letter-spacing: 0.5px;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: none;
}

.hero-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 100%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-organic-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 240px;
  height: auto;
  object-fit: contain;
  z-index: 3;
}

/* ========== BRANDS ========== */
.brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 80px;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.brand-pill {
  padding: 10px 28px;
  border: 1px solid var(--gray-light);
  border-radius: 24px;
  font-size: 12px;
  color: var(--dark-soft);
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: default;
}

.brand-pill:hover {
  border-color: var(--lavender-dark);
  color: var(--lavender-dark);
}

/* ========== CONCERNS (お悩み) — Showcase Layout ========== */
.concerns {
  padding: 60px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.concerns-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.concerns::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 242, 0.5) 0%,
    rgba(200, 162, 200, 0.12) 50%,
    rgba(250, 247, 242, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.concerns-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 2;
}

.concerns-float-1 {
  top: 30px;
  left: -60px;
  animation: floatSlow 22s ease-in-out infinite;
}

.concerns-float-2 {
  bottom: 40px;
  right: -30px;
  animation: floatSlow 26s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -15px) rotate(2deg);
  }

  50% {
    transform: translate(-5px, -20px) rotate(-1deg);
  }

  75% {
    transform: translate(12px, -8px) rotate(1.5deg);
  }
}

.concerns-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.concerns-header {
  text-align: center;
  margin-bottom: 40px;
}

.concerns-eyebrow {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
}

.concerns-question {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 3px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.concerns-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.concerns-divider span {
  width: 48px;
  height: 1px;
  background: var(--lavender-light);
}

/* === 3-Column Showcase Grid === */
.concerns-showcase {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 0;
  align-items: center;
  min-height: 420px;
  margin-bottom: 40px;
}

.concerns-col-left,
.concerns-col-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.concerns-col-left {
  padding-right: 32px;
}

.concerns-col-right {
  padding-left: 32px;
}

/* Individual concern items */
.c-item {
  position: relative;
}

.c-item.c-right {
  text-align: right;
}

.c-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.c-item.c-right .c-item-top {
  justify-content: flex-end;
}

.c-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-item-icon.winter {
  background: linear-gradient(135deg, #ede5f5, #ddd0ea);
}

.c-item-icon.face {
  background: linear-gradient(135deg, #f5e0e8, #ead0d8);
}

.c-item-icon.hand {
  background: linear-gradient(135deg, #e0e8f5, #d0d8ea);
}

.c-item-icon.heel {
  background: linear-gradient(135deg, #f5ecd8, #eadfc8);
}

.c-item-icon.baby {
  background: linear-gradient(135deg, #e0f0e8, #d0e8d8);
}

.c-item-num {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--lavender-dark);
  letter-spacing: 2px;
  font-weight: 500;
}

.c-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* Connecting lines */
.c-item-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--lavender-light),
    transparent
  );
  margin-top: 4px;
  position: relative;
}

.c-item-line::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender-light);
  position: absolute;
  top: -3px;
}

.c-item.c-right .c-item-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--lavender-light) 100%
  );
}

.c-item.c-right .c-item-line::after {
  right: 0;
}

.c-item:not(.c-right) .c-item-line {
  background: linear-gradient(
    90deg,
    var(--lavender-light) 0%,
    transparent 100%
  );
}

.c-item:not(.c-right) .c-item-line::after {
  left: 0;
}

/* === Center Column === */
.concerns-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Kanji reveal */
.reveal-kanji-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reveal-kanji-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(200, 162, 200, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.reveal-kanji-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
}

.reveal-kanji-ring-1 {
  width: 140px;
  height: 140px;
  border-color: rgba(200, 162, 200, 0.15);
}

.reveal-kanji-ring-2 {
  width: 190px;
  height: 190px;
  border-color: rgba(200, 162, 200, 0.08);
}

.reveal-kanji {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900;
  background: linear-gradient(
    160deg,
    var(--lavender-dark) 0%,
    #7a5a7a 40%,
    var(--lavender) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* Bottom answer section */
.concerns-answer {
  text-align: center;
}

.concerns-answer-main {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.concerns-answer-main em {
  font-style: normal;
  color: var(--lavender-dark);
  font-weight: 700;
}

.concerns-answer-divider {
  width: 40px;
  height: 1px;
  background: var(--lavender-light);
  margin: 20px auto;
}

.concerns-answer-sub {
  font-size: 14px;
  line-height: 2.2;
  color: var(--dark-soft);
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 440px;
  margin: 0 auto;
}

/* Concerns responsive */


/* ========== PRODUCT STATEMENT + BUY CARD ========== */
.product-statement {
  padding: 100px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.ps-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Left: Text column ---- */
.ps-text-col {
  display: flex;
  flex-direction: column;
}

.ps-eyebrow-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.ps-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--lavender-light);
}

.ps-eyebrow {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 500;
}

.ps-context {
  font-size: 14px;
  color: var(--dark-soft);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-weight: 300;
  line-height: 2;
}

.ps-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.9;
  letter-spacing: 2px;
}

.ps-headline em {
  font-style: normal;
  color: var(--lavender-dark);
}

.ps-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.ps-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ps-stat-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--lavender-light);
}

.ps-stat-num {
  font-family: var(--font-accent);
  font-size: 48px;
  font-weight: 300;
  color: var(--lavender-dark);
  line-height: 1;
}

.ps-stat-num small {
  font-size: 20px;
  font-weight: 400;
  color: var(--lavender);
}

.ps-stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 400;
}

.ps-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--lavender-light);
}

.ps-plant-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark-soft);
  letter-spacing: 1.5px;
  font-weight: 400;
}

.ps-plant-line svg {
  flex-shrink: 0;
}

/* ---- Right: Product card ---- */
.ps-card {
  background: var(--white);
  border-radius: 28px;
  padding: 14px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.ps-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(155, 110, 155, 0.14),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

.ps-card-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
}

.ps-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ps-card:hover .ps-card-visual img {
  transform: scale(1.03);
}

.ps-card-cart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}

.ps-card-cart:hover {
  background: var(--dark);
  color: var(--white);
}

.ps-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.ps-buy-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-light);
  color: var(--dark);
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--font-body);
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ps-buy-btn:hover {
  background: var(--cream-dark);
}

.ps-buy-arrow {
  width: 32px;
  height: 32px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: transform 0.3s;
}

.ps-buy-btn:hover .ps-buy-arrow {
  transform: translateX(3px);
}

.ps-price-tag {
  background: var(--cream-light);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 16px;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ps-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 20px 22px;
  background: var(--cream-light);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ps-card-name {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.ps-card-desc {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.ps-card-volume {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-soft);
  letter-spacing: 1px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  padding: 6px 14px;
  white-space: nowrap;
  background: var(--white);
}

/* Product Statement Responsive */


/* ========== CONCEPT SECTION ========== */
.concept {
  position: relative;
  padding: 120px 80px;
  background: var(--cream-light);
  overflow: hidden;
  color: var(--dark);
}

/* --- Decorative rings --- */
.concept-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--lavender-light);
  pointer-events: none;
  opacity: 0.3;
}

.concept-deco-ring-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.concept-deco-ring-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -150px;
  border-style: dashed;
  opacity: 0.2;
}

/* --- Inner --- */
.concept-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== HERO: Two columns ===== */
.concept-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.concept-hero-text {
  display: flex;
  flex-direction: column;
}

.concept-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.concept-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--lavender-light);
}

.concept-eyebrow {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 500;
}

.concept-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 28px;
}

.concept-headline em {
  font-style: normal;
  color: var(--lavender-dark);
}

.concept-lead {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 2.2;
  color: var(--dark-soft);
  letter-spacing: 0.8px;
  font-weight: 300;
  margin-bottom: 32px;
}

.concept-lead-line {
  width: 40px;
  height: 1px;
  background: var(--lavender-light);
}

/* --- Cream visual --- */
.concept-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.concept-cream-wrap {
  position: relative;
  width: 320px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-cream-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--lavender-light);
}

.concept-cream-ring-1 {
  width: 85%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

.concept-cream-ring-2 {
  width: 105%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  border-style: dashed;
}

.concept-cream-img {
  width: 75%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 40px rgba(155, 110, 155, 0.12));
  transition: transform 0.5s ease;
}

.concept-cream-wrap:hover .concept-cream-img {
  transform: scale(1.04) rotate(-2deg);
}

/* ===== TIMELINE: 4 Pillars ===== */
.concept-timeline {
  position: relative;
  margin-bottom: 100px;
}

.concept-timeline-track {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender-light) 10%, var(--lavender-light) 90%, transparent);
}

.concept-timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.concept-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concept-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--lavender);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.concept-tl-item:hover .concept-tl-dot {
  background: var(--lavender);
  box-shadow: 0 0 16px rgba(200, 162, 200, 0.4);
  transform: scale(1.3);
}

.concept-tl-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  width: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.concept-tl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(155, 110, 155, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  border-color: var(--lavender-light);
}

.concept-tl-num {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--lavender);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.concept-tl-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin: 0 auto 16px;
}

.concept-tl-card h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 1px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.concept-tl-card p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* ===== INGREDIENTS: Editorial columns ===== */
.concept-ing-section {
  max-width: 960px;
  margin: 0 auto;
}

.concept-ing-header {
  text-align: center;
  margin-bottom: 56px;
}

.concept-ing-header-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--lavender-light));
  margin: 0 auto 24px;
}

.concept-ing-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 2px;
  color: var(--dark);
}

.concept-ing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.concept-ing-col {
  display: flex;
  flex-direction: column;
}

.concept-ing-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.concept-ing-col-head span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--dark-soft);
  font-weight: 500;
}

.concept-ing-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.concept-ing-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.concept-ing-row:last-child {
  border-bottom: none;
}

.concept-ing-row:hover {
  background: rgba(200, 162, 200, 0.03);
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
  border-radius: 10px;
}

.concept-ing-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-ing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-ing-info {
  flex: 1;
  min-width: 0;
}

.concept-ing-info h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.concept-ing-info span {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.concept-ing-badge {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  background: var(--white);
  border: 1px solid var(--lavender-light);
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}

.concept-ing-badge.ocean {
  color: #5A8A9B;
  border-color: rgba(90, 138, 155, 0.25);
}

.concept-ing-badge.citrus {
  color: #C87832;
  border-color: rgba(200, 120, 50, 0.2);
}

/* --- Concept Responsive --- */


/* ========== FORMULATION SECTION ========== */
.formulation {
  padding: 120px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Image column --- */
.form-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-image-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.form-image-frame img {
  width: 80%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.08));
}

.form-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--lavender-light);
  z-index: 1;
}

.form-image-ring-1 {
  width: 85%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.form-image-ring-2 {
  width: 100%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  border-style: dashed;
}

/* --- Content column --- */
.form-content-col {
  display: flex;
  flex-direction: column;
}

.form-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.form-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--lavender-light);
}

.form-eyebrow {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 500;
}

.form-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 36px;
}

.form-headline em {
  font-style: normal;
  color: var(--lavender-dark);
}

/* --- Comparison bars --- */
.form-compare {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.form-compare-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-compare-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gray);
  font-weight: 400;
}

.form-compare-nb .form-compare-label {
  color: var(--lavender-dark);
  font-weight: 500;
}

.form-compare-bar {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  height: 36px;
}

.form-bar-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
  white-space: nowrap;
  padding: 0 12px;
}

/* General cream bars */
.form-bar-water {
  flex: 5;
  background: #d8d4ce;
  color: var(--dark-soft);
}

.form-bar-humectant {
  flex: 3;
  background: #e4dfd8;
  color: var(--dark-soft);
}

.form-bar-oil {
  flex: 2;
  background: #ece8e2;
  color: var(--gray);
}

/* NB bars */
.form-bar-aloe {
  flex: 5;
  background: var(--lavender-dark);
  color: var(--white);
}

.form-bar-plant {
  flex: 3;
  background: var(--lavender);
  color: var(--white);
}

.form-bar-natural {
  flex: 2;
  background: var(--lavender-light);
  color: var(--dark-soft);
}

.form-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.form-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 2.2;
  color: var(--dark-soft);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
}

/* --- Free design --- */
.form-free {
  background: var(--cream-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 28px 32px;
}

.form-free-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.form-free-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.form-free-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--lavender-light);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--dark-soft);
  letter-spacing: 0.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.form-free-tag:hover {
  border-color: var(--lavender);
  box-shadow: 0 2px 12px rgba(155, 110, 155, 0.1);
}

.form-free-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Formulation Responsive */


/* ========== PURITY (95%) SECTION ========== */
.purity {
  position: relative;
  padding: 120px 80px;
  background: var(--cream);
  overflow: hidden;
  text-align: center;
}

.purity-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--lavender-light);
  opacity: 0.25;
  pointer-events: none;
}

.purity-bg-circle-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
}

.purity-bg-circle-2 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  border-style: dashed;
  opacity: 0.15;
}

.purity-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.purity-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.purity-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--lavender-light);
}

.purity-eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 500;
}

.purity-headline {
  margin-bottom: 64px;
}

.purity-number {
  font-family: var(--font-accent);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -4px;
}

.purity-percent {
  font-family: var(--font-accent);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--lavender-dark);
  vertical-align: super;
  letter-spacing: 0;
}

.purity-sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 3px;
  line-height: 2;
}

/* --- 3 Pillars with ring charts --- */
.purity-pillars {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 72px;
}

.purity-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.purity-pillar-ring {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purity-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.purity-ring-progress {
  transition: stroke-dashoffset 1.2s ease;
}

.purity-pillar-num {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.purity-pillar-num small {
  font-size: 16px;
  color: var(--lavender-dark);
}

.purity-pillar h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 1px;
}

.purity-pillar p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* --- Bottom statement --- */
.purity-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.purity-statement-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--lavender-light));
  margin-bottom: 8px;
}

.purity-statement-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 1px;
}

.purity-statement-em {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--lavender-dark);
  letter-spacing: 2px;
  line-height: 1.8;
}

.purity-statement-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark-soft);
  font-weight: 300;
  letter-spacing: 1px;
}

/* Purity Responsive */


/* ========== ABOUT SECTION ========== */
.about {
  padding: 80px 80px 60px;
  background: var(--cream);
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--dark);
  letter-spacing: 2px;
}

.about-text {
  font-size: 14px;
  line-height: 2.1;
  color: var(--dark-soft);
  max-width: 520px;
  font-weight: 300;
  padding-top: 10px;
  letter-spacing: 0.3px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-card {
  text-align: center;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(200, 162, 200, 0.15);
  background: var(--cream-dark);
}

.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark);
  letter-spacing: 1px;
}

.about-card p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
}

/* ========== PRODUCT SHOWCASE ========== */
.showcase-section {
  padding: 80px 80px;
  background: var(--white);
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 3px;
}

.showcase-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 0;
  align-items: center;
  min-height: 520px;
}

.showcase-left,
.showcase-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.showcase-left {
  padding-right: 40px;
}

.showcase-right {
  padding-left: 40px;
}

.showcase-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-center img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  border-radius: 8px;
}

.showcase-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.showcase-item p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
}

.showcase-item.right-align {
  text-align: right;
}

.showcase-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--lavender-light),
    transparent
  );
  margin-top: 10px;
  position: relative;
}

.showcase-line::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender-light);
  position: absolute;
  top: -3px;
}

.showcase-item.right-align .showcase-line::after {
  right: 0;
}

.showcase-item:not(.right-align) .showcase-line::after {
  left: 0;
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  border-radius: 2px;
}

.btn-dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
}

/* ========== PRODUCT ========== */
.product-section {
  padding: 80px 60px;
  background: var(--cream);
}

.product-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-image-col {
  display: flex;
  justify-content: center;
}

.product-image-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 2;
  background: linear-gradient(160deg, var(--cream-light), var(--white));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.product-image-frame img {
  width: auto;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.5s ease;
}

.product-image-frame:hover img {
  transform: scale(1.04);
}

.product-info-col {
  display: flex;
  flex-direction: column;
}

.product-eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--lavender-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}

.product-brand {
  font-family: var(--font-accent);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.product-sub {
  font-family: var(--font-accent);
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.product-meta-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.product-meta-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
  min-width: 50px;
  letter-spacing: 1px;
}

.product-meta-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.product-meta-value small {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.product-detail-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-detail-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-icon {
  color: var(--lavender-dark);
  display: flex;
}

.product-detail-label h4 {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-detail-block p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.9;
  color: var(--dark-soft);
  font-weight: 300;
  padding-left: 26px;
}

.product-buy-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--dark);
  padding: 14px 40px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.3s;
  text-align: center;
  align-self: flex-start;
}

.product-buy-btn:hover {
  background: var(--lavender-dark);
}

/* ========== INGREDIENTS ========== */
.ingredients {
  padding: 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ingredients-left h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.5;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.ingredients-left p {
  font-size: 14px;
  line-height: 2;
  color: var(--dark-soft);
  font-weight: 300;
  max-width: 440px;
}

.ingredients-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ingredient-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ingredient-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon.aloe {
  background: linear-gradient(135deg, #c8e8c0, #a0d090);
}

.ingredient-icon.shea {
  background: linear-gradient(135deg, #f0e0c0, #e0c898);
}

.ingredient-icon.argan {
  background: linear-gradient(135deg, #e8d4a0, #d4b870);
}

.ingredient-icon.jojoba {
  background: linear-gradient(135deg, #d8e8c0, #c0d8a0);
}

.ingredient-content h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.ingredient-content p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
}

/* ========== POINTS ========== */
.points {
  padding: 80px;
  background: var(--white);
}

.points-header {
  text-align: center;
  margin-bottom: 60px;
}

.points-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 3px;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.point-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: var(--cream-light);
  transition: transform 0.3s;
}

.point-card:hover {
  transform: translateY(-4px);
}

.point-num {
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 300;
  color: var(--lavender-dark);
  margin-bottom: 16px;
  line-height: 1;
}

.point-card h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.point-card p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 80px;
  background: var(--cream);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  max-width: 380px;
  letter-spacing: 2px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: 1.5px solid var(--dark);
  font-family: var(--font-body);
  letter-spacing: 1px;
  border-radius: 2px;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-inner {
  transform: scale(1.05);
}

.gallery-badge {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  font-weight: 700;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  line-height: 1.4;
}

.badge-organic {
  background: var(--green-soft);
  color: var(--dark);
  bottom: 20px;
  right: 20px;
}

/* ========== HOW TO USE ========== */
.howto {
  padding: 100px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.howto-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}

.howto-deco-1 {
  top: -40px;
  right: -60px;
  animation: floatSlow 24s ease-in-out infinite;
}

.howto-deco-2 {
  bottom: -30px;
  left: -40px;
  animation: floatSlow 20s ease-in-out infinite reverse;
}

.howto-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.howto-header {
  text-align: center;
  margin-bottom: 64px;
}

.howto-eyebrow-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.howto-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--lavender-light);
}

.howto-eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 500;
}

.howto-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.howto-subtitle {
  font-size: 14px;
  color: var(--dark-soft);
  font-weight: 300;
  letter-spacing: 2px;
}

/* Content layout */
.howto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image column */
.howto-image-col {
  position: relative;
}

.howto-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(155, 110, 155, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(200, 162, 200, 0.12);
}

.howto-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(42, 42, 42, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.howto-image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  object-position: 25% center;
  display: block;
  transition: transform 0.6s ease;
}

.howto-image-frame:hover img {
  transform: scale(1.03);
}

.howto-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 162, 200, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.howto-badge-num {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 600;
  color: var(--lavender-dark);
  line-height: 1;
}

.howto-badge-unit {
  font-size: 10px;
  color: var(--dark-soft);
  letter-spacing: 1.5px;
  font-weight: 400;
  margin-top: 2px;
}

/* Steps column */
.howto-steps-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.howto-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.howto-step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
}

.howto-step-num {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 300;
  color: var(--lavender-dark);
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--lavender-light);
  border-radius: 50%;
  position: relative;
  background: var(--white);
  z-index: 1;
}

.howto-step-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(180deg, var(--lavender-light), transparent);
}

.howto-step-body {
  padding: 8px 0 40px;
}

.howto-step:last-of-type .howto-step-body {
  padding-bottom: 0;
}

.howto-step-body h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.howto-step-body p {
  font-size: 13px;
  line-height: 2;
  color: var(--dark-soft);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Tip box */
.howto-tip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #faf5fa, var(--cream-light));
  border-radius: 12px;
  border: 1px solid rgba(200, 162, 200, 0.12);
}

.howto-tip-icon {
  flex-shrink: 0;
}

.howto-tip p {
  font-size: 13px;
  color: var(--dark-soft);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 60px 40px;
  background: var(--cream-light);
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto 36px;
}

.testimonials-title {
  font-family: var(--font-accent);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.testimonials-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--lavender-dark);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-heading {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.testimonial-excerpt {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.9;
  color: var(--dark-soft);
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #e8b730;
}

.testimonial-author {
  margin-bottom: 16px;
}

.testimonial-author-name {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-author-detail {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

.testimonial-disclaimer {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.5;
}

.testimonial-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.testimonial-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-card-image img {
  transform: scale(1.05);
}

.testimonial-card-accent {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--lavender-light),
    var(--lavender),
    var(--lavender-dark)
  );
}

/* ========== FAQ ========== */
.faq {
  padding: 80px;
  background: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.faq-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--lavender-light);
}

.faq-eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 500;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 3px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.3px;
  transition: background 0.3s;
}

.faq-q:hover {
  background: var(--cream-light);
}

.faq-q .arrow {
  transition: transform 0.3s;
  color: var(--lavender-dark);
}

.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
  padding: 0 24px 20px;
  max-height: 300px;
}

.faq-a p {
  font-size: 13px;
  line-height: 2;
  color: var(--dark-soft);
  font-weight: 300;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  margin: 20px 80px 80px;
  background: linear-gradient(135deg, #3a2a3a, #2a1a2a);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.8vw, 32px);
  color: var(--white);
  font-weight: 500;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 36px;
  letter-spacing: 2px;
}

.cta-banner h2 strong {
  font-weight: 800;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2em;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 1px;
  border-radius: 2px;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.cta-flower {
  position: absolute;
}

.cta-flower-1 {
  bottom: 20px;
  left: 30px;
}

.cta-flower-2 {
  top: 20px;
  right: 30px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--cream);
  padding: 60px 80px 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo-section {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo .fl-circle {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lavender-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender-dark);
}

.footer-logo .fl-name {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
}

.footer-desc {
  font-size: 12px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-contact a {
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--lavender-dark);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--dark);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-copyright {
  font-size: 11px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 11px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--dark);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-eyebrow {
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btn {
  animation: fadeInUp 0.8s ease 0.55s both;
}

.hero-badges {
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-right {
  animation: fadeIn 1s ease 0.4s both;
}

/* ========== RESPONSIVE: MOBILE (max-width: 640px) ========== */
@media (max-width: 640px) {
  .concerns {
    padding: 40px 20px;
  }

  .concerns-showcase {
    gap: 28px;
  }

  .concerns-col-left,
  .concerns-col-right {
    gap: 24px;
  }

  .c-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .c-item h4 {
    font-size: 14px;
  }

  .reveal-kanji-ring-1 {
    width: 100px;
    height: 100px;
  }

  .reveal-kanji-ring-2 {
    width: 130px;
    height: 130px;
  }

  .reveal-kanji-glow {
    width: 130px;
    height: 130px;
  }

  .concerns-float {
    display: none;
  }

  .product-statement {
    padding: 60px 20px;
  }

  .ps-inner {
    max-width: 360px;
  }

  .ps-headline {
    font-size: clamp(18px, 5vw, 26px);
  }

  .ps-stat-num {
    font-size: 38px;
  }

  .ps-buy-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .ps-price-tag {
    padding: 10px 14px;
    font-size: 14px;
  }

  .ps-card-info {
    padding: 18px 20px;
  }

  .concept {
    padding: 60px 20px;
  }

  .concept-headline {
    font-size: clamp(22px, 6vw, 32px);
  }

  .concept-lead br {
    display: none;
  }

  .concept-cream-wrap {
    width: 220px;
    height: 260px;
  }

  .concept-timeline-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .concept-tl-card {
    padding: 22px 20px;
  }

  .concept-ing-badge {
    display: none;
  }

  .formulation {
    padding: 60px 20px;
  }

  .form-headline {
    font-size: clamp(20px, 5vw, 28px);
  }

  .form-bar-seg {
    font-size: 9px;
    padding: 0 6px;
  }

  .form-compare-bar {
    height: 32px;
  }

  .form-free {
    padding: 22px 20px;
  }

  .form-desc br {
    display: none;
  }

  .purity {
    padding: 60px 20px;
  }

  .purity-pillars {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }

  .purity-pillar-ring {
    width: 100px;
    height: 100px;
  }

  .faq {
    padding: 40px 20px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 40px 20px;
  }

  .hero-organic-badge {
    width: 140px;
    bottom: 16px;
    right: 16px;
  }

  .about {
    padding: 40px 20px;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brands {
    gap: 12px;
    padding: 24px 20px;
  }

  .showcase-section {
    padding: 40px 20px;
  }

  .product-section {
    padding: 40px 20px;
  }

  .product-image-frame {
    max-width: 220px;
  }

  .ingredients {
    padding: 40px 20px;
  }

  .points {
    padding: 40px 20px;
  }

  .points-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 40px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .howto {
    padding: 50px 20px;
  }

  .howto-header {
    margin-bottom: 40px;
  }

  .howto-step-body {
    padding: 4px 0 32px;
  }

  .howto-step-num {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .howto-step-line {
    height: 36px;
  }

  .howto-step {
    gap: 16px;
  }

  .howto-image-badge {
    width: 72px;
    height: 72px;
    bottom: 16px;
    right: 16px;
  }

  .howto-badge-num {
    font-size: 20px;
  }

  .testimonials {
    padding: 40px 20px;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:last-child {
    max-width: 100%;
  }

  .cta-banner {
    margin: 0 20px 40px;
  }

  .footer {
    padding: 30px 20px 0;
  }

  .footer-contact {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .navbar-links {
    display: none;
  }
}
