/** Shopify CDN: Minification failed

Line 799:0 Unexpected "}"

**/
/* Home page specific layouts */

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 980px);
  padding-block: clamp(2rem, 6vw, 4rem) clamp(2rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}

/* Mobile: video becomes a soft tinted background behind copy */
@media (max-width: 879px) {
  .hero {
    min-height: 78vh;
    padding-block: 1.25rem 2rem;
  }

  .hero__inner {
    gap: 0;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .hero__copy {
    position: relative;
    z-index: 2;
    grid-row: 1;
    grid-column: 1;
    padding-block: 0;
  }

  .hero__eyebrow {
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .hero__sub { color: var(--ink); }

  .hero__media {
    position: absolute !important;
    inset: -2rem -1.25rem;
    width: auto !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    z-index: 0;
    border-radius: 0;
    grid-row: 1;
    grid-column: 1;
    pointer-events: none;
  }

  .hero__media video,
  .hero__media img {
    opacity: 0.4;
    filter: saturate(0.8);
  }

  .hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(
        ellipse at 30% 35%,
        color-mix(in srgb, var(--bg-cream) 50%, transparent) 0%,
        color-mix(in srgb, var(--bg-cream) 75%, transparent) 60%,
        color-mix(in srgb, var(--bg-cream) 88%, transparent) 100%
      );
    z-index: 1;
    pointer-events: none;
  }

  .hero__caption { display: none; }

  .hero__drift { display: none; }
}

@media (min-width: 880px) {
  .hero__inner {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    gap: 3rem;
  }
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-soft);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(2.75rem, 9.5vw, 7.25rem);
  line-height: 0.94;
  letter-spacing: -0.028em;
  color: var(--ink);
}

.hero__headline em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--earth-deep);
}

.hero__sub {
  margin-top: 2rem;
  max-width: 38ch;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 879px) {
  .hero__actions { gap: 1rem; }
}

.hero__media-stack {
  position: relative;
}

.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-deep);
}

@media (min-width: 880px) {
  .hero__media {
    aspect-ratio: 3/4;
    margin-bottom: -1rem;
  }
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__media-secondary {
  position: absolute;
  width: 42%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-deep);
  box-shadow: var(--shadow-md);
  z-index: 2;
  bottom: 14%;
  right: -8%;
  transform: rotate(-4deg);
}

.hero__media-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 880px) {
  .hero__media-secondary {
    width: 38%;
    top: -6%;
    right: -10%;
    bottom: auto;
    transform: rotate(3deg);
  }
}

.hero__caption {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: color-mix(in srgb, var(--bg-paper) 88%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 999px;
}

.hero__drift {
  position: absolute;
  top: 18%;
  right: -2%;
  font-size: clamp(7rem, 18vw, 14rem);
  pointer-events: none;
}

@media (min-width: 880px) {
  .hero__drift { display: none; }
}

.hero__meta-row {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 879px) {
  .hero__meta-row { display: none; }
}

.hero__meta-row > span {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.hero__meta-row > span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--earth);
  border-radius: 50%;
  display: inline-block;
}

/* ─────────── Featured editorial section ─────────── */
.featured {
  padding-block: clamp(4rem, 10vw, 8rem);
}

.featured__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

@media (min-width: 880px) {
  .featured__head {
    grid-template-columns: 1.4fr 1fr;
  }
}

.featured__title {
  font-size: clamp(2rem, 6vw, 4.25rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  line-height: 1;
  letter-spacing: -0.022em;
  max-width: 12ch;
}

.featured__intro {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 42ch;
  line-height: 1.6;
}

/* ─────────── Section index (desktop only) ─────────── */
.section-index {
  position: fixed;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  z-index: 30;
  display: none;
}

@media (min-width: 1280px) {
  .section-index { display: block; }
}

.section-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-index a {
  display: flex;
  align-items: baseline;
  gap: 0.6em;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-radius: 999px;
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.section-index__nr {
  width: 1.6em;
  text-align: center;
}

.section-index__label {
  opacity: 0;
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.3s var(--ease-out), max-width 0.4s var(--ease-out);
}

.section-index:hover a {
  color: var(--ink-soft);
}

.section-index:hover a .section-index__label,
.section-index a[aria-current="true"] .section-index__label {
  opacity: 1;
  max-width: 16ch;
}

.section-index a:hover,
.section-index a[aria-current="true"] {
  color: var(--ink);
  background: color-mix(in srgb, var(--bg-paper) 60%, transparent);
}

.section-index a[aria-current="true"] .section-index__nr {
  color: var(--earth-deep);
}

/* ─────────── Vier Linien (collection section) ─────────── */
.vier-linien {
  background: var(--bg-blush);
  padding-block: clamp(4rem, 9vw, 7rem);
  margin-block: clamp(3rem, 7vw, 5rem);
}

/* ─────────── Kollektion gallery (cards) ─────────── */
.collection-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .collection-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1080px) {
  .collection-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.collection-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: var(--radius-sm);
  position: relative;
}

.collection-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 37, 32, 0) 50%,
    rgba(42, 37, 32, 0.12) 70%,
    rgba(42, 37, 32, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.collection-card:hover .collection-card__media img {
  transform: scale(1.06);
}

.collection-card__overlay {
  position: absolute;
  inset: auto 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
}

.collection-card__name {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 48, "SOFT" 60;
  font-size: 1.5rem;
  color: var(--bg-paper);
  text-shadow: 0 1px 18px rgba(42, 37, 32, 0.4);
}

.collection-card__tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-paper);
  opacity: 0.85;
  text-shadow: 0 1px 18px rgba(42, 37, 32, 0.4);
}

