/* =========================================================
   RECREA — style.css
   Palette:
     Espresso:   #1C0E06
     Brown:      #3D1F0E
     Coffee-mid: #8B5E3C
     Tan:        #C8A882
     Linen:      #F5EFE6
     Cream:      #FDFAF6
   ========================================================= */

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #FDFAF6;
  color: #1C0E06;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

#main{
	padding-bottom:0!important;
	padding-top:0!important;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

.container {
  width: 90%;
  max-width: 1160px;
  margin-inline: auto;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  font-weight: 300;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B5E3C;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #1C0E06;
}

.section-sub {
  font-size: 1rem;
  color: #5a3e2b;
  max-width: 520px;
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-sub {
  margin-inline: auto;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: #1C0E06;
  color: #F5EFE6;
}
.btn--primary:hover {
  background-color: #3D1F0E;
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  color: #1C0E06;
  border: 1.5px solid #1C0E06;
}
.btn--secondary:hover {
  background-color: #1C0E06;
  color: #F5EFE6;
}

.btn--ghost {
  background-color: transparent;
  color: #8B5E3C;
  border: 1px solid #C8A882;
  padding: 0.6rem 1.4rem;
  font-size: 0.76rem;
}
.btn--ghost:hover {
  background-color: #8B5E3C;
  color: #F5EFE6;
  border-color: #8B5E3C;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  background-color: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 168, 130, 0.25);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(28, 14, 6, 0.08);
}

.nav__logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #1C0E06;
  display: flex;
  align-items: center;
}

.nav__logo span { color: #8B5E3C; }

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav__logo-img--footer {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  mix-blend-mode: normal;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #5a3e2b;
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #8B5E3C;
  transition: width 0.25s ease;
}

.nav__link:hover,
.nav__link.active {
  color: #1C0E06;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #1C0E06;
  transition: all 0.3s ease;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f0ebe4;
	margin-top:0!important;
	margin-bottom:0!important;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  display: block;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 9rem 5% 6rem;
  max-width: 560px;
}
#hero_text_top{
	padding: 20px 40px;
}
.hero__visual { display: none; }

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B5E3C;
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #1C0E06;
}

.hero__sub {
  font-size: 1.05rem;
  color: #5a3e2b;
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__badge {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 2;
  background-color: #1C0E06;
  color: #F5EFE6;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
}

.hero__badge span:first-child {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
}

.hero__badge span:last-child {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8A882;
}

/* ─────────────────────────────────────────
   ECO BANNER
───────────────────────────────────────── */
.eco-banner {
  background-color: #1C0E06;
  color: #C8A882;
  padding: 0.85rem 0;
  overflow: hidden;
	margin-top:0!important;
	margin-bottom:0!important;
}

.eco-banner__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  width: max-content;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  animation: scrollBanner 22s linear infinite;
}

.eco-banner__dot {
  color: #8B5E3C;
  font-size: 1.2rem;
}

/* ─────────────────────────────────────────
   PROCESS SECTION
───────────────────────────────────────── */
.process {
  padding: 7rem 0;
  background-color: #F5EFE6;
	margin-top:0!important;
	margin-bottom:0!important;
}

/*
  Grid layout:
    Row 1: [s1]  [→]  [s2]  [→]  [s3]
    Row 2: [ ]   [ ]   [ ]   [ ]  [↓]
    Row 3: [s6]  [←]  [s5]  [←]  [s4]
*/
.process-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  grid-template-rows: auto 64px auto;
  max-width: 960px;
  margin-inline: auto;
}

/* Row 1 */
.pg-r1c1 { grid-column: 1; grid-row: 1; align-self: center; }
.pg-r1c2 { grid-column: 2; grid-row: 1; align-self: center; }
.pg-r1c3 { grid-column: 3; grid-row: 1; align-self: center; }
.pg-r1c4 { grid-column: 4; grid-row: 1; align-self: center; }
.pg-r1c5 { grid-column: 5; grid-row: 1; align-self: center; }

/* Row 2 — connector row */
.pg-r2c1 { grid-column: 1; grid-row: 2; }
.pg-r2c2 { grid-column: 2; grid-row: 2; }
.pg-r2c3 { grid-column: 3; grid-row: 2; }
.pg-r2c4 { grid-column: 4; grid-row: 2; }
.pg-r2c5 { grid-column: 5; grid-row: 2; display: flex; align-items: center; justify-content: center; }

