/* ============================================
   Harmony — Premium Redesign v2
   Aesthetic: Editorial Luxury · Italian Wellness
   ============================================ */

:root {
  --ivory:       #f7f2ea;
  --ivory-soft:  #fdf9f4;
  --parchment:   #ede5d8;
  --sand:        #d4c4ac;
  --clay:        #b8724a;
  --clay-light:  #c98860;
  --sage:        #8fa483;
  --sage-light:  #a8b89c;
  --umber:       #3d2e1e;
  --umber-80:    rgba(61,46,30,.8);
  --umber-60:    rgba(61,46,30,.6);
  --umber-40:    rgba(61,46,30,.4);
  --umber-20:    rgba(61,46,30,.2);
  --umber-10:    rgba(61,46,30,.1);
  --umber-06:    rgba(61,46,30,.06);
  --umber-03:    rgba(61,46,30,.03);
  --white:       #ffffff;
  --gold:        #c9a76a;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-accent:  'Playfair Display', serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);

  --container: 1240px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--umber);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--clay); }
button { cursor: pointer; font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography ───────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }

em { font-style: italic; font-family: var(--font-display); }

.eyebrow {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.7); }
.eyebrow--muted { color: var(--umber-40); letter-spacing: .25em; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--umber);
  color: var(--ivory);
  border-color: var(--umber);
}
.btn--primary:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--ivory);
}
.btn--ghost {
  border-color: var(--umber-20);
  color: var(--umber);
  background: transparent;
}
.btn--ghost:hover { background: var(--umber-06); color: var(--umber); }
.btn--outline {
  border-color: var(--umber-20);
  color: var(--umber);
}
.btn--outline:hover { border-color: var(--clay); color: var(--clay); }
.btn--sm { padding: 10px 20px; font-size: .8125rem; }
.link-arrow {
  font-size: .875rem;
  font-weight: 600;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; color: var(--clay); }

/* ── Section Header ───────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-head--stack {
  flex-direction: column;
  align-items: flex-start;
}
.aesthetics-section .section-head--stack {
  align-items: center;
  text-align: center;
}
.section-head h2 { margin-top: 0; }

/* ── Animate ──────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-in"] { transform: scale(.98); }
[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */
.announce-bar {
  background: var(--umber);
  color: var(--ivory);
  text-align: center;
  padding: 10px 24px;
  font-size: .75rem;
  letter-spacing: .05em;
}
.announce-bar a { color: var(--clay-light); font-weight: 500; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 234, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--umber-10);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__brand-img {
  height: 60px;
  width: auto;
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__group {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__group--right { gap: 20px; }

.nav__links {
  display: none;
  gap: 28px;
}
@media (min-width: 860px) {
  .nav__links { display: flex; align-items: center; }
}
.nav__links a {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--umber-80);
  transition: color .2s;
}
.nav__links a:hover { color: var(--clay); }

.nav__hamburger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--umber);
  transition: transform .3s;
}
@media (min-width: 860px) { .nav__hamburger { display: none; } }

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav__brand-sub {
  font-size: .6875rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--umber-60);
}

.nav__locale {
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
  color: var(--umber-60);
}

.nav__icon {
  display: flex;
  align-items: center;
  color: var(--umber-80);
  transition: color .2s;
}
.nav__icon:hover { color: var(--clay); }

.nav__cart {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--umber-80);
  position: relative;
  transition: color .2s;
}
.nav__cart:hover { color: var(--clay); }
.nav__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--clay);
  color: white;
  border-radius: 50%;
  font-size: .6rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  opacity: 0;
  transform: scale(0);
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}
.nav__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,196,172,.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.hero__eyebrow {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__tag {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--parchment);
  color: var(--umber-80);
  padding: 5px 14px;
  border-radius: 999px;
}
.hero__tag--outline {
  background: transparent;
  border: 1px solid var(--umber-20);
  color: var(--clay);
}