/* Collection nr indicator */
.collection-card__nr {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  background: color-mix(in srgb, var(--bg-paper) 70%, transparent);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

/* ─────────── Process (atelier video reel) ─────────── */
.process {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.process__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

@media (min-width: 880px) {
  .process__head { grid-template-columns: 1.4fr 1fr; }
}

.process__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.022em;
  max-width: 14ch;
}

.process__title em {
  font-style: italic;
  color: var(--earth-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.process__intro {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.65;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

@media (min-width: 880px) {
  .process__grid {
    grid-template-columns: 5fr 4fr 5fr 4fr;
    grid-auto-rows: minmax(280px, auto);
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  .process__step:nth-child(1) { transform: translateY(0); }
  .process__step:nth-child(2) { transform: translateY(2.5rem); }
  .process__step:nth-child(3) { transform: translateY(-1rem); }
  .process__step:nth-child(4) { transform: translateY(3.5rem); }
}

.process__step {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.process__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-deep);
  position: relative;
}

@media (min-width: 880px) {
  .process__media { border-radius: 22px; }
}

.process__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process__nr {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: color-mix(in srgb, var(--bg-paper) 75%, transparent);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.process__label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-inline: 0.25rem;
}

.process__label-name {
  font-family: var(--font-display);
  font-weight: 380;
  font-variation-settings: "opsz" 24, "wght" 380;
  font-size: 1rem;
  color: var(--ink);
}

.process__label-hint {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ─────────── Stimmen (reviews) ─────────── */
.stimmen {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--bg-blush);
  margin-top: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

.stimmen__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.stimmen__head {
  text-align: center;
  max-width: 36ch;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.stimmen__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.stimmen__eyebrow::before,
.stimmen__eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-soft);
}

.stimmen__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.stimmen__title em {
  font-style: normal;
  color: var(--earth-deep);
}

.stimmen__sub {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.stimmen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .stimmen__grid { gap: 1.75rem; }
}

@media (min-width: 1080px) {
  .stimmen__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Mobile: 2 rows × N columns, horizontal scroll, 1 visible per row */
@media (max-width: 879px) {
  .stimmen__grid {
    grid-template-columns: none;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    grid-auto-columns: 82vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--pad-x);
    padding-inline: var(--pad-x);
    margin-inline: calc(var(--pad-x) * -1);
    padding-bottom: 1rem;
    gap: 0.875rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .stimmen__grid::-webkit-scrollbar { display: none; }

  .stimmen__grid > .review {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transform: none !important;
  }

  /* Progress indicator below carousel */
  .stimmen__progress {
    display: block;
    height: 2px;
    background: color-mix(in srgb, var(--ink-mute) 30%, transparent);
    border-radius: 2px;
    margin: 1.25rem auto 0;
    max-width: 200px;
    overflow: hidden;
    position: relative;
  }
  .stimmen__progress::after {
    content: '';
    position: absolute;
    inset: 0;
    width: var(--scroll-pct, 25%);
    background: var(--ink);
    border-radius: 2px;
    transition: width 0.15s linear;
  }

  /* Hint chip below header */
  .stimmen__swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    margin-top: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .stimmen__swipe-hint::before { content: '←'; }
  .stimmen__swipe-hint::after  { content: '→'; }
}

@media (min-width: 880px) {
  .stimmen__progress,
  .stimmen__swipe-hint { display: none; }
}

  .review {
    padding: 1.25rem 1rem 0.875rem;
    border-radius: 14px;
    gap: 0.75rem;
  }
  .review::before {
    font-size: 3rem;
    top: -0.2rem;
    left: 0.6rem;
  }
  .review__text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.25rem;
  }
  .review__rating { font-size: 0.75rem; }
  .review__byline {
    font-size: 0.625rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    letter-spacing: 0.1em;
  }
  .review__source {
    font-size: 0.5625rem;
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.12em;
  }
  .review__product { padding: 0.5rem 0.625rem; gap: 0.5rem; }
  .review__product-thumb { width: 36px; height: 46px; }
  .review__product-name { font-size: 0.8125rem; }
  .review__product-variant { font-size: 0.5625rem; margin-top: 0.1rem; }
}

.review {
  position: relative;
  background-color: #FFFFFF !important;
  background-image: none !important;
  border: 1px solid #D9C9B8;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(42, 37, 32, 0.12), 0 2px 8px rgba(42, 37, 32, 0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  isolation: isolate;
}

@media (min-width: 1080px) {
  /* Subtle staggered tilt across columns */
  .review:nth-child(3n+1) { transform: rotate(-1.2deg); }
  .review:nth-child(3n+2) { transform: rotate(0.6deg) translateY(1.25rem); }
  .review:nth-child(3n+3) { transform: rotate(-0.4deg); }
  .review:nth-child(odd):nth-child(n+4) { transform: rotate(1deg) translateY(-1rem); }
}

.review:hover {
  transform: rotate(0) translateY(-2px);
  box-shadow: 0 12px 36px rgba(42, 37, 32, 0.12), 0 2px 6px rgba(42, 37, 32, 0.06);
}

.review::before {
  content: '“';
  position: absolute;
  top: -0.4rem;
  left: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--earth);
  pointer-events: none;
}

.review__text {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 18;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 0.5rem;
}

.review__rating {
  display: inline-flex;
  gap: 0.15em;
  color: var(--earth-deep);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.review__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.review__byline strong {
  font-weight: 500;
  color: var(--ink);
}

.review__source {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-deep);
  color: var(--ink);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}

.review__source[href]:hover {
  background: var(--ink);
  color: var(--bg-paper);
}

.review__source-mark {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
  font-size: 0.875rem;
  line-height: 1;
}

.review__product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--bg-cream);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, transform 0.25s var(--ease-out);
  margin-top: auto;
}

