/* =============================================================
   Hakuna Matte — Nordic Luxury Override
   Aesthetic: Kinfolk × Aesop — luminous white, warm ivory,
              refined sage accent, editorial Cormorant italic
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================= */

/* ── TOKENS ──────────────────────────────────────────────────── */

:root {
  --font-display: 'Gloock', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Nordic Ivory palette */
  --white:       #FFFFFF;
  --ivory:       #FAF8F4;       /* warm ivory — section alt */
  --linen:       #F2EDE3;       /* warm linen — highlighted surfaces */
  --ink:         #1E1C18;       /* warm near-black — headlines */
  --ink-mid:     #6B6560;       /* warm gray — body text */
  --ink-light:   #A8A39C;       /* stone — labels, captions */
  --sage:        #6B9080;       /* muted sage — primary accent */
  --sage-hover:  #527060;
  --sage-light:  #EAF1ED;       /* pale sage tint — subtle bg */
  --sand:        #C5A882;       /* warm sand — secondary accent */
  --border:      #E5E0D8;       /* warm linen border */
  --dark:        #1C1A16;       /* rich charcoal — dark sections */
  --dark-2:      #141210;

  /* Legacy aliases used by style.css components */
  --navy:        var(--ink);
  --navy-2:      var(--dark-2);
  --blue:        #4F7060;
  --blue-hover:  var(--sage-hover);
  --blue-light:  var(--sage-light);
  --coral:       var(--sage);
  --coral-hover: var(--sage-hover);
  --off-white:   var(--ivory);
  --light-gray:  var(--linen);
  --text:        var(--ink);
  --text-mid:    var(--ink-mid);
  --text-light:  var(--ink-light);

  --shadow-sm:   0 1px 8px rgba(30, 28, 24, 0.05);
  --shadow-md:   0 6px 28px rgba(30, 28, 24, 0.07);
  --shadow-lg:   0 20px 60px rgba(30, 28, 24, 0.10);
  --shadow-card: 0 1px 12px rgba(30, 28, 24, 0.06);

  --radius-sm: 3px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

/* ── GRAIN OVERLAY (barely perceptible) ──────────────────────── */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* ── BASE ────────────────────────────────────────────────────── */

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── ANNOUNCE BAR ────────────────────────────────────────────── */

.announce {
  background: var(--dark);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(250, 248, 244, 0.55);
}

/* ── NAVIGATION ──────────────────────────────────────────────── */

.nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(229, 224, 216, 0.50);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(30, 28, 24, 0.06);
}

.nav__logo-img {
  height: 38px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: var(--ink-mid);
}

.nav__link:hover { color: var(--ink); }

.nav__link::after {
  background: var(--sage);
  height: 1px;
}

/* ── HERO ────────────────────────────────────────────────────── */

.hero__overlay {
  background: linear-gradient(
    165deg,
    rgba(8, 8, 6, 0.02) 0%,
    rgba(8, 8, 6, 0.18) 45%,
    rgba(8, 8, 6, 0.52) 100%
  );
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.55);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.8vw, 96px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FAF8F4;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.14);
  overflow: visible;
  padding-bottom: 0.08em;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.015em;
  color: rgba(250, 248, 244, 0.58);
  line-height: 1.78;
}

.hero__cta {
  background: rgba(250, 248, 244, 0.92);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  padding: 16px 46px;
  border-radius: 2px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.hero__cta:hover {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 10px 36px rgba(107, 144, 128, 0.30);
  transform: translateY(-2px);
}

.hero__scroll-line {
  background: linear-gradient(to bottom, rgba(250, 248, 244, 0.45), transparent);
}

/* ── SECTION TYPOGRAPHY ──────────────────────────────────────── */

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.section-title-blue {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.1;
}

.section-title-blue::after {
  display: none;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.82;
  letter-spacing: 0.01em;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */

.btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 14px 34px;
  transition: all 0.28s ease;
}

.btn--coral {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.btn--coral:hover {
  background: var(--sage-hover);
  border-color: var(--sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 144, 128, 0.25);
}

.btn--blue-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--blue-outline:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn--white-outline:hover {
  color: var(--ink);
  background: var(--ivory);
}

/* ── PRODUCTS SECTION ────────────────────────────────────────── */

.bestsellers {
  background: var(--white);
}

.products__tabs {
  border-bottom: 1px solid var(--border);
  gap: 2px;
  display: flex;
  flex-wrap: wrap;
}

.products__tab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: 10px 22px;
  color: var(--ink-light);
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.products__tab:hover { color: var(--ink); }
.products__tab.active {
  color: var(--ink);
  border-bottom: 2px solid var(--sage);
}

@media (max-width: 640px) {
  .products__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
  }
  .products__tabs::-webkit-scrollbar { display: none; }
  .products__tab {
    padding: 10px 16px;
    font-size: 10px;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.32s cubic-bezier(.22,.68,0,1.15), box-shadow 0.32s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(30, 28, 24, 0.10);
  border-color: rgba(107, 144, 128, 0.22);
}

.product-card__img-wrap {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  background: var(--ivory);
}

.product-card__badge {
  background: var(--sage);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.product-card__badge--new {
  background: var(--ink);
}

.product-card__cat {
  color: var(--sage);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.product-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.68;
}

/* ── COLLECTIONS FEATURE ─────────────────────────────────────── */

/* Collections panels — lifestyle fotók */
.cf__bg--kids {
  background-image: url('/images/lifestyle/lifestyle-boy.webp');
  background-size: cover;
  background-position: center 30%;
}

.cf__bg--sport {
  background-image: url('/images/lifestyle/lifestyle-baby.webp');
  background-size: cover;
  background-position: center 40%;
}

.cf__content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 60%);
  padding: 48px 52px;
}

.cf__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.50);
}