.hero__title {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
}
.hero__title em {
  display: block;
  color: var(--clay);
  display: block; margin-bottom: -1em;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--umber-80);
  max-width: 38ch;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 500;
  color: var(--umber);
}
.hero__trust-item span:last-child {
  font-size: .75rem;
  color: var(--umber-60);
  max-width: 18ch;
  line-height: 1.4;
}
.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: var(--umber-20);
  flex-shrink: 0;
}

/* hero media */
.hero__media {
  position: relative;
}
.hero__media-wrap {
  position: relative;
}
.hero__media-wrap > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--clay);
  line-height: 1;
}
.hero__badge-text {
  font-size: .75rem;
  color: var(--umber-60);
  line-height: 1.4;
  margin-top: 2px;
}
.hero__media-accent {
  position: absolute;
  top: -32px;
  right: -24px;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--ivory);
}
.hero__media-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media (max-width: 500px) {
  .hero__media-accent { display: none; }
  .hero__badge { left: 0; }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--umber-40);
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--umber-40), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: .4; }
}

/* ═══════════════════════════════════════════
   BRAND STRIP
═══════════════════════════════════════════ */
.strip {
  overflow: hidden;
  background: var(--parchment);
  border-top: 1px solid var(--umber-10);
  border-bottom: 1px solid var(--umber-10);
  padding: 14px 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: stripScroll 22s linear infinite;
  white-space: nowrap;
}
.strip__inner span {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--umber-60);
}
.strip__dot {
  width: 4px !important;
  height: 4px;
  background: var(--sand) !important;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════ */
.products {
  padding: 100px 0;
}
.products__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--umber-20);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--umber-60);
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--umber);
  border-color: var(--umber);
  color: var(--ivory);
}

.products__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}
.product:hover { transform: translateY(-4px); }

.product__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--parchment);
}
.product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.product:hover .product__img img { transform: scale(1.05); }

.product__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product__badge-pill {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--umber);
  color: var(--ivory);
}
.product__badge-pill--new { background: var(--clay); }
.product__badge-pill--sale { background: var(--sage); }

.product__quick {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.product:hover .product__quick {
  opacity: 1;
  transform: translateY(0);
}
.product__quick button {
  background: white;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  box-shadow: var(--shadow-md);
  color: var(--umber);
  transition: background .2s, color .2s;
}
.product__quick button:hover { background: var(--clay); color: white; }

.product__meta {
  padding: 16px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product__info { flex: 1; }
.product__name {
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.product__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .8rem;
  color: var(--umber-60);
  margin-top: 4px;
}
.product__price {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--umber);
  flex-shrink: 0;
  margin-left: 12px;
}
.product__rating {
  font-size: .75rem;
  color: var(--clay);
  margin-top: 6px;
  letter-spacing: 1px;
}

.products__cta-wrap {
  text-align: center;
  margin-top: 56px;
}

/* ═══════════════════════════════════════════
   PHILOSOPHY
═══════════════════════════════════════════ */
.philosophy {
  background: var(--umber);
  padding: 96px 0;
}
.philosophy__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  color: var(--ivory);
  line-height: 1.25;
  font-weight: 300;
}
.philosophy__quote em { font-style: italic; color: var(--clay-light); }

/* ═══════════════════════════════════════════
   COLLECTIONS
═══════════════════════════════════════════ */
.collections {
  padding: 100px 0;
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 860px) {
  .collections__grid { grid-template-columns: repeat(4, 1fr); }
}

.collection {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background .35s ease, transform .3s ease, color .35s ease;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.collection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clay) 0%, #8a4a2e 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.collection:hover::before { opacity: 1; }
.collection:hover { transform: translateY(-4px); color: var(--ivory); }

.collection__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--umber-20);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: color .35s;
}
.collection:hover .collection__num { color: rgba(255,255,255,.2); }

.collection h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color .35s;
}
.collection p {
  font-size: .875rem;
  color: var(--umber-60);
  margin-bottom: auto;
  padding-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: color .35s;
}
.collection:hover p { color: rgba(255,255,255,.8); }

.collection__arrow {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: color .35s;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--ivory-soft);
}
.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials__header h2 { margin-top: 0; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .testimonials__grid { grid-template-columns: 1fr 1.3fr 1fr; align-items: center; }
}

.tcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--umber-06);
  transition: box-shadow .3s, transform .3s;
}
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tcard--featured {
  background: var(--umber);
  color: var(--ivory);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
}
.tcard__label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 16px;
}
.tcard__stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 20px;
}
.tcard--featured .tcard__stars { color: var(--clay-light); }
.tcard__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--umber-80);
  margin-bottom: 28px;
}
.tcard--featured .tcard__quote {
  font-size: 1.25rem;
  color: rgba(247,242,234,.9);
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .7;
}
.tcard__author strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
}
.tcard__author span {
  display: block;
  font-size: .75rem;
  color: var(--umber-60);
}
.tcard--featured .tcard__author span { color: rgba(247,242,234,.5); }
.tcard--featured .tcard__author strong { color: var(--ivory); }

.testimonials__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 72px;
  flex-wrap: wrap;
}
.tstat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tstat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
  color: var(--clay);
}
.tstat__label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--umber-60);
}

/* ═══════════════════════════════════════════
   VITAMINS
═══════════════════════════════════════════ */
.vitamins {
  padding: 100px 0;
  background: var(--parchment);
}
.vitamins__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .vitamins__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.vitamins__media {
  position: relative;
}
.vitamins__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.vitamins__media-tag {
  position: absolute;
  top: 28px;
  right: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.vitamins__media-tag strong {
  font-size: .875rem;
  font-weight: 700;
  color: var(--umber);
}
.vitamins__media-tag span {
  font-size: .75rem;
  color: var(--umber-60);
}

.vitamins__text h2 { margin-bottom: 20px; }
.vitamins__text > p {
  font-size: 1.0625rem;
  color: var(--umber-80);
  max-width: 38ch;
  margin-bottom: 40px;
  line-height: 1.7;
}
.vitamins__list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vitamins__list li {
  border-radius: var(--radius-md);
  transition: background .2s;
}
.vitamins__list li:hover { background: rgba(255,255,255,.6); }

.vitem {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
}
.vitem__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: .875rem;
  font-weight: 800;
  flex-shrink: 0;
}
.vitem__icon--c   { background: rgba(185,114,74,.15); color: var(--clay); }
.vitem__icon--col { background: rgba(143,164,131,.2); color: var(--sage); }
.vitem__icon--omega { background: rgba(61,46,30,.1); color: var(--umber); font-size: 1.1rem; }
.vitem__icon--ha  { background: rgba(201,167,106,.2); color: var(--gold); }

.vitem strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.vitem span {
  font-size: .8125rem;
  color: var(--umber-60);
}

/* ═══════════════════════════════════════════
   JOURNAL
═══════════════════════════════════════════ */
.journal {
  padding: 100px 0;
}
.journal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) {
  .journal__grid { grid-template-columns: repeat(3, 1fr); }
}

.jcard {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--umber-06);
  transition: transform .3s, box-shadow .3s;
}
.jcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.jcard__img {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.jcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.jcard:hover .jcard__img img { transform: scale(1.04); }

.jcard__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.jcard__tag {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.jcard__body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.jcard__body p {
  font-size: .875rem;
  color: var(--umber-60);
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════ */
.newsletter {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--umber) 0%, #2a1c0d 100%);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(185,114,74,.15) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter__inner {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.newsletter__deco {
  font-size: 1.5rem;
  color: var(--clay-light);
  margin-bottom: 20px;
  opacity: .8;
}
.newsletter h2 {
  color: var(--ivory);
  margin-bottom: 16px;
}
.newsletter__inner > p {
  color: rgba(247,242,234,.7);
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.7;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 560px) { .newsletter__form { flex-direction: row; } }
.newsletter__form input {
  flex: 1;
  background: rgba(247,242,234,.1);
  border: 1.5px solid rgba(247,242,234,.2);
  border-radius: 999px;
  padding: 14px 24px;
  color: var(--ivory);
  font: inherit;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}
.newsletter__form input::placeholder { color: rgba(247,242,234,.4); }
.newsletter__form input:focus { border-color: var(--clay-light); }
.newsletter__form button {
  background: var(--clay);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font: inherit;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter__form button:hover { background: var(--clay-light); }
.newsletter__success {
  margin-top: 24px;
  color: var(--sage-light);
  font-weight: 500;
}
.newsletter__error {
  margin-top: 24px;
  color: #e08a7d;
  font-weight: 500;
}
.newsletter__form button:disabled {
  opacity: .6;
  cursor: wait;
}
.newsletter__note {
  margin-top: 20px;
  font-size: .75rem;
  color: rgba(247,242,234,.35);
}
.newsletter__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.newsletter__note a:hover {
  color: rgba(247,242,234,.75);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--umber-10);
}
.footer__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; }
}