/* Row 3 */
.pg-r3c1 { grid-column: 1; grid-row: 3; align-self: center; }
.pg-r3c2 { grid-column: 2; grid-row: 3; align-self: center; }
.pg-r3c3 { grid-column: 3; grid-row: 3; align-self: center; }
.pg-r3c4 { grid-column: 4; grid-row: 3; align-self: center; }
.pg-r3c5 { grid-column: 5; grid-row: 3; align-self: center; }

/* Step cards */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  margin: 0.4rem;
  background-color: #FDFAF6;
  border: 1px solid rgba(200, 168, 130, 0.3);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step.visible:hover {
  box-shadow: 0 8px 28px rgba(28, 14, 6, 0.1);
  transform: translateY(-2px);
}

/* Stagger per step */
.pg-r1c1.visible { transition-delay: 0s; }
.pg-r1c3.visible { transition-delay: 0.15s; }
.pg-r1c5.visible { transition-delay: 0.3s; }
.pg-r3c5.visible { transition-delay: 0.45s; }
.pg-r3c3.visible { transition-delay: 0.6s; }
.pg-r3c1.visible { transition-delay: 0.75s; }

.process-step__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.35s ease;
}

.process-step.visible:hover .process-step__icon {
  transform: scale(1.1) rotate(-3deg);
}

.process-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-step__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1C0E06;
  margin-bottom: 0.35rem;
}

.process-step__desc {
  font-size: 0.78rem;
  color: #5a3e2b;
  line-height: 1.7;
}

/* Arrows — always visible, no JS dependency */
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  opacity: 1;
}

.process-arrow svg {
  width: 40px;
  height: auto;
  display: block;
}

.process-arrow--down svg {
  width: 22px;
  height: 56px;
}

/* ─────────────────────────────────────────
   FEATURE SPLIT
───────────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.feature-split__image {
  background-color: #3D1F0E;
  position: relative;
  overflow: hidden;
}

.feature-split__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(135deg, #3D1F0E 0%, #1C0E06 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-split__text {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  background-color: #1C0E06;
}

.feature-split__text p {
  font-size: 0.97rem;
  color: #BB9C78;
  line-height: 1.8;
}

.feature-split__text .section-title {
  margin-bottom: 0.25rem;
	color:#F5EFE6;
}

.video-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1C0E06; /* fallback while video loads */
}
 
/* The video fills the container */
.video-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
 
/* Dark overlay so text is always legible */
.video-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 14, 6, 0.52);
  z-index: 1;
}
 
/* Text content */
.video-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 5%;
  max-width: 820px;
}
 
.video-banner__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  color: #FDFAF6;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
 
.video-banner__tagline strong {
  font-weight: 600;
  font-style: normal;
  color: #C8A882;
}
 
/* Optional decorative line above the text */
.video-banner__content::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background-color: #C8A882;
  margin: 0 auto 1.75rem;
}
 
/* Optional sub-line below */
.video-banner__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 168, 130, 0.75);
  margin-top: 1.5rem;
}
 
