:root{
  --bg: #f6f2eb;
  --bg-soft: #fbf8f3;
  --surface: #f1ece3;
  --surface-2: #e9e2d7;
  --text: #3f4538;
  --text-soft: #6f7666;
  --heading: #707a63;
  --accent: #8a9578;
  --gold:#9a7b4f;
  --accent-deep: #657055;
  --line: rgba(90, 98, 80, 0.18);
  --shadow: 0 20px 60px rgba(61, 58, 47, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1280px;
  --transition: 300ms ease;

  --lh-header-text: #f7f3ec;
  --lh-header-text-dark: #46503d;
  --lh-brand-color: #f7f3ec;
  --lh-brand-color-scrolled: #6f7863;
  --lh-header-bg-scrolled: rgba(248, 244, 237, 0.84);
  --lh-header-border: rgba(95, 105, 85, 0.10);
  --lh-header-shadow: 0 12px 34px rgba(44, 42, 35, 0.08);
  --lh-mobile-bg: rgba(248, 244, 237, 0.97);
  --lh-hover-light: rgba(255,255,255,0.82);
  --lh-hover-dark: #7b856d;
  --lh-badge-bg-light: rgba(255,255,255,0.96);
  --lh-badge-text-light: #4f5a45;
  --lh-badge-bg-dark: #6f7863;
  --lh-badge-text-dark: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(138,149,120,0.06), transparent 30%),
    linear-gradient(to bottom, #f9f6f1 0%, #f5f0e8 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding-top: 10px;
}

/* =========================
   EYEBROWS
   ========================= */

   .eyebrow {
       display: inline-block;
       font-size: 12px;
       letter-spacing: 0.22em;
       text-transform: uppercase;
       color: #a8895f;
       display: block;
       text-align: center;
       font-weight: 100;
       margin-bottom: 14px;
   }

/* Signature uses .product-badge, not .eyebrow */
.product-badge--signature {
  font-size: 0.84rem;
  letter-spacing: 0;
}

/* Story */
.eyebrow--story {
	display: block;
	    width: min(calc(100% - 40px), var(--max));
	    margin: 0 auto 34px;
	    padding-left: 58px;
	    font-size: 42px;
	    font-weight: 200;
	    letter-spacing: 0.24em;
	    color: #a8895f;
	    text-align: left;
	    position: relative;
	    top: 63px;
	    left: auto;
}

/* Values */
.eyebrow--values {
  display: block;
  text-align: center;
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 0.22em;
  color: var(--gold);
}

/* Latest from Linden */
.eyebrow--latest {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
}

/* Testimonials */
.eyebrow--testimonials {
 font-size: 28px;
  letter-spacing: 0.22em;
}

.section-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #5f6a52;
  font-weight: 600;
}

.section-title-small {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-copy {
  max-width: 700px;
  font-size: 1rem;
  color: #7a8272;
  margin: 0;
}

/* =========================
   BUTTONS
   ========================= */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  margin-bottom: 20px;
}

.btn-row--center {
  justify-content: center;
  margin-top: 34px;
}

.btn-row--single {
  justify-content: center;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 10px 25px rgba(72, 79, 60, 0.18);
  font-family: "Nunito", sans-serif;
  font-size: 19px;
}

.btn-primary:hover {
  background: #59624b;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--accent-deep);
}

.btn-outline:hover {
  background: rgba(138,149,120,0.08);
  border-color: rgba(101,112,85,0.35);
}

.hero-floating-cta {
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  padding: 0 28px !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;

  position: absolute;
  opacity: 0.85;
  right: 60px;
  bottom: 60px;
  min-width: 220px;
}

.hero-floating-cta::after {
  content: "→";
  margin-left: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: transform 0.25s ease;
}

.hero-floating-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow:
    0 24px 58px rgba(35, 28, 18, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.30);
}

.hero-floating-cta:hover::after {
  transform: translateX(4px);
}

/* =========================
   HERO
   ========================= */