.footer__brand { grid-column: span 2; }
@media (min-width: 900px) { .footer__brand { grid-column: span 1; } }

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.footer__logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer__brand > p {
  font-size: .875rem;
  color: var(--umber-60);
  max-width: 28ch;
  line-height: 1.6;
  margin-bottom: 28px;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--umber-20);
  display: grid;
  place-items: center;
  color: var(--umber-60);
  transition: all .2s;
}
.footer__social a:hover {
  border-color: var(--clay);
  color: var(--clay);
  background: rgba(185,114,74,.08);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--umber);
  margin-bottom: 24px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer ul a {
  font-size: .875rem;
  color: var(--umber-60);
  transition: color .2s;
}
.footer ul a:hover { color: var(--clay); }

.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--umber-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--umber-40);
}
.footer__bottom div {
  display: flex;
  gap: 28px;
}

/* ============================================================
   HARMONY ADDITIONS — Language Switcher, Categories, Products,
   Modal, Product Lines, Overlay
   ============================================================ */

/* ---- Language Switcher ---- */
.nav__lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 1rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-ink, #1a1a1a);
  padding: 0.25rem 0.3rem;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
}
.lang-sep {
  font-size: 0.65rem;
  opacity: 0.3;
  color: var(--c-ink, #1a1a1a);
}

/* ---- Mobile menu ---- */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 1rem; }
.nav__mobile-links a { font-size: 1.1rem; letter-spacing: 0.08em; }
.nav__mobile-lang { display: flex; gap: 1rem; }

/* ---- Aesthetics / Categories Section ---- */
.aesthetics-section {
  padding: 5rem 0 4rem;
  background: #fafaf9;
}
.aesthetics-section .section-head--stack {
  text-align: center;
  margin-bottom: 3rem;
}
.aesthetics-section .section-head--stack .eyebrow,
.aesthetics-section .section-head--stack h2 {
  text-align: center;
}
.aesthetics-section__desc {
  max-width: 640px;
  margin: 1rem auto 0;
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (max-width: 380px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

.category-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  text-align: center;
}
.category-card:hover {
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.category-card__icon {
  width: 56px;
  height: 56px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}
/* Thin hand-drawn stroke style */
.category-card__icon svg,
.category-card__icon i svg {
  width: 40px !important;
  height: 40px !important;
  stroke-width: 0.75 !important;
}
.category-card__name {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #1a1a1a;
  line-height: 1.3;
}

/* ---- Product Lines Section ---- */
.product-lines-section {
  padding: 4rem 0;
  background: #fff;
}
.product-lines-section .section-head--stack {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-subtitle {
  font-size: 1rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}
.product-lines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .product-lines-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-lines-grid { grid-template-columns: 1fr; }
}
.product-line-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-line-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,16,10,0.78) 0%,
    rgba(20,16,10,0.20) 45%,
    rgba(20,16,10,0.00) 100%
  );
  border-radius: inherit;
  z-index: 1;
}
.product-line-card__badge {
  position: relative;
  z-index: 2;
  padding: 0 1.75rem;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}
.product-line-card p {
  position: relative;
  z-index: 2;
  padding: 0 1.75rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin: 0;
  opacity: 1;
}
.bg-emerald { background-image: url('https://images.pexels.com/photos/3762878/pexels-photo-3762878.jpeg?auto=compress&cs=tinysrgb&w=800'); }
.bg-blue    { background-image: url('https://images.pexels.com/photos/8140902/pexels-photo-8140902.jpeg?auto=compress&cs=tinysrgb&w=800'); }
.bg-teal    { background-image: url('https://images.pexels.com/photos/5468701/pexels-photo-5468701.jpeg?auto=compress&cs=tinysrgb&w=800'); }
.bg-indigo  { background-image: url('https://images.pexels.com/photos/17199435/pexels-photo-17199435.jpeg?auto=compress&cs=tinysrgb&w=800'); }