.cf__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #FAF8F4;
  line-height: 1.05;
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}

.cf__btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  background: rgba(250, 248, 244, 0.90);
  color: var(--ink);
  backdrop-filter: blur(10px);
  border: none;
  transition: all 0.25s ease;
}

.cf__btn:hover {
  background: var(--sage);
  color: #fff;
}

/* ── BRAND WHY ───────────────────────────────────────────────── */

/* Clean ivory — no grid pattern, pure surface */
.brand-why {
  background: var(--ivory);
  position: relative;
}

/* Hairline top/bottom rule for gentle separation */
.brand-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: none;
  pointer-events: none;
}

.brand-why__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 16px rgba(30, 28, 24, 0.05);
  padding: 50px 40px;
  transition: transform 0.30s ease, box-shadow 0.30s ease, border-color 0.30s ease;
}

.brand-why__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 28, 24, 0.09);
  border-color: rgba(107, 144, 128, 0.28);
}

.brand-why__icon {
  color: var(--sage);
  width: 42px;
  height: 42px;
}

.brand-why__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.brand-why__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink-mid);
}

/* ── AWARDS ──────────────────────────────────────────────────── */

.awards {
  background: var(--white);
  border-color: var(--border);
  animation: none !important;
}

.award-item__img {
  filter: drop-shadow(0 1px 6px rgba(30, 28, 24, 0.07));
  height: 82px;
  transition: transform 0.30s ease, filter 0.30s ease;
}

.award-item:hover .award-item__img {
  filter: drop-shadow(0 6px 18px rgba(107, 144, 128, 0.20));
  transform: translateY(-4px);
}

.award-item__name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  text-transform: none;
}

.award-item__year {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.02em;
}

/* ── STORY / MED SECTION ─────────────────────────────────────── */

/* Med/Story section — lifestyle family photo background */
.med__bg {
  background-image: url('/images/lifestyle/lifestyle-story.webp');
  background-size: cover;
  background-position: center 35%;
  background-color: #1C1A16;
}

.med__bg::after {
  background:
    radial-gradient(ellipse 80% 55% at 50% 75%, rgba(0, 0, 0, 0.35) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.65) 100%);
}

.med__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.45);
}

.med__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 400;
  font-style: normal;
  color: #FAF8F4;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.20);
}

/* ── RESELLERS ───────────────────────────────────────────────── */

.resellers {
  background: var(--ivory);
}

.resellers__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.resellers__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.82;
}

/* ── MARQUEE ─────────────────────────────────────────────────── */

.marquee-strip {
  background: var(--dark);
}

.marquee-content {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.40);
}

/* ── PARTNER CTA ─────────────────────────────────────────────── */