.hero{
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d7d1c8;
  isolation: isolate;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: none !important;
  scale: 1 !important;
  rotate: 0deg !important;
  filter: none !important;
  -webkit-box-reflect: unset !important;
  backface-visibility: hidden;
}

.hero-video--mobile {
  display: none;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-container{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content--center{
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  color: #f8f5f0;
  padding-top: 100px;
}

.hero-kicker{
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
}

.hero-title{
  margin: 0;
  font-weight: 200;
  opacity: 0.8;
  font-family: "Nunito", sans-serif;
  font-size: 97px;
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: #f7f2ea;
  text-transform: uppercase;
}

.hero-subtitle{
  max-width: 760px;
  opacity: 0.8;
  margin: 26px auto 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.90);
}

.hero-cta{
  min-width: 220px;
  justify-content: center;
  padding-left: 28px;
  padding-right: 28px;
}

.hero::before,
.hero::after,
.hero-video::before,
.hero-video::after {
  -webkit-box-reflect: unset !important;
}

/* =========================
   SIGNATURE
   ========================= */

.section-signature {
  padding-top: 110px;
}

.hero-product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-product-media {
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(60, 55, 45, 0.15);
  position: relative;
}

.hero-product-media--signature {
  background:
    linear-gradient(180deg, rgba(34,30,25,0.10), rgba(34,30,25,0.18)),
    url('/images/candle4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-panel {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(101,112,85,0.10);
  padding: 42px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(101,112,85,0.14);
  background: rgba(138,149,120,0.07);
  color: var(--accent-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  margin-bottom: 18px;
}

.product-panel h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 51px;
  text-align: center;
  padding-bottom: 15px;
  display: block;
  line-height: 0.92;
  color: var(--heading);
  font-weight: 600;
}

.product-panel p {
  margin: 0 0 22px;
  color: var(--text-soft);
}

.note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.note-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef1e8;
  color: var(--accent-deep);
  font-size: 0.9rem;
  border: 1px solid rgba(101,112,85,0.08);
}

/* =========================
   STORY - EDITORIAL
   ========================= */

.section-story-editorial {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 2px solid rgba(101,112,85,0.10);
}

.story-editorial {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 64px;
}

.story-editorial-content {
  max-width: 500px;
}

.story-editorial-title {
  margin-bottom: 22px;
  max-width: 520px;
  line-height: 0.95;
}

.story-editorial-content .section-copy {
  font-size: 1.04rem;
  line-height: 1.85;
  max-width: 460px;
}

.story-editorial-content .btn-row {
  margin-top: 32px;
}

.story-editorial-content .btn-outline {
  border-color: rgba(101,112,85,0.22);
  background: rgba(255,255,255,0.32);
}

.story-editorial-content .btn-outline:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

.story-editorial-media {
  position: relative;
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(34, 30, 25, 0.04),
      rgba(34, 30, 25, 0.14)
    ),
    url('/images/storyvibe.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 24px 70px rgba(61, 58, 47, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.story-editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 36%),
    linear-gradient(to bottom, transparent 52%, rgba(38,34,28,0.18));
  pointer-events: none;
}

/* =========================
   VALUES
   ========================= */

.section-values {
  padding-top: 72px;
}

.values-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.52));
  border: 1px solid rgba(101,112,85,0.10);
  border-radius: 34px;
  padding: 44px;
  box-shadow:
    0 20px 60px rgba(61, 58, 47, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
  position: relative;
  overflow: hidden;
}

.values-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.45), transparent 28%),
    radial-gradient(circle at bottom right, rgba(138,149,120,0.05), transparent 24%);
  pointer-events: none;
}

.values-shell > * {
  position: relative;
  z-index: 1;
}