/* ---- Category Overlay ---- */
.category-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #f7f5f2;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.category-overlay__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 3rem 5rem;
}
@media (max-width: 768px) {
  .category-overlay__inner { padding: 1.5rem 1.25rem 3rem; }
}
.category-overlay__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 1.5rem;
}
.category-overlay__back {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.category-overlay__back:hover { background: #f0ede6; }
.category-overlay__title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ---- Products Grid (inside overlay) ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
}
.product-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f0ea;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.06);
}
.product-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-card__name {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
}
.product-card__desc {
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.6;
  flex: 1;
}
.product-card__size {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: #f3f0ea;
  color: #7c6a50;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ---- Loading Spinner ---- */
.products-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}
.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: #7c6a50;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  opacity: 0.5;
  font-size: 1rem;
}

/* ---- Product Modal ---- */
.product-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  backdrop-filter: blur(4px);
}
.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 400;
  background: #fff;
  border-radius: 16px;
  width: min(900px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.product-modal__close:hover { background: rgba(0,0,0,0.12); }
.product-modal__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 640px) {
  .product-modal__inner { grid-template-columns: 1fr; }
}
.product-modal__image {
  background: #f3f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}
.product-modal__image img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  padding: 2rem;
}
@media (max-width: 640px) {
  .product-modal__image { border-radius: 16px 16px 0 0; min-height: 240px; }
}
.product-modal__info {
  padding: 2.5rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-modal__category {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.product-modal__name {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
}
.product-modal__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.75;
  flex: 1;
}
.product-modal__meta {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.product-modal__meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.product-modal__meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
}
.product-modal__meta-value { font-size: 0.9rem; font-weight: 500; }
/* ── Product Line Cards — Clickable links ── */
.product-line-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.product-line-card--link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.product-line-card__arrow {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 3;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.product-line-card--link:hover .product-line-card__arrow {
  color: rgba(255,255,255,0.95);
  transform: translateX(5px);
}


/* ── Lightbox ─────────────────────────────────────────────── */
#lkLightbox{display:none;position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,0.92);align-items:center;justify-content:center;flex-direction:column;user-select:none;}
#lkLightbox.lk-open{display:flex;}
#lkWrap{display:flex;align-items:center;justify-content:center;max-width:90vw;max-height:82vh;overflow:hidden;}
#lkImg{max-width:88vw;max-height:80vh;object-fit:contain;border-radius:10px;transform-origin:center;transition:transform 0.08s;cursor:zoom-in;}
#lkClose{position:fixed;top:18px;right:20px;width:38px;height:38px;background:rgba(255,255,255,0.15);border:none;border-radius:50%;color:#fff;font-size:1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;transition:background 0.15s;}
#lkClose:hover{background:var(--clay);}
#lkPrev,#lkNext{position:fixed;top:50%;transform:translateY(-50%);width:44px;height:44px;background:rgba(255,255,255,0.12);border:none;border-radius:50%;color:#fff;font-size:1.6rem;cursor:pointer;display:none;align-items:center;justify-content:center;transition:background 0.15s;z-index:2;}
#lkPrev{left:16px;}#lkNext{right:16px;}
#lkPrev:hover,#lkNext:hover{background:var(--clay);}
#lkControls{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);padding:6px 16px;border-radius:999px;}
#lkControls button{background:none;border:none;color:#fff;font-size:1.1rem;cursor:pointer;width:28px;height:28px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background 0.15s;}
#lkControls button:hover{background:rgba(255,255,255,0.2);}
#lkControls span{color:rgba(255,255,255,0.8);font-size:0.8rem;min-width:42px;text-align:center;}
#lkCounter{position:fixed;top:20px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,0.6);font-size:0.8rem;letter-spacing:0.05em;}