/* Responsive */
@media (max-width: 600px) {
  .video-banner { height: 380px; }
  .video-banner__tagline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ─────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────── */
.products {
  padding: 7rem 0;
  background-color: #FDFAF6;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  border: 1px solid rgba(200, 168, 130, 0.3);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:nth-child(2).visible { transition-delay: 0.12s; }
.product-card:nth-child(3).visible { transition-delay: 0.24s; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 14, 6, 0.1);
}

.product-card__img {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.product-card__img--earrings { background: linear-gradient(135deg, #C8A882 0%, #8B5E3C 100%); }
.product-card__img--strap    { background: linear-gradient(135deg, #8B5E3C 0%, #3D1F0E 100%); }
.product-card__img--wallet   { background: linear-gradient(135deg, #3D1F0E 0%, #1C0E06 100%); }

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #1C0E06;
  color: #C8A882;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.product-card__body {
  padding: 1.5rem;
  background-color: #FDFAF6;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B5E3C;
}

.product-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1C0E06;
}

.product-card__price {
  font-size: 0.9rem;
  color: #5a3e2b;
  margin-bottom: 0.5rem;
}

.products__cta { text-align: center; }

/* ─────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────── */
.newsletter {
  background-color: #1C0E06;
  padding: 6rem 0;
	margin-bottom:0!important;
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.newsletter .section-label  { color: #8B5E3C; }
.newsletter .section-title  { color: #F5EFE6; }
.newsletter .section-title em { color: #C8A882; }

.newsletter__text p {
  font-size: 0.97rem;
  color: #C8A882;
  line-height: 1.8;
  margin-top: 0.75rem;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.newsletter__input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(200, 168, 130, 0.4);
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.06);
  color: #F5EFE6;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter__input::placeholder { color: rgba(200, 168, 130, 0.5); }
.newsletter__input:focus        { border-color: #C8A882; }

.newsletter__note {
  font-size: 0.72rem;
  color: rgba(200, 168, 130, 0.55);
  letter-spacing: 0.04em;
}



/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes scrollBanner {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero content — always visible, no animation dependency.
   WordPress themes can interfere with animation fill-mode
   causing content to stay hidden. Content must show regardless. */
.hero__content {
  position: relative;
  z-index: 10;
  padding: 9rem 5% 6rem;
  max-width: 560px;
}

.hero__badge { z-index: 10; }

/* Optional subtle entrance — uses forwards not both,
   so if the animation fails, text is still visible */
.hero__eyebrow {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.1s;
}
.hero__headline {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.25s;
}
.hero__sub {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.4s;
}
.hero .btn {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.55s;
}

/* Feature split */
.feature-split__image {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.feature-split__image.visible { opacity: 1; transform: translateX(0); }

.feature-split__text {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}
.feature-split__text.visible { opacity: 1; transform: translateX(0); }

/* Newsletter */
.newsletter__text {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.newsletter__text.visible { opacity: 1; transform: translateY(0); }

.newsletter__form {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.18s, transform 0.7s ease 0.18s;
}
.newsletter__form.visible { opacity: 1; transform: translateY(0); }

/* Section headers */
.section-header {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.section-header.visible { opacity: 1; transform: translateY(0); }
/* ─────────────────────────────────────────
   RESPONSIVE — 1150px
───────────────────────────────────────── */
@media (max-width: 1140px) {

  /* Hero */
  .hero { min-height: 85vh; }
  .hero__bg { object-position: 60% center; }
}
/* ─────────────────────────────────────────
   RESPONSIVE — 900px
───────────────────────────────────────── */
@media (max-width: 900px) {

  /* Hero */
  .hero { min-height: 85vh; }
  .hero__bg { object-position: 70% center; }
  .hero::after {
    background: linear-gradient(
      to right,
      rgba(253,250,246,0.97) 0%,
      rgba(253,250,246,0.92) 40%,
      rgba(253,250,246,0.55) 65%,
      rgba(253,250,246,0)    85%
    );
  }
  .hero__content { padding: 8rem 5% 5rem; max-width: 480px; }
  .hero__badge   { bottom: 1.5rem; }

  /* Process — keep 3-per-row, just shrink */
  .process-grid {
    grid-template-columns: 1fr 36px 1fr 36px 1fr;
    grid-template-rows: auto 52px auto;
  }
  .process-step        { padding: 1.25rem 0.6rem; margin: 0.25rem; }
  .process-step__icon  { width: 56px; height: 56px; }
  .process-step__label { font-size: 0.95rem; }
  .process-step__desc  { font-size: 0.7rem; }
  .process-arrow svg        { width: 28px; }
  .process-arrow--down svg  { width: 18px; height: 44px; }

  /* Layout */
  .feature-split       { grid-template-columns: 1fr; }
  .feature-split__text { padding: 3rem 5%; }
  .products__grid      { grid-template-columns: repeat(2, 1fr); }
  .newsletter__inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand       { grid-column: 1 / -1; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — 600px
───────────────────────────────────────── */
@media (max-width: 600px) {

  /* Mobile nav */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FDFAF6;
    flex-direction: column;
    padding: 1.5rem 5%;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(200, 168, 130, 0.2);
    box-shadow: 0 8px 24px rgba(28, 14, 6, 0.08);
  }
  .nav__links.open { display: flex; }
  .nav__toggle     { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__bg { object-position: 80% center; }
  .hero::after {
    background: linear-gradient(
      to right,
      rgba(253,250,246,0.98) 0%,
      rgba(253,250,246,0.95) 50%,
      rgba(253,250,246,0.6)  75%,
      rgba(253,250,246,0)    100%
    );
  }
  .hero__content  { padding: 7rem 5% 4rem; max-width: 100%; }
  .hero__headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero__sub      { font-size: 0.95rem; max-width: 280px; }
  .hero__badge    { display: none; }

  /* Process — still 3-per-row, shrink more */
  .process-grid {
    grid-template-columns: 1fr 26px 1fr 26px 1fr;
    grid-template-rows: auto 40px auto;
  }
  .process-step        { padding: 0.85rem 0.35rem; margin: 0.15rem; }
  .process-step__icon  { width: 40px; height: 40px; margin-bottom: 0.4rem; }
  .process-step__label { font-size: 0.72rem; margin-bottom: 0; }
  .process-step__desc  { display: none; }
  .process-arrow svg        { width: 18px; }
  .process-arrow--down svg  { width: 13px; height: 32px; }

  /* Layout */
  .products__grid { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr; }
}

/* =========================================================
   RECREA — bilingual.css
   Styles the .jp spans added throughout the home page.
   Load this AFTER style.css so these rules can safely
   override font-family/size without fighting specificity.
   ========================================================= */

/* ─────────────────────────────────────────
   BASE .jp STYLING
   Smaller, muted, clearly secondary to the
   English text above it — sits on its own
   line via display:block.
───────────────────────────────────────── */
.jp {
  display: block;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 400;
  font-size: 0.72em;          /* relative to parent, so it scales naturally
                                  with clamp()'d headline sizes too */
  line-height: 1.8;            /* Japanese needs more vertical breathing
                                  room than Latin text at the same size */
  color: rgba(28, 14, 6, 0.6); /* muted espresso — same hue family as
                                  the rest of the palette, just softened */
  margin-top: 0.35em;
  letter-spacing: 0.02em;
}

/* ---- Headings get the serif JP font to match Cormorant Garamond's
   editorial feel, instead of the sans-serif used for JP body text ---- */
h1 .jp,
h2 .jp,
h3 .jp {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-weight: 400;
}

.jp-hero{
	font-size:0.4em;	
}

/* ---- .jp inside <em> should not literally apply <em>'s italic style —
   Japanese doesn't have an italic convention, so the nested <em> tags
   in headlines/taglines need their style reset for the JP span ---- */
.jp em,
.jp strong {
  font-style: normal;
}

/* ─────────────────────────────────────────
   CONTEXT-SPECIFIC OVERRIDES
   A handful of places need their .jp text
   to inherit a different base color, since
   the muted espresso default assumes a
   light/cream background.
───────────────────────────────────────── */

/* On dark backgrounds (hero badge, video banner, newsletter,
   feature-split text panel) the default muted espresso .jp
   text would be nearly invisible — switch to a muted tan/cream. */
.hero__badge .jp,
.video-banner__tagline .jp,
.video-banner__sub .jp,
.newsletter .jp,
.feature-split__text .jp {
  color: rgba(200, 168, 130, 0.75);
}

/* Eco banner scrolls horizontally with the English/JP pair stacked
   inside one <span> — keep them inline-flex stacked tightly rather
   than full block width, so the marquee spacing doesn't break */
.eco-banner__inner span {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.eco-banner .jp {
  margin-top: 0.15em;
  font-size: 0.68em;
  color: rgba(200, 168, 130, 0.65);
}

/* Buttons: .jp sits inline-block under the English label, button
   needs a touch more vertical padding to comfortably fit two lines */
.btn .jp {
  margin-top: 0.2em;
  font-size: 0.7em;
  opacity: 0.85;
}

.btn--primary .jp,
.btn--secondary:hover .jp {
  color: inherit; /* inherits the button's own text color on hover/dark states */
}

/* Product card badge ("Bestseller") is a small pill — JP text needs
   to stay compact rather than wrapping the pill taller than intended */
.product-card__badge .jp {
  font-size: 0.65em;
  margin-top: 0.1em;
}

/* Hero eyebrow / section-label already have letter-spacing + uppercase
   for the English line — the JP line should NOT inherit uppercase,
   since Japanese has no case distinction and text-transform can
   visually mangle some characters in certain browsers */
.hero__eyebrow .jp,
.section-label .jp {
  text-transform: none;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   On small screens, tighten the JP line a
   touch further so paired EN+JP text doesn't
   overwhelm vertical rhythm on mobile.
───────────────────────────────────────── */
@media (max-width: 600px) {
  .jp {
    font-size: 0.7em;
    line-height: 1.7;
  }
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .hero .btn      { animation: none; }
  .eco-banner__inner  { animation: none; flex-wrap: wrap; width: auto; }
  .process-step       { opacity: 1; transform: none; transition: none; }
  .product-card       { opacity: 1; transform: none; transition: box-shadow 0.3s ease; }
  .newsletter__text,
  .newsletter__form   { opacity: 1; transform: none; transition: none; }
  .section-header     { opacity: 1; transform: none; transition: none; }
  .feature-split__image,
  .feature-split__text { opacity: 1; transform: none; transition: none; }
}