*,
*::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-heading: "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-accent: "Cormorant Garamond", serif;
}

html {
  scroll-behavior: smooth;
}

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: linear-gradient(160deg, #f5eee8 0%, #ede5d8 40%, #e8e0d0 100%);
}

.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-star {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 3;
  opacity: 0.35;
  animation: gentleSway 6s ease-in-out infinite;
}

@keyframes gentleSway {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateY(-4px);
  }
}

.hero-organic-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  background: rgba(155, 110, 155, 0.85);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 3;
}

.hero-organic-badge .num {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-accent);
}

.hero-organic-badge .pct {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ========== 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);
}

/* ========== 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-heading);
  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-heading);
  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);
}

/* ========== 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-heading);
  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-heading);
  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;
}

/* ========== 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-heading);
  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 */
@media (max-width: 1024px) {
  .concerns {
    padding: 50px 40px;
  }

  .concerns-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .concerns-col-center {
    order: -1;
  }

  .concerns-col-left {
    padding-right: 0;
  }

  .concerns-col-right {
    padding-left: 0;
  }

  .c-item.c-right {
    text-align: left;
  }

  .c-item.c-right .c-item-top {
    justify-content: flex-start;
  }

  .c-item.c-right .c-item-line {
    background: linear-gradient(
      90deg,
      var(--lavender-light) 0%,
      transparent 100%
    );
  }

  .c-item.c-right .c-item-line::after {
    right: auto;
    left: 0;
  }

  .reveal-kanji-ring-2 {
    width: 160px;
    height: 160px;
  }
}

@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;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 80px;
  background: var(--white);
}

.testimonials-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-image {
  width: 220px;
  height: 280px;
  border-radius: 120px;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 20px 0;
}

.testimonial-label {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--lavender-dark);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 2;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.testimonial-author {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}

.testimonial-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-light);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 2px;
}

.testimonial-nav button:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

/* ========== FAQ ========== */
.faq {
  padding: 80px;
  background: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.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: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  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: 0 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 ========== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 40px;
  }

  .hero-right {
    height: 420px;
  }

  .navbar {
    padding: 16px 24px;
  }

  .brands {
    gap: 20px;
    padding: 30px 40px;
  }

  .about {
    padding: 60px 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-section {
    padding: 60px 40px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-center {
    order: -1;
  }

  .ingredients {
    grid-template-columns: 1fr;
    padding: 60px 40px;
  }

  .points {
    padding: 60px 40px;
  }

  .points-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .gallery {
    padding: 60px 40px;
  }

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

  .testimonials {
    padding: 60px 40px;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 60px 40px;
  }

  .cta-banner {
    margin: 0 40px 60px;
    padding: 60px 30px;
  }

  .footer {
    padding: 40px 40px 0;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .hero-left {
    padding: 40px 20px;
  }

  .about {
    padding: 40px 20px;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brands {
    gap: 12px;
    padding: 24px 20px;
  }

  .showcase-section {
    padding: 40px 20px;
  }

  .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;
  }

  .testimonials {
    padding: 40px 20px;
  }

  .faq {
    padding: 40px 20px;
  }

  .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;
  }
}