.review__product:hover {
  background: var(--bg-deep);
  transform: translateX(2px);
}

.review__product-thumb {
  width: 44px;
  height: 56px;
  border-radius: 6px;
  background: var(--bg-deep);
  overflow: hidden;
  flex-shrink: 0;
}

.review__product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review__product-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 18;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: var(--ink);
  flex: 1;
  min-width: 0;
}

.review__product-arrow {
  font-family: var(--font-mono);
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.review__product-variant {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 0.125rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

/* ─────────── Moodboard / Im Setting ─────────── */
.moodboard {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--bg-blush);
  margin-block: clamp(3rem, 7vw, 5rem);
}

.moodboard__head {
  text-align: center;
  max-width: 30ch;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding-inline: var(--pad-x);
}

.moodboard__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.moodboard__eyebrow::before,
.moodboard__eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-soft);
}

.moodboard__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.moodboard__title em {
  font-style: normal;
  color: var(--earth-deep);
}

.moodboard__sub {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.moodboard__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 0.5rem;
  padding-inline: var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

@media (min-width: 720px) {
  .moodboard__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 0.75rem;
  }
}

@media (min-width: 1080px) {
  .moodboard__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1rem;
  }
}

.moodboard__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-deep);
  display: block;
}

.moodboard__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.6s var(--ease-out);
  filter: saturate(0.92);
}

.moodboard__tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

/* Asymmetric tile spans */
.moodboard__tile--tall  { grid-row: span 2; }
.moodboard__tile--wide  { grid-column: span 2; }
.moodboard__tile--xl    { grid-row: span 2; grid-column: span 2; }

@media (max-width: 719px) {
  .moodboard__tile--xl    { grid-column: span 2; grid-row: span 2; }
  .moodboard__tile--wide  { grid-column: span 2; grid-row: span 1; }
  .moodboard__tile--tall  { grid-row: span 2; grid-column: span 1; }
}

.moodboard__tile-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 90;
  color: var(--bg-paper);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  text-shadow: 0 2px 18px rgba(42, 37, 32, 0.4);
  line-height: 1.1;
  max-width: 80%;
}

.moodboard__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
  padding-inline: var(--pad-x);
}

/* ─────────── Newsletter ─────────── */
.newsletter {
  padding-block: clamp(4rem, 9vw, 7rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.newsletter__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin-bottom: 1rem;
  max-width: 18ch;
  margin-inline: auto;
}

.newsletter__sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.newsletter__form-wrap {
  margin-inline: auto;
  display: flex;
  justify-content: center;
}