.values-header {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.values-title {
  margin: 0 auto;
  max-width: 760px;
  line-height: 0.98;
  font-size: 24px;
  text-align: center;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 34px 30px;
  min-height: 220px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,245,239,0.64));
  border: 1px solid rgba(101,112,85,0.10);
  box-shadow:
    0 12px 30px rgba(61, 58, 47, 0.055),
    inset 0 1px 0 rgba(255,255,255,0.68);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(101,112,85,0.18);
  box-shadow:
    0 18px 38px rgba(61, 58, 47, 0.085),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.value-icon-card {
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(239,242,233,0.95));
  border: 1px solid rgba(101,112,85,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.value-icon {
  display: grid;
  place-items: center;
  background: #eef1e8;
  color: var(--accent-deep);
}

.value-icon--large {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6f8f2, #e8ede1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 10px 22px rgba(101,112,85,0.12);
  overflow: hidden;
}

.value-icon-image {
  width: 72px;
  height: 72px;
  max-width: none;
  object-fit: contain;
  display: block;
}

.value-text h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.value-text p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 38ch;
}

/* =========================
   CURATED PRODUCTS
   ========================= */

.curated-section {
  padding-top: 72px;
}

.curated-intro {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 34px;
}

.curated-title {
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 0.96;
}

.curated-copy {
  max-width: 560px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  gap: 22px;
}

.products-grid--launch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(101,112,85,0.10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__link {
  display: block;
}

.product-thumb {
  aspect-ratio: 1 / 1.12;
  position: relative;
}

.product-thumb::after {
  content: "Product Image";
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.product-thumb--one {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.38), transparent 30%),
    linear-gradient(135deg, #ddd6cb, #c0b3a1);
}

.product-thumb--two {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.28), transparent 32%),
    linear-gradient(135deg, #b7ad9f, #8d7d69);
}

.product-thumb--three {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.32), transparent 32%),
    linear-gradient(135deg, #d8d1c4, #b5aa99);
}

.product-info {
  padding: 22px 20px 24px;
}

.product-name {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--heading);
}

.product-sub {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  font-size: 0.95rem;
  color: var(--accent-deep);
  font-weight: 600;
}

.mini-link {
  color: var(--accent-deep);
  font-size: 0.93rem;
  font-weight: 600;
}

.curated-footer--clean {
  text-align: center;
  margin-top: 26px;
}

.curated-button {
  background: #6f7863;
  color: #fff;
  border: none;
  border-radius: 999px;
  min-height: 46px;
  padding: 13px 26px;
  box-shadow: 0 8px 22px rgba(60, 65, 50, 0.18);
  transition: all 0.3s ease;
}

.curated-button:hover {
  background: #5f6755;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(60, 65, 50, 0.22);
}

/* =========================
   TESTIMONIALS - CONNECTED
   ========================= */

.section-testimonials {
  padding-top: 88px;
}

.testimonial-shell-connected {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(101,112,85,0.08);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.testimonial-shell-connected::after {
  content: "";
  position: absolute;

  top: 52px;
  bottom: 52px;

  /* matches your grid split: 0.9fr / 1.1fr = 45% */
  left: 45%;

  width: 1px;
  transform: translateX(-0.5px);

  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(101, 112, 85, 0.08) 18%,
    rgba(101, 112, 85, 0.16) 50%,
    rgba(101, 112, 85, 0.08) 82%,
    transparent 100%
  );

  pointer-events: none;
}

.testimonial-side {
  padding: 46px 44px;
  min-width: 0;
}