.partner-cta__title {
  /* font-size intentionally NOT overridden here — style.css controls it */
}
.section-eyebrow--light {
  color: var(--text-mid, #5C4A38) !important;
}

/* ── FAQ / GYIK ──────────────────────────────────────────────── */

/* Pure white surface — completely clean */
.faq {
  background: var(--white) !important;
  background-image: none !important;
  position: relative;
}

/* Remove the floating orbs entirely */
.faq::before,
.faq::after {
  display: none !important;
}

.faq .faq-inner-bg {
  display: none;
}

.faq .section-eyebrow {
  color: var(--sage);
  letter-spacing: 0.22em;
}

.faq .section-title-blue {
  color: var(--ink);
}

.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.faq__item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__item:hover {
  background: rgba(107, 144, 128, 0.028) !important;
  border-color: var(--border) !important;
}

.faq__item[open] {
  background: rgba(107, 144, 128, 0.032) !important;
  border-color: var(--border) !important;
}

.faq__question {
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: 18px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  padding: 24px 28px !important;
  gap: 20px !important;
  letter-spacing: -0.01em !important;
  cursor: pointer;
}

/* Counter circle */
.faq__question::before {
  background: var(--linen) !important;
  color: var(--ink-mid) !important;
  border: 1px solid var(--border) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  transition: all 0.25s ease !important;
}

.faq__item[open] .faq__question::before {
  background: var(--sage) !important;
  color: #fff !important;
  border-color: var(--sage) !important;
}

/* Arrow */
.faq__question::after {
  border-color: var(--ink-light) !important;
  transition: border-color 0.25s ease !important;
}

.faq__item[open] .faq__question::after {
  background-color: transparent !important;
  border-color: var(--sage) !important;
}

/* Answer text */
.faq__answer {
  color: var(--ink-mid) !important;
  padding: 0 28px 26px 84px !important;
}

.faq__answer p {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.84 !important;
  color: var(--ink-mid) !important;
}

/* ── CONTACT ─────────────────────────────────────────────────── */

/* Refined charcoal — warm luxury, not cold */
.contact {
  background: var(--dark) !important;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 400;
  font-style: normal;
  color: #FAF8F4;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(250, 248, 244, 0.52);
}

.contact__email,
.contact__phone {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(250, 248, 244, 0.75);
  transition: color 0.2s ease;
}

.contact__email:hover,
.contact__phone:hover {
  color: rgba(250, 248, 244, 0.95);
}

/* ── CONTACT FORM WRAP ───────────────────────────────────────── */

.contact__form-wrap {
  background: var(--ivory) !important;
}

/* Form inputs sit on ivory/white background — use dark visible styles */
.form-input {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;   /* #E5E0D8 warm linen */
  border-radius: var(--radius-sm) !important;
  color: var(--ink) !important;
  transition: border-color 0.25s ease, background 0.25s ease !important;
}

.form-input::placeholder {
  color: transparent !important;
}

.form-input:focus {
  background: var(--white) !important;
  border-color: var(--sage) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(107, 144, 128, 0.12) !important;
}

.form-input.is-invalid {
  border-color: #c0392b !important;
}

/* Form label — floats above on dark ink-light color */
.form-label {
  color: var(--ink-light) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 300 !important;
}

/* Error messages */
.form-err {
  color: #c0392b !important;
  font-size: 12px !important;
  font-family: var(--font-body) !important;
}

/* Submit button inside form */
.contact-form .btn--coral {
  background: var(--sage) !important;
  border-color: var(--sage) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  padding: 18px 0 !important;
  transition: all 0.28s ease !important;
}

.contact-form .btn--coral:hover {
  background: var(--sage-hover) !important;
  border-color: var(--sage-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px rgba(107, 144, 128, 0.25) !important;
}

/* ── FOOTER ──────────────────────────────────────────────────── */

.footer__top {
  background: var(--dark);
}

.footer__bottom {
  background: var(--dark-2);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(250, 248, 244, 0.38);
}

.footer__col-head {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.30);
}

.footer__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.55);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: rgba(250, 248, 244, 0.90);
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.30);
  letter-spacing: 0.04em;
}

/* ── PRELOADER ───────────────────────────────────────────────── */

#preloader {
  background: var(--white);
}

.preloader__text {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--ink);
  font-size: clamp(18px, 3.2vw, 30px);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s cubic-bezier(.22,.68,0,1), transform 0.72s cubic-bezier(.22,.68,0,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── GALLERY STRIP ───────────────────────────────────────────── */

.gallery-strip {
  background: var(--linen);
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  font-style: normal;
  color: #FAF8F4;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.about__section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about__body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--ink-mid);
}

/* ── COOKIE BANNER ───────────────────────────────────────────── */

#cookie-banner {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  background: var(--white);
  border-top: 1px solid var(--border);
  color: var(--ink-mid);
}

/* ── LIFESTYLE BANNER ────────────────────────────────────────── */

.lifestyle-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.lifestyle-banner__img-wrap {
  position: relative;
  width: 100%;
  max-height: 72vh;
  overflow: hidden;
}

.lifestyle-banner__img {
  width: 100%;
  height: 72vh;
  max-height: 680px;
  min-height: 320px;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: transform 8s ease;
}

.lifestyle-banner__img-wrap:hover .lifestyle-banner__img {
  transform: scale(1.02);
}

.lifestyle-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  background: linear-gradient(to top, rgba(28,26,22,0.42) 0%, transparent 55%);
}

.lifestyle-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.lifestyle-banner__dot {
  color: var(--sage);
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .lifestyle-banner__img {
    height: 55vw;
    max-height: 420px;
  }
  .lifestyle-banner__pill {
    font-size: 10px;
    gap: 10px;
    padding: 10px 20px;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 768px) {
  .faq__question {
    font-size: 17px !important;
    padding: 20px 20px !important;
  }
  .faq__answer {
    padding: 0 20px 22px 68px !important;
  }
  .brand-why__item {
    padding: 36px 28px;
  }
}