.testimonial-side--intro {
  background: rgba(255,255,255,0.32);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-side--quote {
  background: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-heading {
  max-width: 360px;
  margin: 0 0 16px;
}

.testimonial-copy {
  max-width: 420px;
  margin: 0;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: testimonialFade 0.45s ease;
}

.testimonial-slide.is-active {
  display: block;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stars {
  color: #4f5a45;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.testimonial-quote {
  margin: 0 0 26px;
  font-weight: 200;
  font-family: "Nunito", sans-serif;
  font-size: 45px;
  line-height: 1;
  color: var(--heading);
  max-width: 680px;
}

.testimonial-author {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.testimonial-dots--connected {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(101,112,85,0.20);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.is-active {
  width: 24px;
  background: var(--accent-deep);
}

.testimonial-dot:hover {
  background: rgba(101,112,85,0.45);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-shell-connected {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-shell-connected:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 70px rgba(61, 58, 47, 0.10);
  }
}

.testimonial-side--intro {
  justify-content: center;
}

.testimonial-heading {
  margin-bottom: 18px;
}

.testimonial-copy {
  max-width: 390px;
}

.testimonial-quote {
  max-width: 620px;
}

/* =========================
   LATEST FROM LINDEN
   ========================= */

.latest-linden-section {
  padding-top: 72px;
}

.latest-linden-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.latest-linden-title {
  max-width: 760px;
  margin: 0 auto 16px;
}

.latest-linden-copy {
  max-width: 560px;
  margin: 0 auto;
}

.latest-linden-slider-wrap {
  position: relative;
}

.latest-linden-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}

.latest-linden-slider::-webkit-scrollbar {
  display: none;
}

.social-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(101,112,85,0.10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(61, 58, 47, 0.11);
}

.social-card__image {
  aspect-ratio: 1 / 1.05;
  background-size: cover;
  background-position: center;
}

.social-card__image--instagram {
  background-image: url("/images/storyvibe.png");
}

.social-card__image--tiktok {
  background-image: url("/images/candle4.png");
}

.social-card__image--pinterest {
  background-image: url("/images/Insense.png");
}

.social-card__image--facebook {
  background-image: url("/images/lindenbundle.png");
}

.social-card__image--x {
  background-image: url("/images/outlet.png");
}

.social-card__body {
  padding: 22px 22px 24px;
}

.social-card__platform {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(138,149,120,0.08);
  border: 1px solid rgba(101,112,85,0.10);
  color: var(--accent-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--heading);
}

.social-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.social-card__link {
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.latest-arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(101,112,85,0.12);
  background: rgba(255,255,255,0.82);
  color: var(--accent-deep);
  box-shadow: 0 12px 28px rgba(61,58,47,0.12);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.latest-arrow--prev {
  left: -18px;
}

.latest-arrow--next {
  right: -18px;
}

.latest-arrow:hover {
  background: var(--accent-deep);
  color: #fff;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (min-width: 1101px) {
  .curated-title {
    font-size: clamp(3.2rem, 5vw, 5rem);
  }
}

@media (max-width: 1100px) {
  .hero-product,
  .story-editorial {
    grid-template-columns: 1fr;
  }

  .testimonial-shell-connected {
    grid-template-columns: 1fr;
  }

  .testimonial-shell-connected::after {
    display: none;
  }

  .testimonial-side--intro {
    border-bottom: 1px solid rgba(101,112,85,0.08);
  }

  .values-inline {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid--launch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-product-media {
    min-height: 500px;
  }

  .story-editorial {
    gap: 34px;
  }

  .story-editorial-content {
    max-width: 760px;
  }

  .story-editorial-content .section-copy {
    max-width: 680px;
  }

  .story-editorial-media {
    min-height: 420px;
  }

  .curated-intro {
    margin-bottom: 28px;
  }

  .curated-title {
    max-width: 700px;
  }
}

@media (max-width: 980px){
  .lh-header__inner--split{
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .lh-brand--left{
    justify-self: start;
  }

  .lh-nav--main{
    display: none;
  }

  .lh-menu-toggle{
    display: block;
    justify-self: end;
  }

  .hero-floating-cta {
    right: 32px;
    bottom: 32px;
  }
}

@media (max-width: 900px) {
  .social-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 7px 0;
  }

  .hero{
    min-height: 100svh;
    height: 100svh;
  }

  .hero-video--desktop {
    display: none;
  }

  .hero-video--mobile {
    display: block;
  }

  .hero-content--center{
    padding-top: 84px;
  }

  .hero-title{
    position: relative;
    font-size: 40px;
    line-height: 0.92;
    letter-spacing: 0.06em;
    margin-top: -83px;
  }

  .hero-subtitle{
    font-size: 15px;
    line-height: 1.35;
    max-width: 92%;
  }

  .hero-floating-cta {
    position: absolute;
    bottom: 32px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
  }

  .hero-product,
  .values-inline,
  .products-grid--launch {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .values-shell {
    padding: 28px;
  }

  .product-panel p {
    margin: 0 0 18px;
  }

  .note-list {
    gap: 8px;
    margin-bottom: 18px;
  }

  .note-pill {
    font-size: 0.84rem;
    padding: 9px 12px;
  }

  .btn-row {
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .btn-row--center {
    gap: 12px;
  }

  .section-story-editorial {
    margin-top: 28px;
    padding-top: 56px;
  }

  .eyebrow--story {
    width: 100%;
    padding-left: 0;
    margin: 0 auto 22px;
    font-size: 24px;
    letter-spacing: 0.24em;
    text-align: center;
	display: block;
	width: min(calc(100% - 40px), var(--max));
	margin: 0 auto 34px;
	font-size: 37px;
	font-weight: 200;
	letter-spacing: 0.24em;
	color: #a8895f;
	position: static;
	top: auto;


  }

  .story-editorial {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .story-editorial-media {
    order: 1;
    width: 100%;
    min-height: 300px;
    border-radius: 24px;
    background-position: center;
  }

  .story-editorial-content {
    order: 2;
    max-width: 100%;
    text-align: center;
  }

  .story-editorial-title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 0.98;
  }

  .story-editorial-content .section-copy {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .story-editorial-content .btn-row {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .values-shell {
    padding: 28px;
    border-radius: 26px;
  }

  .values-header {
    margin-bottom: 22px;
  }

  .values-title {
    font-size: 22px;
    line-height: 1;
  }

  .value-card {
    padding: 24px 22px;
    min-height: 170px;
    border-radius: 22px;
    gap: 20px;
  }

  .value-icon-card {
    border-radius: 22px;
    padding: 6px;
  }

  .value-icon--large {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 20px;
  }

  .value-icon-image {
    width: 58px;
    height: 58px;
  }

  .value-text h3 {
    font-size: 1.55rem;
  }

  .value-text p {
    font-size: 0.98rem;
    max-width: none;
  }

  .curated-section {
    padding-top: 56px;
  }

  .curated-intro {
    margin-bottom: 24px;
  }

  .curated-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 1;
  }

  .curated-copy {
    max-width: 100%;
  }

  .products-grid--launch {
    gap: 20px;
  }

  .curated-footer--clean {
    margin-top: 22px;
  }

  .section-testimonials {
    padding-top: 56px;
  }

  .testimonial-shell-connected {
    border-radius: 24px;
  }

  .testimonial-side {
    padding: 28px 24px;
  }

  .testimonial-heading {
	max-width: none;
	font-size: 27px;
	line-height: 1;
	text-align: center;
	display: block;
  }

  .testimonial-copy {
    max-width: none;
  }

  .testimonial-side--intro {
    padding-bottom: 22px;
  }

  .testimonial-side--quote {
    padding-top: 24px;
  }

  .testimonial-quote {
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 1.02;
  }

  .testimonial-dots--connected {
    margin-top: 20px;
  }
}

@media (max-width: 640px){
  .lh-header__inner--split{
    width: min(100% - 24px, 1240px);
    min-height: 78px;
  }

  .lh-brand--left{
    font-size: 1.45rem;
    letter-spacing: 0.18em;
  }

  .lh-mobile-nav{
    width: min(100% - 24px, 1240px);
  }

  .btn-row--single {
    justify-content: center;
  }

  .product-panel h2 {
    font-size: 32px;
  }

  .latest-linden-section {
    padding-top: 56px;
  }

  .latest-linden-intro {
    text-align: left;
    margin-bottom: 24px;
  }

  .latest-linden-title,
  .latest-linden-copy {
	display: block;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
  }
  
  .latest-linden-title {
  display: block;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}
  .social-card {
    flex-basis: 84%;
    border-radius: 24px;
  }

  .social-card__body {
    padding: 20px;
  }

  .latest-arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .section-signature {
    padding-top: 86px;
  }

  .section-story-editorial {
    padding-top: 33px;
  }

  .eyebrow--story,
  .eyebrow--values,
  .eyebrow--latest,
  .eyebrow--testimonials {
    font-size: 24px;
  }
  
  .eyebrow--testimonials {
  font-size: 24px;
  letter-spacing: 0.28em;
  opacity: 0.85;
}
  .eyebrow--values,
  .eyebrow--latest {
    display: block;
    text-align: center;
    margin: 0 auto 16px;
    position: static;
    top: auto;
  }

  .section-values,
  .curated-section,
  .section-testimonials {
    padding-top: 42px;
  }

  .product-panel,
  .values-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .story-editorial-media {
    min-height: 260px;
  }

  .values-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .value-card {
    padding: 22px 18px;
    gap: 18px;
  }

  .value-icon--large {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
  }

  .value-icon-image {
    width: 54px;
    height: 32px;
  }

  .value-text h3 {
    font-size: 1.3rem;
  }

  .testimonial-side {
    padding: 24px 20px;
  }

  .testimonial-author {
    font-size: 0.95rem;
  }
}

/* =========================================================
   FINAL OVERRIDES - SIGNATURE MOBILE IMAGE FLOW
   Desktop remains the original image-left / content-right layout.
   Mobile visually places the image between paragraph and pills/buttons.
   ========================================================= */

/* Desktop / tablet base: keep original split layout */
.section-signature .hero-product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.section-signature .hero-product > .hero-product-media {
  grid-column: 1;
}

.section-signature .product-panel {
  grid-column: 2;
}

.section-signature .hero-product-media,
.section-signature .hero-product-media--signature {
  border-radius: 34px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Mobile signature reorder: Title → Paragraph → Image → Pills → Buttons */
@media (max-width: 720px) {
  .section-signature .hero-product {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(101,112,85,0.10);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .section-signature .product-panel {
    display: contents;
  }

  .section-signature .product-badge {
    order: 1;
    width: fit-content;
	margin-bottom: -28px;
	padding: 8px 27px;
  }

  .section-signature .product-panel h2 {
    order: 2;
  }

  .section-signature .product-panel p {
	order: 3;
	        margin-bottom: -25px;
	        margin-top: -34px;
  }

  .section-signature .hero-product > .hero-product-media {
    order: 4;
    grid-column: auto;
    width: 100%;
    min-height: 260px;
    margin: 0 0 -18px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(60, 55, 45, 0.10);
  }

  .section-signature .note-list {
    order: 5;
    margin-bottom: 18px;
  }

  .section-signature .btn-row {
    order: 6;
   margin-top: -40px;
  }
}

@media (max-width: 520px) {
  .section-signature .hero-product > .hero-product-media,
  .section-signature .product-panel > .hero-product-media {
    min-height: 240px;
    border-radius: 22px;
  }
}

.latest-linden-slider {
  scroll-snap-type: x mandatory;
}

.social-card {
  scroll-snap-align: start;
}

/* =========================================================
   TESTIMONIALS – FINAL DESKTOP POLISH (DROP-IN)
   ========================================================= */

@media (min-width: 1101px) {

  /* Layout balance */
  .testimonial-shell-connected {
    grid-template-columns: 44% 56%;
    min-height: 430px;
  }

  /* Global padding refinement */
  .testimonial-side {
    padding: 54px 58px;
  }

  .testimonial-side--intro {
    padding-left: 66px;
  }

  .testimonial-side--quote {
    padding-left: 62px;
    padding-right: 68px;
  }

  /* LEFT SIDE (Title + Copy) */
  .testimonial-heading {
	font-size: 42px;
	        line-height: 0.9;
	        display: block;
	        letter-spacing: 0.01em;
	        max-width: 440px;
	        margin-bottom: 18px;
  }

  .testimonial-copy {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 460px;
  }

  /* RIGHT SIDE (Quote) */
  .testimonial-quote {
    font-size: clamp(2.8rem, 3.2vw, 4.4rem);
    line-height: 1.02;
    max-width: 760px;
  }

  .testimonial-author {
    font-size: 1.02rem;
  }

  .stars {
    margin-bottom: 20px;
  }
}
